You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.
The following warning occurs when DispatchRadixSort is instantiated with an unsigned offset type.
cuda-11.0/bin/../targets/x86_64-linux/include/cub/device/dispatch/../../grid/grid_even_share.cuh: In instantiation of ‘void cub::GridEvenShare<OffsetT>::DispatchInit(OffsetT, int, int) [with OffsetT = unsigned int]’:
required from here
cuda-11.0/bin/../targets/x86_64-linux/include/cub/device/dispatch/../../grid/grid_even_share.cuh:133:37: warning: comparison of integer expressions of different signedness: ‘int’ and ‘unsigned int’ [-Wsign-compare]
133 | this->grid_size = CUB_MIN(total_tiles, max_grid_size);
The following warning occurs when
DispatchRadixSort
is instantiated with an unsigned offset type.Minimal reproduction code:
Is it safe to ignore this warning?
The text was updated successfully, but these errors were encountered: