We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45078e5 commit ce3943eCopy full SHA for ce3943e
source/source_base/module_device/output_device.cpp
@@ -136,12 +136,12 @@ void output_device_info(std::ostream &output)
136
137
// Output all collected information
138
output << " RUNNING WITH DEVICE : " << "CPU" << " / "
139
- << cpu_name << "(x" << total_cpus << ")" << std::endl;
+ << cpu_name << " (x" << total_cpus << ")" << std::endl;
140
#if defined(__CUDA) || defined(__ROCM)
141
if(PARAM.inp.device == "gpu" && total_gpus > 0)
142
{
143
output << " " << "GPU" << " / "
144
- << gpu_name << "(x" << total_gpus << ")" << std::endl;
+ << gpu_name << " (x" << total_gpus << ")" << std::endl;
145
}
146
#endif
147
0 commit comments