From 4766daeab5486f8ab598abab58b53ebc883f63d3 Mon Sep 17 00:00:00 2001 From: Sergey Kopienko Date: Mon, 3 Feb 2025 13:03:26 +0100 Subject: [PATCH] Fix spelling-check error (#2036) --- .../dpl/experimental/kt/internal/esimd_radix_sort_dispatchers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/oneapi/dpl/experimental/kt/internal/esimd_radix_sort_dispatchers.h b/include/oneapi/dpl/experimental/kt/internal/esimd_radix_sort_dispatchers.h index 9c762bb864b..d8cd5f75002 100644 --- a/include/oneapi/dpl/experimental/kt/internal/esimd_radix_sort_dispatchers.h +++ b/include/oneapi/dpl/experimental/kt/internal/esimd_radix_sort_dispatchers.h @@ -245,7 +245,7 @@ __onesweep_impl(sycl::queue __q, _RngPack1&& __input_pack, _RngPack2&& __virt_pa constexpr ::std::uint32_t __global_hist_item_count = __bin_count * __stage_count; const ::std::uint32_t __group_hist_item_count = __bin_count * __stage_count * __sweep_work_group_count; - // TODO: check if it is more performant to fill it inside the histgogram kernel + // TODO: check if it is more performant to fill it inside the histogram kernel // This line assumes that global and group histograms are stored sequentially sycl::event __event_chain = __q.memset(__mem_holder.__global_hist_ptr(), 0, (__global_hist_item_count + __group_hist_item_count) * sizeof(_GlobalHistT));