Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
check
  • Loading branch information
bernhardmgruber committed Mar 4, 2025
commit e5bdd9396f8942a484f964e20c9f5dca0cd287b7
3 changes: 2 additions & 1 deletion cub/cub/device/dispatch/dispatch_scan_by_key.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,8 @@ template <
detail::scan_by_key::policy_hub<KeysInputIteratorT, AccumT, cub::detail::it_value_t<ValuesInputIteratorT>, ScanOpT>>
struct DispatchScanByKey
{
static_assert(::cuda::std::is_unsigned_v<OffsetT>, "DispatchScanByKey only supports unsigned offset types");
static_assert(::cuda::std::is_unsigned_v<OffsetT> && sizeof(OffsetT) >= 4,
"DispatchScan only supports unsigned offset types of at least 4-bytes");

//---------------------------------------------------------------------
// Constants and Types
Expand Down
Loading