| 292 | namespace { |
| 293 | |
| 294 | void log_default_policy(std::string_view category, std::string_view reason) { |
| 295 | engine::debug::log_message( |
| 296 | engine::debug::LogLevel::Warning, |
| 297 | category, |
| 298 | std::string("using default Torch RNG layout policy ") |
| 299 | + "(multiprocessor_count=1, max_threads_per_multiprocessor=256): " + std::string(reason)); |
| 300 | } |
| 301 | |
| 302 | } // namespace |
| 303 |
no test coverage detected