Skip to content

Commit

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

Signed-off-by: Sergey Kopienko <[email protected]>
  • Loading branch information
SergeyKopienko committed Nov 18, 2024
1 parent d1469c6 commit 129898c
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 : 4;
const std::uint8_t __chunk = __exec.queue().get_device().is_cpu() ? 128 : 8;

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 129898c

Please sign in to comment.