Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 145 for value_dtype (0.17 sec)

  1. src/internal/trace/traceviewer/pprof.go

    	Stack []*trace.Frame
    	Count uint64
    	Time  time.Duration
    }
    
    func BuildProfile(prof []ProfileRecord) *profile.Profile {
    	p := &profile.Profile{
    		PeriodType: &profile.ValueType{Type: "trace", Unit: "count"},
    		Period:     1,
    		SampleType: []*profile.ValueType{
    			{Type: "contentions", Unit: "count"},
    			{Type: "delay", Unit: "nanoseconds"},
    		},
    	}
    	locs := make(map[uint64]*profile.Location)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:28:02 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/analysis/cost_analysis.cc

      constexpr int64_t kLookupTableFindCostScale = 8;
      constexpr int64_t kLookupTableFindStringKeyCostScale = 16;
    
      auto value_type = mlir::cast<mlir::TensorType>(op.getValues().getType());
      auto key_type = mlir::cast<mlir::TensorType>(op.getKeys().getType());
    
      int64_t output_size = InferTensorSize(context, value_type);
    
      int64_t cost = kLookupTableFindCostScale * output_size;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/ProjectPropertySettingBuildLoader.java

            }
    
            @Nullable
            private PropertyMutator propertyMutatorFor(String propertyName, @Nullable Class<?> valueType) {
                final Pair<String, ? extends Class<?>> key = Pair.of(propertyName, valueType);
                final PropertyMutator cached = mutators.get(key);
                if (cached != null) {
                    return cached;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    Before using the table you will have to initialize it.  After initialization the
    table will be immutable.
      }];
    
      let arguments = (ins
        I32Attr:$table_id,
        TypeAttr:$key_dtype,
        TypeAttr:$value_dtype
      );
    
      let results = (outs TFL_ResourceTensor:$out);
    
      let hasOptions = 1;
    }
    
    def TFL_HashtableFindOp: TFL_Op<"hashtable_find", []> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/schema/ConfigureAccessor.kt

        val objectType: DataTypeRef
    
        interface Property : ConfigureAccessor {
            val dataProperty: DataProperty
    
            override val objectType: DataTypeRef
                get() = dataProperty.valueType
        }
    
        interface Custom : ConfigureAccessor {
            val customAccessorIdentifier: String
        }
    
        interface ConfiguringLambdaArgument : ConfigureAccessor
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/lite/transforms/post_quantize.cc

        auto values_type = RankedTensorType::get(
            output_shape,
            mlir::cast<quant::UniformQuantizedType>(output_type.getElementType())
                .getStorageType());
        rewriter.replaceOpWithNewOp<QConstOp>(
            op, TypeAttr::get(result_type),
            DenseIntElementsAttr::get(values_type, new_values));
        return success();
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

    internal::ParamGenerator<
      typename ::testing::internal::IteratorTraits<ForwardIterator>::value_type>
    ValuesIn(ForwardIterator begin, ForwardIterator end);
    
    template <typename T, size_t N>
    internal::ParamGenerator<T> ValuesIn(const T (&array)[N]);
    
    template <class Container>
    internal::ParamGenerator<typename Container::value_type> ValuesIn(
        const Container& container);
    
    namespace internal {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. src/internal/profile/profile.go

    	keepFramesX        int64
    	stringTable        []string
    	defaultSampleTypeX int64
    }
    
    // ValueType corresponds to Profile.ValueType
    type ValueType struct {
    	Type string // cpu, wall, inuse_space, etc
    	Unit string // seconds, nanoseconds, bytes, etc
    
    	typeX int64
    	unitX int64
    }
    
    // Sample corresponds to Profile.Sample
    type Sample struct {
    	Location []*Location
    	Value    []int64
    	Label    map[string][]string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/PropertyFactory.java

        <T> DefaultListProperty<T> listProperty(Class<T> elementType);
    
        <T> DefaultSetProperty<T> setProperty(Class<T> elementType);
    
        <V, K> DefaultMapProperty<K, V> mapProperty(Class<K> keyType, Class<V> valueType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top