| 2769 | } |
| 2770 | |
| 2771 | bool HloInstruction::IsOutputFusion() const { |
| 2772 | return opcode() == HloOpcode::kFusion && fusion_kind() == FusionKind::kOutput; |
| 2773 | } |
| 2774 | |
| 2775 | bool HloInstruction::IsCustomFusion() const { |
| 2776 | return opcode() == HloOpcode::kFusion && fusion_kind() == FusionKind::kCustom; |
no outgoing calls
no test coverage detected