Skip to content

Commit

Permalink
[SYCL][UR][Graph] Bump UR commit to kernel update (intel#12645)
Browse files Browse the repository at this point in the history
The new entry-points added by
oneapi-src/unified-runtime#1089 are currently
unused by SYCL-Graph, but will be build upon later in
intel#12486
  • Loading branch information
EwanC committed Feb 13, 2024
1 parent 9a327d7 commit 9b8a6ff
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
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

0 comments on commit 9b8a6ff

Please sign in to comment.