Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CustomMap (0.52 sec)

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

      static bool IsQuantizableCustomOp(Operation* op,
                                        const CustomMap& custom_op_map) {
        return false;
      }
    
      // All the quantized ops are supported if the quantization method is dynamic
      // range quantization.
      static bool AllowDynamicRangeQuantizedOperand(
          Operation* quantized_op, const CustomMap& custom_op_map) {
        auto call_op = cast<TF::PartitionedCallOp>(quantized_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

    using RequiredSameOperandsAndResultsScaleFunc = std::function<bool(bool, int)>;
    // bool RequiredSameQuantizedAxes()
    using RequiredSameQuantizedAxesFunc = std::function<bool()>;
    
    using CustomMap = quant::CustomOpMap;
    
    // Quantization spec of an op, driving the quantization algorithm.
    struct OpQuantSpec {
      // Maps the operand index of a bias input to its quantization specifications,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top