Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for QuantizePass (0.2 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize.cc

                                      quantfork::QuantizeCastOp>(ctx) {}
    };
    
    class QuantizePass : public impl::QuantizePassBase<QuantizePass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(QuantizePass)
    
      using impl::QuantizePassBase<QuantizePass>::QuantizePassBase;
    
      explicit QuantizePass(const bool enable_per_channel_quantized_weight) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 07:08:19 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize_composite_functions.cc

      }
    
     private:
      void runOnOperation() override;
    };
    
    void QuantizeCompositeFunctionsPass::runOnOperation() {
      MLIRContext& ctx = getContext();
    
      PassManager pm(&ctx);
      // Intermediate output from QuantizePass will have quantized ops
      // (XlaCallModuleOps) with quantized input and output types, which are not
      // allowed in the TF dialect.
      pm.enableVerifier(false);
    
      PrepareQuantizePassOptions options;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top