@@ -54,7 +54,7 @@ namespace kernels {
5454namespace dpcpp {
5555
5656
57- static constexpr auto kcfg_1d_list_simple_reduction = kcfg_1d_list_t ();
57+ static constexpr auto dcfg_1d_list_simple_reduction = dcfg_1d_list_t ();
5858
5959
6060template <typename DeviceConfig, typename ValueType, typename KernelFunction,
@@ -249,7 +249,7 @@ void run_kernel_reduction_impl(std::shared_ptr<const DpcppExecutor> exec,
249249
250250GKO_ENABLE_IMPLEMENTATION_CONFIG_SELECTION_TOTYPE (select_run_kernel_reduction,
251251 run_kernel_reduction_impl,
252- KCFG_1D )
252+ DCFG_1D )
253253
254254
255255template <typename ValueType, typename KernelFunction, typename ReductionOp,
@@ -261,12 +261,12 @@ void run_kernel_reduction_cached(std::shared_ptr<const DpcppExecutor> exec,
261261 array<char >& tmp, KernelArgs&&... args)
262262{
263263 const auto desired_cfg = get_first_cfg (
264- as_array (kcfg_1d_list_simple_reduction ), [&](std::uint32_t cfg) {
265- return validate (exec->get_queue (), KCFG_1D ::decode<0 >(cfg),
266- KCFG_1D ::decode<1 >(cfg));
264+ as_array (dcfg_1d_list_simple_reduction ), [&](std::uint32_t cfg) {
265+ return validate (exec->get_queue (), DCFG_1D ::decode<0 >(cfg),
266+ DCFG_1D ::decode<1 >(cfg));
267267 });
268268 select_run_kernel_reduction (
269- kcfg_1d_list_simple_reduction ,
269+ dcfg_1d_list_simple_reduction ,
270270 [&](std::uint32_t cfg) { return cfg == desired_cfg; },
271271 syn::value_list<bool >(), syn::value_list<int >(),
272272 syn::value_list<size_type>(), syn::type_list<>(), exec, fn, op,
@@ -283,12 +283,12 @@ void run_kernel_reduction_cached(std::shared_ptr<const DpcppExecutor> exec,
283283 array<char >& tmp, KernelArgs&&... args)
284284{
285285 const auto desired_cfg = get_first_cfg (
286- as_array (kcfg_1d_list_simple_reduction ), [&](std::uint32_t cfg) {
287- return validate (exec->get_queue (), KCFG_1D ::decode<0 >(cfg),
288- KCFG_1D ::decode<1 >(cfg));
286+ as_array (dcfg_1d_list_simple_reduction ), [&](std::uint32_t cfg) {
287+ return validate (exec->get_queue (), DCFG_1D ::decode<0 >(cfg),
288+ DCFG_1D ::decode<1 >(cfg));
289289 });
290290 select_run_kernel_reduction (
291- kcfg_1d_list_simple_reduction ,
291+ dcfg_1d_list_simple_reduction ,
292292 [&](std::uint32_t cfg) { return cfg == desired_cfg; },
293293 syn::value_list<bool >(), syn::value_list<int >(),
294294 syn::value_list<size_type>(), syn::type_list<>(), exec, fn, op,
@@ -600,7 +600,7 @@ void run_kernel_row_reduction_stage1(std::shared_ptr<const DpcppExecutor> exec,
600600
601601GKO_ENABLE_IMPLEMENTATION_CONFIG_SELECTION_TOTYPE (
602602 select_kernel_row_reduction_stage1, run_kernel_row_reduction_stage1,
603- KCFG_1D );
603+ DCFG_1D );
604604
605605
606606template <typename cfg, typename ValueType, typename KernelFunction,
@@ -666,7 +666,7 @@ void run_kernel_col_reduction_stage1(std::shared_ptr<const DpcppExecutor> exec,
666666
667667GKO_ENABLE_IMPLEMENTATION_CONFIG_SELECTION_TOTYPE (
668668 select_kernel_col_reduction_stage1, run_kernel_col_reduction_stage1,
669- KCFG_1D );
669+ DCFG_1D );
670670
671671
672672} // namespace
@@ -682,12 +682,12 @@ void run_kernel_row_reduction_cached(std::shared_ptr<const DpcppExecutor> exec,
682682 KernelArgs&&... args)
683683{
684684 const auto desired_cfg = get_first_cfg (
685- as_array (kcfg_1d_list_simple_reduction ), [&](std::uint32_t cfg) {
686- return validate (exec->get_queue (), KCFG_1D ::decode<0 >(cfg),
687- KCFG_1D ::decode<1 >(cfg));
685+ as_array (dcfg_1d_list_simple_reduction ), [&](std::uint32_t cfg) {
686+ return validate (exec->get_queue (), DCFG_1D ::decode<0 >(cfg),
687+ DCFG_1D ::decode<1 >(cfg));
688688 });
689689 select_kernel_row_reduction_stage1 (
690- kcfg_1d_list_simple_reduction ,
690+ dcfg_1d_list_simple_reduction ,
691691 [&](std::uint32_t cfg) { return cfg == desired_cfg; },
692692 syn::value_list<bool >(), syn::value_list<int >(),
693693 syn::value_list<size_type>(), syn::type_list<>(), exec, fn, op,
@@ -705,12 +705,12 @@ void run_kernel_col_reduction_cached(std::shared_ptr<const DpcppExecutor> exec,
705705 array<char >& tmp, KernelArgs&&... args)
706706{
707707 const auto desired_cfg = get_first_cfg (
708- as_array (kcfg_1d_list_simple_reduction ), [&](std::uint32_t cfg) {
709- return validate (exec->get_queue (), KCFG_1D ::decode<0 >(cfg),
710- KCFG_1D ::decode<1 >(cfg));
708+ as_array (dcfg_1d_list_simple_reduction ), [&](std::uint32_t cfg) {
709+ return validate (exec->get_queue (), DCFG_1D ::decode<0 >(cfg),
710+ DCFG_1D ::decode<1 >(cfg));
711711 });
712712 select_kernel_col_reduction_stage1 (
713- kcfg_1d_list_simple_reduction ,
713+ dcfg_1d_list_simple_reduction ,
714714 [&](std::uint32_t cfg) { return cfg == desired_cfg; },
715715 syn::value_list<bool >(), syn::value_list<int >(),
716716 syn::value_list<size_type>(), syn::type_list<>(), exec, fn, op,
0 commit comments