Description
We're currently embedding the selected driver in the precompilation image. For example, here I just upgraded my driver, but didn't recompile the Runtime JLL:
❯ julia +1.9
julia> using CUDA
CUDA.versioninfo()
julia> CUDA.versioninfo()
CUDA runtime 11.8, artifact installation
CUDA driver 12.1
NVIDIA driver 530.41.3
❯ jl +1.9 --pkgimages=no --compiled-modules=no
julia> using CUDA
Downloaded artifact: CUDA_Runtime
julia> CUDA.versioninfo()
CUDA runtime 12.1, artifact installation
CUDA driver 12.1
NVIDIA driver 530.41.3
That's not great. cc @vchuravy