Skip to content

Commit 566fc7c

Browse files
committed
Initial compatibility with CUDA 13.
1 parent 205c238 commit 566fc7c

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.buildkite/pipeline.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ steps:
6666
matrix:
6767
setup:
6868
cuda:
69+
- "13.0"
6970
- "12.9"
7071
- "12.8"
7172
- "12.6"

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ AbstractFFTs = "0.4, 0.5, 1.0"
5555
Adapt = "4"
5656
BFloat16s = "0.2, 0.3, 0.4, 0.5"
5757
CEnum = "0.2, 0.3, 0.4, 0.5"
58-
CUDA_Compiler_jll = "0.1.0"
59-
CUDA_Driver_jll = "12"
58+
CUDA_Compiler_jll = "0.2"
59+
CUDA_Driver_jll = "13"
6060
CUDA_Runtime_Discovery = "1"
61-
CUDA_Runtime_jll = "0.18"
61+
CUDA_Runtime_jll = "0.19"
6262
ChainRulesCore = "1"
6363
Crayons = "4"
6464
DataFrames = "1"

src/initialization.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ function __init__()
6666
return
6767
end
6868

69-
if !(v"11" <= driver < v"13-")
70-
@error "This version of CUDA.jl only supports NVIDIA drivers for CUDA 11.x or 12.x (yours is for CUDA $driver)"
69+
if !(v"11" <= driver < v"14-")
70+
@error "This version of CUDA.jl only supports NVIDIA drivers for CUDA 11.x, 12.x or 13.x (yours is for CUDA $driver)"
7171
_initialization_error[] = "CUDA driver unsupported"
7272
return
7373
end

0 commit comments

Comments
 (0)