Skip to content

Commit b4e865a

Browse files
author
Fábio Mestre
committed
Fix command-buffer binary update implementation
1 parent 19516d0 commit b4e865a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

sycl/cmake/modules/FetchUnifiedRuntime.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,14 +116,14 @@ if(SYCL_UR_USE_FETCH_CONTENT)
116116
CACHE PATH "Path to external '${name}' adapter source dir" FORCE)
117117
endfunction()
118118

119-
set(UNIFIED_RUNTIME_REPO "https://github.com/oneapi-src/unified-runtime.git")
119+
set(UNIFIED_RUNTIME_REPO "https://github.com/Bensuo/unified-runtime.git")
120120
# commit 532a4ecb72da4876cef61a4ae4d638e27ad609d5
121121
# Merge: 22962057 d944ff33
122122
# Author: aarongreig <[email protected]>
123123
# Date: Mon Sep 30 10:43:10 2024 +0100
124124
# Merge pull request #1924 from Bensuo/fabio/cmd_buffer_kernel_update
125125
# Add support for command-buffer kernel updates
126-
set(UNIFIED_RUNTIME_TAG 532a4ecb72da4876cef61a4ae4d638e27ad609d5)
126+
set(UNIFIED_RUNTIME_TAG 017d8f385ac569ac15cf408129febfcc3e1037a7)
127127

128128
set(UMF_BUILD_EXAMPLES OFF CACHE INTERNAL "EXAMPLES")
129129
# Due to the use of dependentloadflag and no installer for UMF and hwloc we need

sycl/source/detail/graph_impl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1474,7 +1474,7 @@ void exec_graph_impl::updateImpl(std::shared_ptr<node_impl> Node) {
14741474
}
14751475
}
14761476

1477-
UpdateDesc.hNewKernel = UrKernel;
1477+
UpdateDesc.hNewKernel = nullptr;
14781478
UpdateDesc.numNewMemObjArgs = MemobjDescs.size();
14791479
UpdateDesc.pNewMemObjArgList = MemobjDescs.data();
14801480
UpdateDesc.numNewPointerArgs = PtrDescs.size();

0 commit comments

Comments
 (0)