Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Quantiles (0.26 sec)

  1. src/internal/trace/gc.go

    	// distribution quantile is less than the next worst-case mean
    	// mutator utilization. At this point, all further
    	// contributions to the distribution must be beyond the
    	// desired quantile and hence cannot affect it.
    	//
    	// First, find the highest desired distribution quantile.
    	maxQ := quantiles[0]
    	for _, q := range quantiles {
    		if q > maxQ {
    			maxQ = q
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. src/runtime/debug/garbage.go

    // stats.Pause slice will be reused if large enough, reallocated otherwise.
    // ReadGCStats may use the full capacity of the stats.Pause slice.
    // If stats.PauseQuantiles is non-empty, ReadGCStats fills it with quantiles
    // summarizing the distribution of pause time. For example, if
    // len(stats.PauseQuantiles) is 5, it will be filled with the minimum,
    // 25%, 50%, 75%, and maximum pause times.
    func ReadGCStats(stats *GCStats) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

     private:
      [[deprecated(
          "Do not rely on this field for per-channel quantization. Use `Method` "
          "instead.")]] const bool enable_per_channel_quantized_weight_;
    };
    
    // Quantizes op with regions such as stablehlo.reduce_window op.
    // Quantizes only when the nested region consists of ops whose quantization
    // parameters can be propagated from outside.
    class QuantizeOpWithRegionPattern
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

        quantization_options: _QuantizationOptions,
        representative_dataset: Optional[
            repr_dataset.RepresentativeDatasetOrMapping
        ] = None,
    ) -> autotrackable.AutoTrackable:
      """Quantizes the given SavedModel via static range quantization.
    
      If the model is not trained with Quantization-Aware Training (QAT) technique,
      it requires `representative_dataset` to collect statistics required for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/lib/output.json

                         "intervalFactor": 2,
                         "legendFormat": "{{cluster}} - {{namespace}} - {{name}} - mean\n"
                      }
                   ],
                   "title": "Workqueue Waiting Duration Quantile",
                   "type": "timeseries"
                },
                {
                   "datasource": {
                      "type": "datasource",
                      "uid": "-- Mixed --"
                   },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

    ==============================================================================*/
    
    include "mlir/Pass/PassBase.td"
    
    def QuantizeWeightPass : Pass<"stablehlo-quantize-weight", "mlir::func::FuncOp"> {
      let summary = "Quantizes the weight component of StableHLO graph.";
      let dependentDialects = ["mlir::stablehlo::StablehloDialect"];
      let constructor = "mlir::quant::stablehlo::CreateQuantizeWeightPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

                                                    int axis);
    
    // Quantizes the elements in the attribute `real_value` by the quantization
    // parameters in `tensor_type`. Returns empty Attribute if the
    // `tensor_type` is not a QuantizedType or the quantization fails.
    ElementsAttr Quantize(Attribute real_value, Type tensor_type);
    
    // Quantizes the elements in "legacy mode", where it calls TOCO's methods to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top