Skip to content

Commit 7601804

Browse files
authored
Upgrade and switch to the non-unified SPIRV LLVM Translator. (#501)
1 parent 548084d commit 7601804

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Preferences = "21216c6a-2e73-6563-6e65-726566657250"
1919
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
2020
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
2121
SPIRVIntrinsics = "71d1d633-e7e8-4a92-83a1-de8814b09ba8"
22-
SPIRV_LLVM_Translator_unified_jll = "85f0d8ed-5b39-5caa-b1ae-7472de402361"
22+
SPIRV_LLVM_Translator_jll = "4a5d46fc-d8cf-5151-a261-86b458210efb"
2323
SPIRV_Tools_jll = "6ac6d60f-d740-5983-97d7-a4482c0689f4"
2424
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
2525
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
@@ -33,14 +33,14 @@ Adapt = "4"
3333
CEnum = "0.4, 0.5"
3434
ExprTools = "0.1"
3535
GPUArrays = "11.2.1"
36-
GPUCompiler = "0.23, 0.24, 0.25, 0.26, 0.27, 1"
36+
GPUCompiler = "1.5"
3737
GPUToolbox = "0.1, 0.2"
3838
KernelAbstractions = "0.9.1"
3939
LLVM = "6, 7, 8, 9"
4040
NEO_jll = "=24.26.30049"
4141
Preferences = "1"
4242
SPIRVIntrinsics = "0.2"
43-
SPIRV_LLVM_Translator_unified_jll = "0.7"
43+
SPIRV_LLVM_Translator_jll = "20"
4444
SpecialFunctions = "1.3, 2"
4545
StaticArrays = "1"
4646
julia = "1.10"

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@ julia> using oneAPI
5757

5858
julia> oneAPI.versioninfo()
5959
Binary dependencies:
60-
- NEO_jll: 22.43.24595+0
61-
- libigc_jll: 1.0.12504+0
62-
- gmmlib_jll: 22.3.0+0
63-
- SPIRV_LLVM_Translator_unified_jll: 0.2.0+0
64-
- SPIRV_Tools_jll: 2022.1.0+0
60+
- NEO: 24.26.30049+0
61+
- libigc: 1.0.17193+0
62+
- gmmlib: 22.3.20+0
63+
- SPIRV_LLVM_Translator: 20.1.0+1
64+
- SPIRV_Tools: 2025.1.0+1
6565

6666
Toolchain:
67-
- Julia: 1.8.5
68-
- LLVM: 13.0.1
67+
- Julia: 1.11.5
68+
- LLVM: 16.0.6
6969

7070
1 driver:
7171
- 00000000-0000-0000-173d-d94201036013 (v1.3.24595, API v1.3.0)

src/oneAPI.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ using LLVM
1515
using LLVM.Interop
1616
using Core: LLVMPtr
1717

18-
using SPIRV_LLVM_Translator_unified_jll, SPIRV_Tools_jll
18+
using SPIRV_LLVM_Translator_jll, SPIRV_Tools_jll
1919

2020
export oneL0
2121

src/utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ function versioninfo(io::IO=stdout)
33
if Sys.islinux()
44
println(io, "Binary dependencies:")
55
for jll in [oneL0.NEO_jll, oneL0.NEO_jll.libigc_jll, oneL0.NEO_jll.gmmlib_jll,
6-
SPIRV_LLVM_Translator_unified_jll, SPIRV_Tools_jll]
6+
SPIRV_LLVM_Translator_jll, SPIRV_Tools_jll]
77
name = string(jll)
88
print(io, "- $(name[1:end-4]): $(Base.pkgversion(jll))")
99
if jll.host_platform !== nothing

0 commit comments

Comments
 (0)