| 305 | } |
| 306 | |
| 307 | string FilenameFor(const HloModule& module, string_view prefix, |
| 308 | string_view suffix) { |
| 309 | return StrFormat("%s%smodule_%04d.%s", prefix, prefix.empty() ? "" : ".", |
| 310 | module.unique_id(), suffix); |
| 311 | } |
| 312 | |
| 313 | void DumpToFileInDir(const HloModule& module, string_view file_prefix, |
| 314 | string_view file_suffix, string_view contents) { |
no test coverage detected