From e4b40a58e8654af0d5bb82d729c5bc70bf47805a Mon Sep 17 00:00:00 2001 From: Dan Hoeflinger <109972525+danhoeflinger@users.noreply.github.com> Date: Tue, 24 Sep 2024 15:48:52 -0400 Subject: [PATCH] Use __dpl_sycl accessor in single pass scan (#1876) Signed-off-by: Dan Hoeflinger --- include/oneapi/dpl/experimental/kt/single_pass_scan.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/oneapi/dpl/experimental/kt/single_pass_scan.h b/include/oneapi/dpl/experimental/kt/single_pass_scan.h index 635ed869132..754530e26bc 100644 --- a/include/oneapi/dpl/experimental/kt/single_pass_scan.h +++ b/include/oneapi/dpl/experimental/kt/single_pass_scan.h @@ -281,7 +281,7 @@ struct __lookback_submitter<__data_per_workitem, __workgroup_size, _Type, _FlagT _StatusValues&& __status_vals_full, _StatusValues&& __status_vals_partial, std::size_t __current_num_items) const { - using _LocalAccessorType = sycl::local_accessor<_Type, 1>; + using _LocalAccessorType = __dpl_sycl::__local_accessor<_Type, 1>; using _KernelFunc = __lookback_kernel_func<__data_per_workitem, __workgroup_size, _Type, _FlagType, std::decay_t<_InRng>, std::decay_t<_OutRng>, std::decay_t<_BinaryOp>, std::decay_t<_StatusFlags>,