Skip to content

Commit

Permalink
Revert "include/oneapi/dpl/pstl/hetero/dpcpp/parallel_backend_sycl_me…
Browse files Browse the repository at this point in the history
…rge.h - increate chunk size on GPU to 8"

This reverts commit 1b5f0a7.
  • Loading branch information
SergeyKopienko committed Nov 19, 2024
1 parent 3ec199d commit fde1797
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ struct __parallel_merge_submitter_large<_IdType, _CustomName,
_PRINT_INFO_IN_DEBUG_MODE(__exec);

// Empirical number of values to process per work-item
const _IdType __chunk = __exec.queue().get_device().is_cpu() ? 128 : 8;
const _IdType __chunk = __exec.queue().get_device().is_cpu() ? 128 : 4;
assert(__chunk > 0);

// Pessimistically only use half of the memory to take into account memory used by compiled kernel
Expand Down

0 comments on commit fde1797

Please sign in to comment.