diff --git a/src/oneAPI.jl b/src/oneAPI.jl index afb9bc15..bbb4b3f3 100644 --- a/src/oneAPI.jl +++ b/src/oneAPI.jl @@ -16,6 +16,7 @@ using LLVM.Interop using Core: LLVMPtr using SPIRV_LLVM_Translator_jll, SPIRV_Tools_jll +using oneAPI_Support_jll export oneL0 diff --git a/src/utils.jl b/src/utils.jl index 73810bd6..22180da7 100644 --- a/src/utils.jl +++ b/src/utils.jl @@ -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 @@ -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)