We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
CUB
CUB radix sort doesn't support FP8. The code below doesn't compile:
__global__ void kernel() { using block_radix_sort_t = cub::BlockRadixSort<__nv_fp8_e4m3, 32, 1>; using temp_storage_t = block_radix_sort_t::TempStorage; __shared__ temp_storage_t temp_storage; __nv_fp8_e4m3 fp8[1]{__nv_fp8_e4m3(static_cast<float>(threadIdx.x))}; block_radix_sort_t(temp_storage).SortDescending(fp8); }
FP8 support is documented and tested.
No response
The text was updated successfully, but these errors were encountered:
gevtushenko
Successfully merging a pull request may close this issue.
Is this a duplicate?
Area
CUB
Is your feature request related to a problem? Please describe.
CUB radix sort doesn't support FP8. The code below doesn't compile:
Describe the solution you'd like
FP8 support is documented and tested.
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: