From 6bf55470c9a027cbd8ce89407a45b75bdf87f5f1 Mon Sep 17 00:00:00 2001 From: Jinsong Ji Date: Tue, 10 Oct 2023 18:43:35 -0700 Subject: [PATCH] [UR] Fix accidentaly rollback in 7812fa95e2c We have updated UR after https://github.com/intel/llvm/pull/11343 was posted, However, when the PR was merged, it accidentally rollbacked UR. This is to fix the rollback and also added comments in CMakeLists.txt to help avoiding future accidental rollback. --- sycl/plugins/unified_runtime/CMakeLists.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/sycl/plugins/unified_runtime/CMakeLists.txt b/sycl/plugins/unified_runtime/CMakeLists.txt index b6b0c4f8abee7..e0cee9dfe3e7d 100644 --- a/sycl/plugins/unified_runtime/CMakeLists.txt +++ b/sycl/plugins/unified_runtime/CMakeLists.txt @@ -4,7 +4,13 @@ if (NOT DEFINED UNIFIED_RUNTIME_LIBRARY OR NOT DEFINED UNIFIED_RUNTIME_INCLUDE_D include(FetchContent) set(UNIFIED_RUNTIME_REPO "https://github.com/oneapi-src/unified-runtime.git") - set(UNIFIED_RUNTIME_TAG e6343f4cca9a37b17bc63f3a81968ac3f486be8a) + #commit b38855ed815ffd076bfde5e5e06170ca4f723dc1 + #Merge: e6343f4 6a2c548 + #Author: Piotr Balcer + #Date: Thu Oct 5 12:15:42 2023 +0200 + # Merge pull request #920 from jsji/localcopy + # [UR][L0] Copy prebuilt L0 to avoid leaking shared folder path + set(UNIFIED_RUNTIME_TAG b38855ed815ffd076bfde5e5e06170ca4f723dc1) set(UR_BUILD_ADAPTER_L0 ON)