Skip to content
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
8 changes: 4 additions & 4 deletions sycl/include/sycl/reduction.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1133,12 +1133,12 @@ bool reduCGFuncForRange(handler &CGH, KernelType KernelFunc,
size_t NDRItems = NWorkGroups * WGSize;
nd_range<1> NDRange{range<1>{NDRItems}, range<1>{WGSize}};

if constexpr (Reduction::has_fast_atomics)
return reduCGFuncForRangeFastAtomics<KernelName>(CGH, KernelFunc, Range,
NDRange, Redu);
else if constexpr (Reduction::has_fast_reduce)
if constexpr (Reduction::has_fast_reduce)
return reduCGFuncForRangeFastReduce<KernelName>(CGH, KernelFunc, Range,
NDRange, Redu);
else if constexpr (Reduction::has_fast_atomics)
return reduCGFuncForRangeFastAtomics<KernelName>(CGH, KernelFunc, Range,
NDRange, Redu);
else
return reduCGFuncForRangeBasic<KernelName>(CGH, KernelFunc, Range, NDRange,
Redu);
Expand Down