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 77ef570 commit ab1b89cCopy full SHA for ab1b89c
nvbench/detail/measure_cold.cu
@@ -94,9 +94,10 @@ void measure_cold_base::record_measurements()
94
auto current_clock_rate = m_gpu_frequency.get_clock_frequency();
95
auto &printer = printer_opt_ref.value().get();
96
printer.log(nvbench::log_level::warn,
97
- fmt::format("GPU throttled ({:0.2f} MHz / {:0.2f} MHz) ",
+ fmt::format("GPU throttled ({:0.2f} MHz / {:0.2f} MHz) on sample {}",
98
static_cast<float>(current_clock_rate) / 1000000.0f,
99
- static_cast<float>(peak_clock_rate) / 1000000.0f));
+ static_cast<float>(peak_clock_rate) / 1000000.0f,
100
+ m_total_samples));
101
}
102
103
if (m_throttle_recovery_delay > 0.0f)
0 commit comments