Support nvbench.Benchmark.add_int64_power_of_two_axis

This commit is contained in:
Oleksandr Pavlyk
2025-07-22 15:58:36 -05:00
parent 526856db4e
commit dc7f9edfd4
2 changed files with 18 additions and 8 deletions

View File

@@ -49,6 +49,9 @@ class Benchmark:
def add_int64_axis(self, name: str, values: Sequence[int]) -> Self:
"Add integral type parameter axis with given name and values to sweep over"
...
def add_int64_power_of_two_axis(self, name: str, values: Sequence[int]) -> Self:
"Add integral type parameter axis with given name and values to sweep over"
...
def add_float64_axis(self, name: str, values: Sequence[float]) -> Self:
"Add floating-point type parameter axis with given name and values to sweep over"
...