Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/oneAPI.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ using LLVM.Interop
using Core: LLVMPtr

using SPIRV_LLVM_Translator_jll, SPIRV_Tools_jll
using oneAPI_Support_jll

export oneL0

Expand Down
6 changes: 5 additions & 1 deletion src/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ function versioninfo(io::IO=stdout)
if Sys.islinux()
println(io, "Binary dependencies:")
for jll in [oneL0.NEO_jll, oneL0.NEO_jll.libigc_jll, oneL0.NEO_jll.gmmlib_jll,
SPIRV_LLVM_Translator_jll, SPIRV_Tools_jll]
SPIRV_LLVM_Translator_jll, SPIRV_Tools_jll, oneAPI_Support_jll]
name = string(jll)
print(io, "- $(name[1:end-4]): $(Base.pkgversion(jll))")
if jll.host_platform !== nothing
Expand All @@ -12,6 +12,10 @@ function versioninfo(io::IO=stdout)
print(io, " (debug)")
end
end
if jll === oneAPI_Support_jll
ver = oneAPI.oneMKL.version()
print(io, " (oneMKL v$ver)")
end
println(io)
end
println(io)
Expand Down