Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RunPropagationAndRewriteQuantizationPasses (0.44 sec)

  1. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

      // Whether to run the passes to propagate the quantization parameters and
      // graph rewrites. Returns false if the inference_type is DT_FLOAT or
      // `weight_quantization` flag is set.
      bool RunPropagationAndRewriteQuantizationPasses() const {
        return inference_type != tensorflow::DT_FLOAT && !weight_quantization;
      }
    
      // TODO: b/202075505 - make implicit weight type clearer
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

        // completed. Add either full integer quantization or dynamic range
        // quantization passes based on quant_specs.
        if (pass_config.quant_specs.RunPropagationAndRewriteQuantizationPasses() ||
            pass_config.quant_specs.qdq_conversion_mode !=
                mlir::quant::QDQConversionMode::kQDQNone) {
          AddQuantizationPasses(pass_config, *pass_manager);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top