Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetQuantScaleSpec (0.23 sec)

  1. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

    }
    
    std::unique_ptr<OpQuantSpec> QuantizationDriver::GetQuantSpec(Operation* op) {
      return op_quant_spec_getter_(op);
    }
    
    std::unique_ptr<OpQuantScaleSpec> QuantizationDriver::GetQuantScaleSpec(
        Operation* op) {
      return op_quant_scale_spec_getter_(op);
    }
    
    bool QuantizationDriver::IsQuantized(Operation* op) {
      for (int i = 0; i < op->getNumResults(); ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

      // Returns all the related quantization constraints of the op.
      std::unique_ptr<OpQuantSpec> GetQuantSpec(Operation* op);
      std::unique_ptr<OpQuantScaleSpec> GetQuantScaleSpec(Operation* op);
    
      // Returns whether quantization parameters have been propagated to the results
      // of this op.
      bool IsQuantized(Operation* op);
    
    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