Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for OperandIdx (0.08 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

    template <typename OpT, int... OperandIdx>
    struct CompileTimeConstantOperand {
      static_assert(
          sizeof...(OperandIdx) > 0,
          "CompileTimeConstantOperand should have at least one operand index.");
    
      using OpType = OpT;
    
      // Returns the indices of operands that should be compile time constants.
      static constexpr std::array<int, sizeof...(OperandIdx)> OperandIndices() {
        return {OperandIdx...};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top