| 216 | } |
| 217 | |
| 218 | bool IsFusible(const HloInstruction& instr) { |
| 219 | return IsInputFusible(instr) || IsLoopFusible(instr); |
| 220 | } |
| 221 | |
| 222 | bool IsProducerConsumerFusible(const HloInstruction& producer, |
| 223 | const HloInstruction& consumer) { |
no test coverage detected