| 671 | } |
| 672 | |
| 673 | std::unique_ptr<HloInstruction> SetName(absl::string_view name, |
| 674 | std::unique_ptr<HloInstruction> instr) { |
| 675 | instr->SetAndSanitizeName(string(name)); |
| 676 | return instr; |
| 677 | } |
| 678 | |
| 679 | TEST_F(PatternMatcherTest, HloInstructionDescribeToAndExplain) { |
| 680 | std::unique_ptr<HloInstruction> iota = |
no test coverage detected