| 2765 | } |
| 2766 | |
| 2767 | bool HloInstruction::IsLoopFusion() const { |
| 2768 | return opcode() == HloOpcode::kFusion && fusion_kind() == FusionKind::kLoop; |
| 2769 | } |
| 2770 | |
| 2771 | bool HloInstruction::IsOutputFusion() const { |
| 2772 | return opcode() == HloOpcode::kFusion && fusion_kind() == FusionKind::kOutput; |
no outgoing calls