Reduce runtime of gaussian iteration example.

This commit is contained in:
Allison Piper
2025-05-01 16:37:53 +00:00
parent 5016bec99e
commit 62cbdc5ff9

View File

@@ -225,9 +225,9 @@ NVBENCH_BENCH(dual_float64_axis)
[](auto... args) -> std::unique_ptr<nvbench::iteration_space_base> {
return std::make_unique<gauss>(args...);
},
nvbench::float64_axis("Duration_A", nvbench::range(0., 1e-4, 1e-5)))
nvbench::float64_axis("Duration_A", nvbench::range(0., 1e-4, 5e-5)))
.add_user_iteration_axes(
[](auto... args) -> std::unique_ptr<nvbench::iteration_space_base> {
return std::make_unique<gauss>(args...);
},
nvbench::float64_axis("Duration_B", nvbench::range(0., 1e-4, 1e-5)));
nvbench::float64_axis("Duration_B", nvbench::range(0., 1e-4, 5e-5)));