Skip to content

Commit 5d5ec9e

Browse files
fabiomestreaarongreigEwanC
authored
[Sycl][Graph] Fix command-buffer binary update implementation (#15569)
Bumps the UR tag and change the command-buffer update to pass nullptr to hNewKernel. Corresponding UR PR: oneapi-src/unified-runtime#2152 --------- Co-authored-by: Aaron Greig <aaron.greig@codeplay.com> Co-authored-by: Ewan Crawford <ewan@codeplay.com>
1 parent 27e1089 commit 5d5ec9e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# commit dbd168cbed2d2590b47904728cd5762f1c2f4c6b (HEAD, origin/main, origin/HEAD)
2-
# Merge: 694c1b9a 27ad3f7d
3-
# Author: Piotr Balcer <piotr.balcer@intel.com>
4-
# Date: Mon Oct 28 16:29:45 2024 +0100
5-
# Merge pull request #2242 from nrspruit/sysman_env_disable
6-
# [L0] Enable Sysman Thru Env by default and have zesInit be optional
7-
set(UNIFIED_RUNTIME_TAG dbd168cbed2d2590b47904728cd5762f1c2f4c6b)
1+
# commit a9c7aef861988d4b8421f3e760e63f4e3da9398d (HEAD, origin/main, origin/HEAD)
2+
# Merge: dbd168c 3142142
3+
# Author: aarongreig <aaron.greig@codeplay.com>
4+
# Date: Mon Oct 28 15:56:46 2024 +0000
5+
# Merge pull request #2152 from Bensuo/fabio/binary_update_fix
6+
# Fix command-buffer binary update implementation
7+
set(UNIFIED_RUNTIME_TAG a9c7aef861988d4b8421f3e760e63f4e3da9398d)

sycl/source/detail/graph_impl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1515,7 +1515,7 @@ void exec_graph_impl::updateImpl(std::shared_ptr<node_impl> Node) {
15151515
}
15161516
}
15171517

1518-
UpdateDesc.hNewKernel = UrKernel;
1518+
UpdateDesc.hNewKernel = nullptr;
15191519
UpdateDesc.numNewMemObjArgs = MemobjDescs.size();
15201520
UpdateDesc.pNewMemObjArgList = MemobjDescs.data();
15211521
UpdateDesc.numNewPointerArgs = PtrDescs.size();

0 commit comments

Comments
 (0)