Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getOutputQuantizationAxis (0.46 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_ops_to_mhlo.cc

            op.getOutputZeroPoints(),
            /*expressed_type=*/rewriter.getF32Type(),
            op.getOutputQuantizationMinVal(), op.getOutputQuantizationMaxVal(),
            op.getOutputQuantizationAxis(), rewriter);
        if (failed(output_type)) {
          return failure();
        }
    
        auto input_quant = rewriter.create<mhlo::BitcastConvertOp>(
            op->getLoc(), *input_quant_type, input);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        return failure();
      }
    
      return VerifyScalesAndZeroPoints(op, op.getOutputScales(),
                                       op.getOutputZeroPoints(),
                                       op.getOutputQuantizationAxis());
    }
    
    }  // namespace
    
    //===----------------------------------------------------------------------===//
    // UniformQuantizedDotHybridOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top