Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for QuantizeValue (0.12 sec)

  1. tensorflow/compiler/mlir/lite/transforms/default_quant_params.cc

        }
        return false;
      }
    
      // Uses `quant_params` to quantize `value` and inserting a pair of
      // tfl.quantize and tfl.dequantize ops for this `value`.
      void QuantizeValue(OpBuilder builder, Value value,
                         quant::QuantParams quant_params);
    
      // If the value hasn't been quantized, the functions adds it to `values`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

      QuantizeValue(original_result, quantized_type, op->getLoc());
    }
    
    void QuantizationDriver::QuantizeArg(BlockArgument arg,
                                         const QuantizedType quantized_type) {
      builder_.setInsertionPointToStart(arg.getOwner());
      QuantizeValue(arg, quantized_type, builder_.getUnknownLoc());
    }
    
    void QuantizationDriver::QuantizeValue(Value value,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

      void QuantizeArg(BlockArgument arg, QuantizedType quantized_type);
    
      // Inserts the Quantize and Dequantize ops (i.e. QDQ) after `value`. The
      // quantized element type for `value` is `quantized_type`.
      void QuantizeValue(Value value, QuantizedType quantized_type, Location loc);
    
      // Inserts the Quantize ops for requantizing the index-th result of the op.
      void RequantizeOpResult(Operation* op, int result_index,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
Back to top