Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetResultParams (0.14 sec)

  1. tensorflow/compiler/mlir/lite/quantization/quantization_context.h

        return states_manager_.SetOperandParams(op, index, params);
      }
    
      // Return the quantization parameter of certain result of the op.
      QuantParams GetResultParams(Operation *op, int index) {
        return states_manager_.GetResultParams(op, index);
      }
    
      // Return the quantization parameter of certain operand of the op.
      QuantParams GetOperandParams(Operation *op, int index) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/quantization_context.cc

      for (int i = 0; i < op.getNumOperands(); ++i) {
        DeviceTarget::AppendToSignature(GetOperandParams(op, i), &signature);
      }
      for (int i = 0; i < op.getNumResults(); ++i) {
        DeviceTarget::AppendToSignature(GetResultParams(op, i), &signature);
      }
      return signature;
    }
    
    LogicalResult QuantizeContext::Handle(
        quantfork::QuantizeRegionOp op,
        llvm::SmallVectorImpl<Operation *> *new_items, bool *changed) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top