Skip to content

Commit 637c742

Browse files
Remove V100 CUDA compatibility workarounds
demeter4's driver has been downgraded to CUDA 12.9, so the LocalPreferences.toml pinning CUDA runtime to 12.6 and the CUDA_Driver_jll/CUDA_Runtime_jll dependency additions are no longer needed. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 19cd72e commit 637c742

4 files changed

Lines changed: 1 addition & 19 deletions

File tree

LocalPreferences.toml

Lines changed: 0 additions & 7 deletions
This file was deleted.

lib/SimpleNonlinearSolve/LocalPreferences.toml

Lines changed: 0 additions & 7 deletions
This file was deleted.

lib/SimpleNonlinearSolve/test/runtests.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ end
2424

2525
const GROUP = lowercase(get_from_test_args_or_env("GROUP", "all"))
2626

27-
# Add CUDA and JLL packages for LocalPreferences.toml to work on V100 runners
28-
(GROUP == "all" || GROUP == "cuda") && Pkg.add(["CUDA", "CUDA_Driver_jll", "CUDA_Runtime_jll"])
27+
(GROUP == "all" || GROUP == "cuda") && Pkg.add(["CUDA"])
2928
(GROUP == "all" || GROUP == "adjoint") && Pkg.add(["SciMLSensitivity"])
3029
(GROUP == "all" || GROUP == "alloc_check") && Pkg.add(["AllocCheck"])
3130

test/runtests.jl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,6 @@ if GROUP != "trim"
4848
# Only add CUDA for cuda group if not on prerelease Julia
4949
if isempty(VERSION.prerelease)
5050
push!(EXTRA_PKGS, Pkg.PackageSpec("CUDA"))
51-
# Add JLL packages for LocalPreferences.toml to work on V100 runners
52-
push!(EXTRA_PKGS, Pkg.PackageSpec("CUDA_Driver_jll"))
53-
push!(EXTRA_PKGS, Pkg.PackageSpec("CUDA_Runtime_jll"))
5451
end
5552
end
5653
length(EXTRA_PKGS) 1 && Pkg.add(EXTRA_PKGS)

0 commit comments

Comments
 (0)