Skip to content

Commit 338b067

Browse files
committed
Add some packages to versioninfo output
1 parent e0ec269 commit 338b067

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/CUDA.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ using LLVM
1010
using LLVM.Interop
1111
using Core: LLVMPtr
1212

13+
import KernelAbstractions
14+
1315
using Adapt: Adapt, adapt, WrappedArray
1416

1517
using Requires: @require

src/utilities.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ function versioninfo(io::IO=stdout)
6969

7070
println(io, "Julia packages: ")
7171
println(io, "- CUDA: $(Base.pkgversion(CUDA))")
72-
for name in [:CUDA_Driver_jll, :CUDA_Compiler_jll, :CUDA_Runtime_jll, :CUDA_Runtime_Discovery]
72+
for name in [:CUDA_Driver_jll, :CUDA_Compiler_jll, :CUDA_Runtime_jll, :CUDA_Runtime_Discovery,
73+
:GPUArrays, :GPUCompiler, :KernelAbstractions]
7374
isdefined(CUDA, name) || continue
7475
mod = getfield(CUDA, name)
7576
println(io, "- $(name): $(Base.pkgversion(mod))")

0 commit comments

Comments
 (0)