Skip to content

Commit f8e7040

Browse files
committed
re-enable one-work-group radix sort kernels
1 parent af56d6c commit f8e7040

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpctl/tensor/libtensor/include/kernels/sorting/radix_sort.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1483,7 +1483,7 @@ sycl::event parallel_radix_sort_impl(sycl::queue &exec_q,
14831483
dev.template get_info<sycl::info::device::max_work_group_size>();
14841484

14851485
constexpr std::uint16_t ref_wg_size = 64;
1486-
constexpr bool enable_one_wg_radix_sort = false;
1486+
constexpr bool enable_one_wg_radix_sort = true;
14871487
if (enable_one_wg_radix_sort && n_to_sort <= 16384 &&
14881488
ref_wg_size * 8 <= max_wg_size)
14891489
{

0 commit comments

Comments
 (0)