| 373 | } |
| 374 | |
| 375 | bool DumpingEnabledForHloModule(string_view hlo_module_name, |
| 376 | const DebugOptions& opts) { |
| 377 | return CanonicalDebugOptions(opts).should_dump_module(hlo_module_name); |
| 378 | } |
| 379 | |
| 380 | bool DumpingToStdout(const DebugOptions& opts) { |
| 381 | return CanonicalDebugOptions(opts).dumping_to_stdout(); |
nothing calls this directly
no test coverage detected