From 53ae2a0aef00d1c07f521382fc02ebaa5a5b3452 Mon Sep 17 00:00:00 2001 From: Luke Amdor Date: Wed, 1 Jul 2026 18:18:36 -0500 Subject: [PATCH] Allow CUDA.jl v6 in GPU test environments The GPU test environments pinned CUDA.jl below v6, but the V100 GPU CI runners now use nvidia driver 580, which requires CUDA.jl v6.2+ for correct CUDA runtime selection (CUDA.jl versions <6.2 select the runtime based on the driver version and pick an incompatible runtime; see JuliaGPU/CUDA.jl#3134). Widen the CUDA compat to "6" so the resolver picks the latest 6.x with the fix. --- test/GPU/Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/GPU/Project.toml b/test/GPU/Project.toml index f52d5575..6a151241 100644 --- a/test/GPU/Project.toml +++ b/test/GPU/Project.toml @@ -15,7 +15,7 @@ RecursiveArrayToolsArrayPartitionAnyAll = {path = "../../lib/RecursiveArrayTools [compat] Adapt = "4" ArrayInterface = "7.17.0" -CUDA = "3.12, 4, 5" +CUDA = "6" KernelAbstractions = "0.9.36" RecursiveArrayTools = "4" RecursiveArrayToolsArrayPartitionAnyAll = "1"