Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 141 for histograms (0.22 sec)

  1. pkg/kubelet/metrics/metrics.go

    		},
    	)
    	// PodStartSLIDuration is a Histogram that tracks the duration (in seconds) it takes for a single pod to run,
    	// excluding the time for image pulling. This metric should reflect the "Pod startup latency SLI" definition
    	// ref: https://github.com/kubernetes/community/blob/master/sig-scalability/slos/pod_startup_latency.md
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/custom_aggregator_op.cc

            context->template eigen_device<CPUDevice>()) = input_flat.maximum();
    
        // Calculate histogram statistics.
        const int32_t num_bins = calib_opts_.calibration_parameters().num_bins();
        Tensor* histogram_output = nullptr;
        OP_REQUIRES_OK(context, context->allocate_output("histogram", {num_bins},
                                                         &histogram_output));
        if (num_bins > 0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

        CALIBRATION_METHOD_AVERAGE_MIN_MAX = 2;
        // Use the min/max percentile value of histogram.
        CALIBRATION_METHOD_HISTOGRAM_PERCENTILE = 3;
        // Use the histogram mid values that minimize MSE error.
        // This is very slow algorithm because it computes all errors for all
        // histogram mid value pairs. Therefore the value of num_bins is recommended
        // to be 256 or less.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/metrics_test.go

            	# TYPE apiextensions_apiserver_validation_ratcheting_seconds histogram
            	apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="1e-05"} 5
            	apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="4e-05"} 5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (1)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/calibration_parameters.h

                                   const int32_t num_bins) {
      const float raw_bin_width = (max_value - min_value) / num_bins;
      return std::pow(2, std::ceil(std::log2(raw_bin_width)));
    }
    
    // Calculates the lower bound of the histogram. The lower bound is in form of
    // `N * bin_width`.
    inline float CalculateLowerBound(const float min_value, const float bin_width) {
      return std::floor(min_value / bin_width) * bin_width;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/trace/regions.go

    Regions are grouped by the region type and the point at which the region started.
    The rightmost column of the table contains a latency histogram for each region group.
    Note that this histogram only counts regions that began and ended within the traced
    period.
    However, the "Count" column includes all regions, including those that only started
    or ended during the traced period.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionAggregation.java

    import org.opensearch.search.aggregations.bucket.global.GlobalAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.histogram.DateHistogramAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.missing.MissingAggregationBuilder;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.td

        // The unique id of this `CustomAggregator` op.
        StrAttr:$id,
        // The integer value of the enforcing `CalibrationMethod`.
        I32Attr:$calibration_method,
        // The number of histogram bins.
        I32Attr:$num_bins,
        // Min percentile to be included in the selected range, only used in the
        // `HISTOGRAM_PERCENTILE` method.
        F32Attr:$min_percentile,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/node/metrics.go

    var (
    	graphActionsDuration = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem:      nodeAuthorizerSubsystem,
    			Name:           "graph_actions_duration_seconds",
    			Help:           "Histogram of duration of graph actions in node authorizer.",
    			StabilityLevel: metrics.ALPHA,
    			// Start with 0.1ms with the last bucket being [~200ms, Inf)
    			Buckets: metrics.ExponentialBuckets(0.0001, 2, 12),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 10 07:40:46 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  10. src/internal/trace/mud_test.go

    	// Insert random uniforms and check histogram mass and
    	// cumulative sum approximations.
    	rnd := rand.New(rand.NewSource(42))
    	mass := 0.0
    	var mud mud
    	for i := 0; i < 100; i++ {
    		area, l, r := rnd.Float64(), rnd.Float64(), rnd.Float64()
    		if rnd.Intn(10) == 0 {
    			r = l
    		}
    		t.Log(l, r, area)
    		mud.add(l, r, area)
    		mass += area
    
    		// Check total histogram weight.
    		hmass := 0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top