| 3803 | } |
| 3804 | |
| 3805 | const bool HloInstruction::IsMultiOutputFusion() const { |
| 3806 | const HloFusionInstruction* fusion = DynCast<HloFusionInstruction>(this); |
| 3807 | return fusion != nullptr && fusion->IsMultiOutputFusion(); |
| 3808 | } |
| 3809 | |
| 3810 | HloInstruction::FusionKind HloInstruction::fusion_kind() const { |
| 3811 | return Cast<HloFusionInstruction>(this)->fusion_kind(); |
no outgoing calls