Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for KernelSpecs (0.1 sec)

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

      all_ops.reserve(128);
      func_.walk([&](quantfork::QuantizeRegionOp op) { all_ops.push_back(op); });
      return all_ops;
    }
    
    KernelSpecs::Signature QuantizeContext::GetSignature(
        quantfork::QuantizeRegionOp op) {
      KernelSpecs::Signature signature;
      signature.reserve(op.getInputSpecs().size() + op.getOutputSpecs().size());
      for (int i = 0; i < op.getNumOperands(); ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/quantization_context.h

      QuantParams GetOperandParams(Operation *op, int index) {
        return states_manager_.GetOperandParams(op, index);
      }
    
      // Return the signature of the op.
      KernelSpecs::Signature GetSignature(quantfork::QuantizeRegionOp op);
    
      // A heuristic to get quantization parameters satisfies the same scale
      // constraints:
      // - If there are immutable states,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top