Skip to content
New issue

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

Make kernel names unique in radix sort #1927

Merged
merged 2 commits into from
Oct 31, 2024
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -655,15 +655,15 @@ struct __parallel_radix_sort_iteration
using _CustomName = oneapi::dpl::__internal::__policy_kernel_name<_ExecutionPolicy>;
using _RadixCountKernel =
__internal::__kernel_name_generator<__count_phase, _CustomName, _ExecutionPolicy, ::std::decay_t<_InRange>,
::std::decay_t<_TmpBuf>>;
::std::decay_t<_TmpBuf>, _Proj>;
using _RadixLocalScanKernel = __internal::__kernel_name_generator<__local_scan_phase, _CustomName,
_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
Loading