Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GetWeightComponentSpec (0.33 sec)

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

            quant_options_(quantization_options) {}
    
      LogicalResult matchAndRewrite(TF::ConstOp op,
                                    PatternRewriter& rewriter) const override {
        auto weight_component_spec = GetWeightComponentSpec(quant_options_);
        if (!weight_component_spec) return failure();
    
        // 1. Check if the constant is quantizable.
        if (failed((isQuantizableWeight(op)))) {
          return failure();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top