Skip to content

Commit

Permalink
Apply the same fix to reorder phase
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitriy Sobolev <[email protected]>
  • Loading branch information
dmitriy-sobolev committed Oct 31, 2024
1 parent 0d3818f commit 5ce78b4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -660,10 +660,10 @@ struct __parallel_radix_sort_iteration
_ExecutionPolicy, ::std::decay_t<_TmpBuf>>;
using _RadixReorderPeerKernel =
__internal::__kernel_name_generator<__reorder_peer_phase, _CustomName, _ExecutionPolicy,
::std::decay_t<_InRange>, ::std::decay_t<_OutRange>>;
::std::decay_t<_InRange>, ::std::decay_t<_OutRange>, _Proj>;
using _RadixReorderKernel =
__internal::__kernel_name_generator<__reorder_phase, _CustomName, _ExecutionPolicy,
::std::decay_t<_InRange>, ::std::decay_t<_OutRange>>;
::std::decay_t<_InRange>, ::std::decay_t<_OutRange>, _Proj>;

::std::size_t __max_sg_size = oneapi::dpl::__internal::__max_sub_group_size(__exec);
::std::size_t __reorder_sg_size = __max_sg_size;
Expand Down

0 comments on commit 5ce78b4

Please sign in to comment.