Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CreatePreprocessOpPass (0.18 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/preprocess_op.cc

          signalPassFailure();
        }
      }
    }
    
    }  // namespace
    
    // Creates an instance of the TensorFlow dialect PreprocessOp
    // pass.
    std::unique_ptr<OperationPass<ModuleOp>> CreatePreprocessOpPass(
        const OpSet op_set, QuantMethod quantization_method,
        const bool enable_per_channel_quantization) {
      return std::make_unique<PreprocessOpPass>(op_set, quantization_method,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // Creates an instance of the PreprocessOp pass, which will perform op
    // preprocessing to allow multi-axis quantization, prior to quantization.
    std::unique_ptr<OperationPass<ModuleOp>> CreatePreprocessOpPass(
        tensorflow::quantization::OpSet op_set,
        tensorflow::quantization::QuantizationMethod::PresetMethod
            quantization_method,
        bool enable_per_channel_quantization);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      pm.enableVerifier(false);
    
      QuantizationSpecs quant_specs;
      quant_specs.inference_type = tensorflow::DT_QINT8;
      quant_specs.disable_per_channel = !enable_per_channel_quantization_;
    
      pm.addPass(CreatePreprocessOpPass(target_opset_, quantization_method_,
                                        enable_per_channel_quantization_));
    
      // Apply activation-weight quantization.
      if (quantization_method_ ==
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top