Skip to content

Commit b29ab23

Browse files
committed
Add some important packages to versioninfo output
1 parent e0ec269 commit b29ab23

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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)