| 106 | bool DumpingEnabledForHloModule(absl::string_view hlo_module_name, |
| 107 | const DebugOptions& opts); |
| 108 | inline bool DumpingEnabledForHloModule(const HloModule& module) { |
| 109 | return DumpingEnabledForHloModule(module.name(), |
| 110 | module.config().debug_options()); |
| 111 | } |
| 112 | |
| 113 | // Returns true if DumpToFileInDirOrStdout and DumpHloModuleIfEnabled will write |
| 114 | // to stdout, rather than to a file on disk. |
no test coverage detected