File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -376,15 +376,15 @@ PYBIND11_MODULE(_nvbench, m)
376376 py::arg (" duration_seconds" ));
377377 py_benchmark_cls.def (
378378 " set_throttle_threshold" ,
379- [](nvbench::benchmark_base &self, nvbench::float64_t threshold) {
379+ [](nvbench::benchmark_base &self, nvbench::float32_t threshold) {
380380 self.set_throttle_threshold (threshold);
381381 return std::ref (self);
382382 },
383383 py::return_value_policy::reference,
384384 py::arg (" threshold" ));
385385 py_benchmark_cls.def (
386386 " set_throttle_recovery_delay" ,
387- [](nvbench::benchmark_base &self, nvbench::float64_t delay) {
387+ [](nvbench::benchmark_base &self, nvbench::float32_t delay) {
388388 self.set_throttle_recovery_delay (delay);
389389 return std::ref (self);
390390 },
You can’t perform that action at this time.
0 commit comments