Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for value_dtype (0.18 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/lift_hashtable_ops_as_args.mlir

        %1 = "tf.HashTableV2"() {container = "", device = "", key_dtype = !tf_type.string, shared_name = "hash_table_0", use_node_name_sharing = false, value_dtype = i64} : () -> tensor<!tf_type.resource>
        %2 = "tf.LookupTableSizeV2"(%0) {device = ""} : (tensor<!tf_type.resource>) -> tensor<i64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 15 05:41:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export_test.cc

              %o, %c = tf_executor.island wraps "tf.HashTableV2"() <{container = "", key_dtype = !tf_type.string, shared_name = "vocab_file.txt", use_node_name_sharing = false, value_dtype = i64}> {device = ""} : () -> tensor<!tf_type.resource>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/hoist_invariant_ops.mlir

      // CHECK: return [[v]]#[[size_idx]], [[r]]
      %0 = "tf.HashTableV2"() {container = "", device = "", key_dtype = !tf_type.string, shared_name = "x", use_node_name_sharing = false, value_dtype = i64} : () -> tensor<!tf_type.resource>
      %1 = "tf.LookupTableSizeV2"(%0) {device = ""} : (tensor<!tf_type.resource>) -> tensor<i64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 23:54:14 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/utils/tftext_utils.cc

               << "Expect " << kValidNumOfOutput[input_type.getRank()]
               << "output(s) when input has rank " << input_type.getRank();
      }
    
      auto value_type = GetResultType(func, 0);
      if (!RankEquals(value_type, 1) ||
          !mlir::isa<StringType>(value_type.getElementType())) {
        return func.emitError() << "1st output should be string tensor";
      }
      if (func.getNumResults() > 1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

                          llvm::ArrayRef<int32_t> redux_axes,
                          PatternRewriter* rewriter) {
      Value redux_op = createI32ConstantOp(redux_axes, loc, rewriter);
    
      auto value_type = mlir::cast<RankedTensorType>(value.getType());
      auto shape = value_type.getShape();
      llvm::SmallVector<int64_t> sum_shape;
      for (int i = 0; i < shape.size(); ++i) {
        if (std::find(redux_axes.begin(), redux_axes.end(), i) ==
            redux_axes.end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    }
    
    func (p *ValueType) decoder() []decoder {
    	return valueTypeDecoder
    }
    
    func (p *ValueType) encode(b *buffer) {
    	encodeInt64Opt(b, 1, p.typeX)
    	encodeInt64Opt(b, 2, p.unitX)
    }
    
    var valueTypeDecoder = []decoder{
    	nil, // 0
    	// optional int64 type = 1
    	func(b *buffer, m message) error { return decodeInt64(b, &m.(*ValueType).typeX) },
    	// optional int64 unit = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.cc

    Value PackOperand(OpBuilder &builder, Location loc, Value value, int pack_dim) {
      ShapedType value_type = mlir::cast<ShapedType>(value.getType());
      const int rank = value_type.getRank();
    
      SmallVector<int64_t> packed_shape(value_type.getShape().begin(),
                                        value_type.getShape().end());
      RankedTensorType shape_type =
          RankedTensorType::get({rank}, builder.getI64Type());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

        private final Class<V> valueType;
        private final ValueCollector<K> keyCollector;
        private final MapEntryCollector<K, V> entryCollector;
        private MapSupplier<K, V> defaultValue = emptySupplier();
    
        public DefaultMapProperty(PropertyHost propertyHost, Class<K> keyType, Class<V> valueType) {
            super(propertyHost);
            this.keyType = keyType;
            this.valueType = valueType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/DefaultSerializerRegistry.java

            }
    
            private TypeInfo map(Class<?> valueType) {
                TypeInfo typeInfo = serializersByType.get(valueType);
                if (typeInfo != null) {
                    return typeInfo;
                }
                for (Map.Entry<Class<?>, TypeInfo> entry : typeHierarchies.entrySet()) {
                    if (entry.getKey().isAssignableFrom(valueType)) {
                        return entry.getValue();
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. src/runtime/pprof/proto_test.go

    	}
    
    	p, err = profile.Parse(&buf)
    	if err != nil {
    		t.Fatalf("profile.Parse: %v", err)
    	}
    
    	// Expected PeriodType and SampleType.
    	periodType := &profile.ValueType{Type: "cpu", Unit: "nanoseconds"}
    	sampleType := []*profile.ValueType{
    		{Type: "samples", Unit: "count"},
    		{Type: "cpu", Unit: "nanoseconds"},
    	}
    
    	checkProfile(t, p, 2000*1000, periodType, sampleType, nil, "")
    }
    
    func f1() { f1() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top