Helpers for matching non-constant instructions.
| 2363 | |
| 2364 | // Helpers for matching non-constant instructions. |
| 2365 | inline auto NonConstant() -> decltype(Op().IsNonConstant()) { |
| 2366 | return Op().IsNonConstant(); |
| 2367 | } |
| 2368 | |
| 2369 | template <typename HloInstructionType> |
| 2370 | inline auto NonConstant(HloInstructionType** matched_inst) |
no test coverage detected