@@ -63,7 +63,7 @@ static void range(nvbench::state& state, nvbench::type_list<SampleT, CounterT, O
6363 num_active_channels,
6464 sample_iterator_t ,
6565 CounterT,
66- SampleT,
66+ /* LevelT = */ SampleT,
6767 OffsetT>;
6868#endif // TUNE_BASE
6969
@@ -147,7 +147,7 @@ static void range(nvbench::state& state, nvbench::type_list<SampleT, CounterT, O
147147 });
148148}
149149
150- using bin_types = nvbench::type_list<int32_t >;
150+ using counter_types = nvbench::type_list<int32_t >;
151151using some_offset_types = nvbench::type_list<int32_t >;
152152
153153#ifdef TUNE_SampleT
@@ -156,9 +156,9 @@ using sample_types = nvbench::type_list<TUNE_SampleT>;
156156using sample_types = nvbench::type_list<int8_t , int16_t , int32_t , int64_t , float , double >;
157157#endif // TUNE_SampleT
158158
159- NVBENCH_BENCH_TYPES (range, NVBENCH_TYPE_AXES(sample_types, bin_types , some_offset_types))
159+ NVBENCH_BENCH_TYPES (range, NVBENCH_TYPE_AXES(sample_types, counter_types , some_offset_types))
160160 .set_name(" base" )
161- .set_type_axes_names({" SampleT{ct}" , " BinT {ct}" , " OffsetT{ct}" })
161+ .set_type_axes_names({" SampleT{ct}" , " CounterT {ct}" , " OffsetT{ct}" })
162162 .add_int64_power_of_two_axis(" Elements{io}" , nvbench::range(16 , 28 , 4 ))
163163 .add_int64_axis(" Bins" , {32 , 128 , 2048 , 2097152 })
164164 .add_string_axis(" Entropy" , {" 0.201" , " 1.000" });
0 commit comments