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
4 changes: 3 additions & 1 deletion CUDACore/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ LazyArtifacts = "4af54fe1-eca0-43a8-85a7-787d91b784e3"
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568"
NVPTX_LLVM_Backend_jll = "ef6e0fe3-e6ef-59c0-bde6-4989574699e0"
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
Preferences = "21216c6a-2e73-6563-6e65-726566657250"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Expand Down Expand Up @@ -53,7 +54,7 @@ ChainRulesCore = "1"
EnzymeCore = "0.8.2"
ExprTools = "0.1"
GPUArrays = "11.5.4"
GPUCompiler = "1.13.1"
GPUCompiler = "1.18"
GPUToolbox = "1.1"
KernelAbstractions = "0.9.38"
LLVM = "9.6"
Expand All @@ -62,6 +63,7 @@ LazyArtifacts = "1"
Libdl = "1"
LinearAlgebra = "1"
Logging = "1"
NVPTX_LLVM_Backend_jll = "22"
PrecompileTools = "1"
Preferences = "1"
Printf = "1"
Expand Down
2 changes: 2 additions & 0 deletions CUDACore/src/CUDACore.jl
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ else
const CUDA_Compiler = CUDA_Compiler_jll
end

import NVPTX_LLVM_Backend_jll

using Libdl

using Printf
Expand Down
3 changes: 2 additions & 1 deletion CUDATools/src/utilities.jl
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ function versioninfo(io::IO=stdout)
println(io, "Julia packages: ")
println(io, "- CUDACore: $(Base.pkgversion(CUDACore))")
for name in [:GPUArrays, :GPUCompiler, :KernelAbstractions, :CUDA_Driver_jll,
:CUDA_Compiler_jll, :CUDA_Runtime_jll, :CUDA_Runtime_Discovery]
:CUDA_Compiler_jll, :CUDA_Runtime_jll, :CUDA_Runtime_Discovery,
:NVPTX_LLVM_Backend_jll]
isdefined(CUDACore, name) || continue
mod = getfield(CUDACore, name)
println(io, "- $(name): $(Base.pkgversion(mod))")
Expand Down