diff --git a/.github/workflows/spirv-tests.yml b/.github/workflows/spirv-tests.yml index ea466dc6c52e5..34c77a398c150 100644 --- a/.github/workflows/spirv-tests.yml +++ b/.github/workflows/spirv-tests.yml @@ -25,5 +25,5 @@ jobs: with: build_target: check-llvm-codegen-spirv projects: - extra_cmake_args: '-DLLVM_TARGETS_TO_BUILD="SPIRV" -DLLVM_INCLUDE_SPIRV_TOOLS_TESTS=ON' + extra_cmake_args: '-DLLVM_TARGETS_TO_BUILD="" -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD="SPIRV" -DLLVM_INCLUDE_SPIRV_TOOLS_TESTS=ON' os_list: '["ubuntu-22.04"]' diff --git a/llvm/CMakeLists.txt b/llvm/CMakeLists.txt index ad12100fdb5b8..f14065ab03799 100644 --- a/llvm/CMakeLists.txt +++ b/llvm/CMakeLists.txt @@ -486,7 +486,6 @@ set(LLVM_ALL_TARGETS PowerPC RISCV Sparc - SPIRV SystemZ VE WebAssembly @@ -499,6 +498,7 @@ set(LLVM_ALL_EXPERIMENTAL_TARGETS CSKY DirectX M68k + SPIRV Xtensa ) diff --git a/llvm/Maintainers.md b/llvm/Maintainers.md index 2e995dc27dcd0..74dcc5abf5645 100644 --- a/llvm/Maintainers.md +++ b/llvm/Maintainers.md @@ -284,11 +284,8 @@ koachan@protonmail.com (email), [koachan](https://github.com/koachan) (GitHub) #### SPIRV backend -Vyacheslav Levytskyy \ -vyacheslav.levytskyy@intel.com, vyacheslav.levytskyy@gmail.com (email), [VyacheslavLevytskyy](https://github.com/VyacheslavLevytskyy) (GitHub) - -Nathan Gauër \ -brioche@google.com (email), [Keenuts](https://github.com/Keenuts) (GitHub) +Ilia Diachkov \ +ilia.diachkov@gmail.com (email), [iliya-diyachkov](https://github.com/iliya-diyachkov) (GitHub) #### SystemZ backend diff --git a/llvm/docs/ReleaseNotes.md b/llvm/docs/ReleaseNotes.md index 48f962d212e86..8f88b824f965a 100644 --- a/llvm/docs/ReleaseNotes.md +++ b/llvm/docs/ReleaseNotes.md @@ -47,12 +47,6 @@ for adding a new subsection. --> same semantics. The normalizer makes it easier to spot semantic differences when diffing two modules which have undergone different passes. -* The SPIR-V backend is now an official LLVM target, providing OpenCL and SYCL - conformance and establishing a foundation for broader applicability to other - APIs, including Vulkan, GLSL, and HLSL. This backend aims to offer a unified - approach for diverse compute and graphics workloads, providing a robust - alternative to the Khronos SPIR-V LLVM Translator. - * ...