Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds support for large number of items to DeviceScan #2171

Merged
merged 10 commits into from
Aug 21, 2024
2 changes: 1 addition & 1 deletion cub/benchmarks/bench/scan/exclusive/base.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ static void basic(nvbench::state& state, nvbench::type_list<T, OffsetT>)
});
}

using some_offset_types = nvbench::type_list<nvbench::int32_t>;
using some_offset_types = nvbench::type_list<nvbench::uint32_t, nvbench::uint64_t>;

NVBENCH_BENCH_TYPES(basic, NVBENCH_TYPE_AXES(all_types, some_offset_types))
.set_name("base")
Expand Down
Loading
Loading