Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetQuantSpec (0.2 sec)

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

      InitializeStateForValue(op, index, value, /*as_result=*/true, states_,
                              value_to_state_, operand_states_, result_states_);
    }
    
    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);
    }
    
    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

      // different ops.
      bool IsWeight(Operation* cst) { return llvm::is_contained(weights_, cst); }
    
      // 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.
    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