| 3376 | } |
| 3377 | |
| 3378 | string ToString(HloInstruction::FusionKind kind) { |
| 3379 | switch (kind) { |
| 3380 | case HloInstruction::FusionKind::kLoop: |
| 3381 | return "kLoop"; |
| 3382 | case HloInstruction::FusionKind::kInput: |
| 3383 | return "kInput"; |
| 3384 | case HloInstruction::FusionKind::kOutput: |
| 3385 | return "kOutput"; |
| 3386 | case HloInstruction::FusionKind::kCustom: |
| 3387 | return "kCustom"; |
| 3388 | } |
| 3389 | } |
| 3390 | |
| 3391 | StatusOr<HloInstruction::FusionKind> StringToFusionKind( |
| 3392 | const string& kind_name) { |
no outgoing calls