Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SYCL][UR][Graph] Bump UR commit to kernel update #12645

Merged
merged 1 commit into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions sycl/plugins/unified_runtime/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ if(SYCL_PI_UR_USE_FETCH_CONTENT)
include(FetchContent)

set(UNIFIED_RUNTIME_REPO "https://github.com/oneapi-src/unified-runtime.git")
# commit be849b2f745fc525cf77bc2fe42c469751093706
# Merge: 47102cb2 92a02504
# Author: aarongreig <aaron.greig@codeplay.com>
# Date: Mon Feb 12 10:01:50 2024 +0000
# Merge pull request #1324 from raiyanla/event-opt
# [L0] Allocate event pools efficiently in multi-device scenarios
set(UNIFIED_RUNTIME_TAG be849b2f745fc525cf77bc2fe42c469751093706)
# commit 8ff738f424de6f84fa16c9f7d41c8c70b766665d
# Merge: 5e548c5e fbdaf72a
# Author: Kenneth Benzie (Benie) <k.benzie@codeplay.com>
# Date: Tue Feb 13 13:01:03 2024 +0100
# Merge pull request #1089 from Bensuo/ewan/update
# [EXP][Command-Buffer] Add kernel command update
set(UNIFIED_RUNTIME_TAG 8ff738f424de6f84fa16c9f7d41c8c70b766665d)

if(SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO)
set(UNIFIED_RUNTIME_REPO "${SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO}")
endif()
Expand Down
3 changes: 2 additions & 1 deletion sycl/plugins/unified_runtime/pi2ur.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4477,7 +4477,8 @@ inline pi_result piextCommandBufferNDRangeKernel(

HANDLE_ERRORS(urCommandBufferAppendKernelLaunchExp(
UrCommandBuffer, UrKernel, WorkDim, GlobalWorkOffset, GlobalWorkSize,
LocalWorkSize, NumSyncPointsInWaitList, SyncPointWaitList, SyncPoint));
LocalWorkSize, NumSyncPointsInWaitList, SyncPointWaitList, SyncPoint,
nullptr));

return PI_SUCCESS;
}
Expand Down
Loading