Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for set_bit_width (0.13 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/tests/fill_quantization_options_test.cc

          QuantizationComponentSpec::COMPONENT_WEIGHT);
      weight_component.set_bit_width(QuantizationComponentSpec::BIT_WIDTH_16);
      weight_component.set_bit_type(QuantizationComponentSpec::BIT_TYPE_FLOAT);
      bias_component.set_quantization_component(
          QuantizationComponentSpec::COMPONENT_BIAS);
      bias_component.set_bit_width(QuantizationComponentSpec::BIT_WIDTH_16);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 09:05:02 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/utils/fill_quantization_options.cc

                                      const BitType bit_type,
                                      const BitWidth bit_width) {
      spec->set_quantization_component(component);
      spec->set_bit_type(bit_type);
      spec->set_bit_width(bit_width);
    }
    
    ::stablehlo::quantization::QuantizationOptions FillPresetQuantizationOptions(
        ::stablehlo::quantization::QuantizationOptions quantization_options_) {
      CustomQuantizationMethod custom_method =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 08:32:43 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_histogram.cc

      int32_t real_size = hist_freq_.size();
      for (; real_size > 0; --real_size) {
        if (hist_freq_[real_size - 1] != 0) break;
      }
    
      hist_stats.set_lower_bound(lower_bound_);
      hist_stats.set_bin_width(bin_width_);
      hist_stats.mutable_hist_freq()->Assign(hist_freq_.begin(),
                                             hist_freq_.begin() + real_size);
    
      CalibrationStatistics statistics;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 09:09:34 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top