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 3fc1012.
  • Loading branch information
SergeyKopienko committed Nov 18, 2024
1 parent 58eacbf commit 8f756f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ struct __parallel_merge_submitter_large<_IdType, _CustomName,
_PRINT_INFO_IN_DEBUG_MODE(__exec);

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

const _IdType __steps = oneapi::dpl::__internal::__dpl_ceiling_div(__n, __chunk);
const _IdType __base_diag_count = 1'024 * 32;
Expand Down

0 comments on commit 8f756f0

Please sign in to comment.