Skip to content

Commit

Permalink
[SYCL] Fix build again after d0d8a56 (#16268)
Browse files Browse the repository at this point in the history
Manually reproduced the error and confirmed the fix. No idea why we need
to do this though.

Signed-off-by: Nick Sarnie <nick.sarnie@intel.com>
  • Loading branch information
sarnex authored Dec 4, 2024
1 parent 6d2fa74 commit 77ade87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sycl/source/detail/scheduler/commands.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 77ade87

Please sign in to comment.