From 9e4049d94e90e331105f25ce2093c3e069052ef3 Mon Sep 17 00:00:00 2001 From: Pavel V Chupin Date: Tue, 1 Feb 2022 08:58:14 -0800 Subject: [PATCH] [SYCL] Update vc-intrinsics deps to the top of the trunk dpcpp_staging branch is supposed to be used to workaround issues faced due to async pulldowns from llvm-project upstream to vc-intrinsics project and to DPC++ project. As soon as all 3 projects are in sync we should switch DPC++ to the main branch of vc-intrinsics. This is what this change is doing. Meanwhile dpcpp_staging will continue to be used to workaround next set of upstream pulldown issues. --- llvm/lib/SYCLLowerIR/CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/llvm/lib/SYCLLowerIR/CMakeLists.txt b/llvm/lib/SYCLLowerIR/CMakeLists.txt index 75dc9c65ce058..dfc70c9745c5d 100644 --- a/llvm/lib/SYCLLowerIR/CMakeLists.txt +++ b/llvm/lib/SYCLLowerIR/CMakeLists.txt @@ -13,7 +13,11 @@ endif() if (NOT TARGET LLVMGenXIntrinsics) if (NOT DEFINED LLVMGenXIntrinsics_SOURCE_DIR) set(LLVMGenXIntrinsics_GIT_REPO https://github.com/intel/vc-intrinsics.git) - set(LLVMGenXIntrinsics_GIT_TAG dpcpp_staging) + # commit d2f78f24314cd5aad1f633042cf5ae49b0ecdb24 + # Author: Sergey Semenov + # Date: Tue Jan 25 17:59:19 2022 +0000 + # Fix an issue with GenXIntrinsicDescription.gen includes + set(LLVMGenXIntrinsics_GIT_TAG d2f78f24314cd5aad1f633042cf5ae49b0ecdb24) message(STATUS "vc-intrinsics repo is missing. Will try to download it from ${LLVMGenXIntrinsics_GIT_REPO}") include(FetchContent)