Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getInputSpecs (0.09 sec)

  1. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.cc

      // There are specifications for both inputs and outputs.
      if (getNumOperands() != getInputSpecs().size() ||
          getNumResults() != getOutputSpecs().size())
        return emitOpError(
            "has unmatched operands/results number and spec attributes number");
    
      // Verify that quantization specifications are valid.
      for (auto input : llvm::zip(getOperandTypes(), getInputSpecs())) {
        Type inputType = std::get<0>(input);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.cc

      // There are specifications for both inputs and outputs.
      if (getNumOperands() != getInputSpecs().size() ||
          getNumResults() != getOutputSpecs().size())
        return emitOpError(
            "has unmatched operands/results number and spec attributes number");
    
      // Verify that quantization specifications are valid.
      for (auto input : llvm::zip(getOperandTypes(), getInputSpecs())) {
        Type inputType = std::get<0>(input);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top