From 387cd357a54b4ee023d4c81f548b6202cad45369 Mon Sep 17 00:00:00 2001 From: Nick Sarnie Date: Wed, 4 Dec 2024 10:34:42 -0800 Subject: [PATCH] [SYCL] Fix build again after d0d8a56 Signed-off-by: Nick Sarnie --- sycl/source/detail/scheduler/commands.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sycl/source/detail/scheduler/commands.cpp b/sycl/source/detail/scheduler/commands.cpp index 81fcf14482a2f..ebe6e9df5f82d 100644 --- a/sycl/source/detail/scheduler/commands.cpp +++ b/sycl/source/detail/scheduler/commands.cpp @@ -2509,7 +2509,7 @@ static ur_result_t SetKernelParamsAndLaunch( // If there is no implicit arg, let the driver handle it via a property if (WorkGroupMemorySize && !ImplicitLocalArg.has_value()) { property_list.push_back( - {UR_EXP_LAUNCH_PROPERTY_ID_WORK_GROUP_MEMORY, {WorkGroupMemorySize}}); + {UR_EXP_LAUNCH_PROPERTY_ID_WORK_GROUP_MEMORY, {{WorkGroupMemorySize}}}); } if (!property_list.empty()) { ur_event_handle_t UREvent = nullptr;