Correct version of cuda.jl for Quadro K4200

I’d like to learn how to use gpu computing with my pc, runs on ubuntu linux and has a Quadro K4200 gpu which only has a compute capability of 3.0. What version of cuda.jl should I be trying to install that will work with this? I do have nvidia’s cuda drivers version 10.1 installed already. Thx. J

CUDA.jl v1.3.0 is the last version to officially support CUDA 9.0 and higher.

Thank for that. I tried to install CUDA.jl version 1.3.0 into Julia 1.6 and got this error.

(@v1.6) pkg> add CUDA@1.3.0
Updating registry at ~/.julia/registries/General
Updating git-repo https://github.com/JuliaRegistries/General.git
Resolving package versions…
ERROR: Unsatisfiable requirements detected for package CUDA [052768ef]:
CUDA [052768ef] log:
├─possible versions are: 0.1.0-3.5.0 or uninstalled
├─restricted to versions 1.3.0 by an explicit requirement, leaving only versions 1.3.0
└─restricted by julia compatibility requirements to versions: [2.3.0, 2.5.0-3.5.0] or uninstalled — no versions left

I’ve googled and not found a solution, any thoughts? Thx.

You generally cannot use older versions of the package with recent versions of Julia, because of the tight integration between CUDA.jl and the Julia compiler.

So would I need to load a copy of Julia v1.3.0 and then install cuda into that to use my gpu? Thx. again.

1.3-1.5 should work, according to the CI runs on that version.