Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 71 for si4ref (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.cc

      absl::c_iota(spatial_dims, 1);
      bool has_dynamic_spatial_dim = absl::c_any_of(
          spatial_dims,
          [&input_shape](int64_t dim) { return input_shape.isDynamicDim(dim); });
      if (conv_padding.strref() == "SAME" && has_dynamic_spatial_dim) {
        return PadForDynamicShapedInputSamePadding(
            builder, loc, input, filter, input_zp_value, strides, dilations,
            conv_padding, padding, num_dims);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/objfile.go

    	}
    	var b goobj.HashType
    	copy(b[:], h.Sum(nil))
    	return b
    }
    
    func makeSymRef(s *LSym) goobj.SymRef {
    	if s == nil {
    		return goobj.SymRef{}
    	}
    	if s.PkgIdx == 0 || !s.Indexed() {
    		fmt.Printf("unindexed symbol reference: %v\n", s)
    		panic("unindexed symbol reference")
    	}
    	return goobj.SymRef{PkgIdx: uint32(s.PkgIdx), SymIdx: uint32(s.SymIdx)}
    }
    
    func (w *writer) Reloc(r *Reloc) {
    	o := &w.tmpReloc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_types.def

    #ifndef HANDLE_TF_REF_TYPE
    #define HANDLE_TF_REF_TYPE(class, enumerant, name) \
      HANDLE_TF_TYPE(class, enumerant, name)
    #endif
    HANDLE_TF_REF_TYPE(FloatRef, FLOAT_REF, "f32ref")
    HANDLE_TF_REF_TYPE(DoubleRef, DOUBLE_REF, "f64ref")
    HANDLE_TF_REF_TYPE(Uint4Ref, UINT4_REF, "uint4ref")
    HANDLE_TF_REF_TYPE(Int4Ref, INT4_REF, "int4ref")
    HANDLE_TF_REF_TYPE(Uint8Ref, UINT8_REF, "uint8ref")
    HANDLE_TF_REF_TYPE(Int8Ref, INT8_REF, "int8ref")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 09 03:12:53 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

        return true;
      }
      std::string shard_string;
      if (op->hasAttr(kXLAShardingAttr)) {
        shard_string =
            op->getAttrOfType<StringAttr>(kXLAShardingAttr).strref().str();
      } else {
        shard_string = op->getAttrOfType<StringAttr>(kShardingAttr).strref().str();
      }
      xla::OpSharding sharding;
      if (!shard_string.empty() && sharding.ParseFromString(shard_string)) {
        // Only checking op with TUPLE sharding
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. src/crypto/x509/internal/macos/corefoundation.go

    func CFStringCreateExternalRepresentation(strRef CFRef) (CFRef, error) {
    	ret := syscall(abi.FuncPCABI0(x509_CFStringCreateExternalRepresentation_trampoline), kCFAllocatorDefault, uintptr(strRef), kCFStringEncodingUTF8, 0, 0, 0)
    	if ret == 0 {
    		return 0, errors.New("string can't be represented as UTF-8")
    	}
    	return CFRef(ret), nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 20:05:17 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/import_quant_stats_pass.cc

        if (auto name = loc.dyn_cast<NameLoc>()) {
          return name.getName().strref();
        } else if (auto fused_name = loc.dyn_cast<FusedLoc>()) {
          for (auto sub_loc : fused_name.getLocations()) {
            if (auto named_sub_loc = sub_loc.dyn_cast<NameLoc>()) {
              return named_sub_loc.getName().strref();
            }
          }
        }
        return llvm::StringRef("");
      };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/sym/symkind_string.go

    	_ = x[SDATA-33]
    	_ = x[SXCOFFTOC-34]
    	_ = x[SBSS-35]
    	_ = x[SNOPTRBSS-36]
    	_ = x[SLIBFUZZER_8BIT_COUNTER-37]
    	_ = x[SCOVERAGE_COUNTER-38]
    	_ = x[SCOVERAGE_AUXVAR-39]
    	_ = x[STLSBSS-40]
    	_ = x[SXREF-41]
    	_ = x[SMACHOSYMSTR-42]
    	_ = x[SMACHOSYMTAB-43]
    	_ = x[SMACHOINDIRECTPLT-44]
    	_ = x[SMACHOINDIRECTGOT-45]
    	_ = x[SFILEPATH-46]
    	_ = x[SDYNIMPORT-47]
    	_ = x[SHOSTOBJ-48]
    	_ = x[SUNDEFEXT-49]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ld.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package obj
    
    /*
     * add library to library list.
     *	srcref: src file referring to package
     *	objref: object file referring to package
     *	file: object file, e.g., /home/rsc/go/pkg/container/vector.a
     *	pkg: package import path, e.g. container/vector
     */
    
    const (
    	LOG = 5
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 16 03:02:36 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/strip_saved_module_metadata.cc

        : public impl::StripSavedModuleMetadataPassBase<
              StripSavedModuleMetadataPass> {
      void runOnOperation() override;
    };
    
    bool ShouldStripAttr(NamedAttribute &namedAttr) {
      auto name = namedAttr.getName().strref();
      return name.starts_with("tf_saved_model.");
    }
    
    void StripModule(Operation *module) {
      auto stripAttrs = llvm::to_vector<4>(llvm::make_filter_range(
          module->getAttrs(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 08:06:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/strip_tf_attributes.cc

    struct StripTfAttributesPass
        : public impl::StripTfAttributesPassBase<StripTfAttributesPass> {
      void runOnOperation() override;
    };
    
    bool ShouldStripAttr(NamedAttribute &namedAttr) {
      StringRef name = namedAttr.getName().strref();
      if (name.starts_with("tf.") || name.starts_with("tf_")) return true;
      StringRef value = namedAttr.getValue().getDialect().getNamespace();
      return value == "tf" || value.starts_with("tf_");
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 08:06:04 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top