| 692 | } |
| 693 | |
| 694 | Status VerifyHloModule(HloModule* const module, bool layout_sensitive, |
| 695 | bool allow_mixed_precision) { |
| 696 | return HloVerifier(/*layout_sensitive=*/layout_sensitive, |
| 697 | /*allow_mixed_precision=*/allow_mixed_precision) |
| 698 | .Run(module) |
| 699 | .status(); |
| 700 | } |
| 701 | |
| 702 | std::unique_ptr<HloDotInstruction> CreateCanonicalDot(const Shape& shape, |
| 703 | HloInstruction* lhs, |
no test coverage detected