| 311 | } |
| 312 | |
| 313 | void DumpToFileInDir(const HloModule& module, string_view file_prefix, |
| 314 | string_view file_suffix, string_view contents) { |
| 315 | DumpToFileInDirImpl(FilenameFor(module, file_prefix, file_suffix), contents, |
| 316 | CanonicalDebugOptions(module.config().debug_options())); |
| 317 | } |
| 318 | |
| 319 | void DumpToFileInDirOrStdout(const HloModule& module, string_view file_prefix, |
| 320 | string_view file_suffix, string_view contents) { |
no test coverage detected