We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bf1b7f commit cda8974Copy full SHA for cda8974
ext/LibxcCudaExt.jl
@@ -5,9 +5,9 @@ using CUDA
5
6
function __init__()
7
if CUDA.functional()
8
- if !Libxc_GPU_jll.is_available() && CUDA.runtime_version() ≥ v"13"
9
- @warn("Libxc_GPU_jll currently not available for CUDA 13. " *
10
- "Please use CUDA 11 or 12 for GPU support " *
+ if !Libxc_GPU_jll.is_available() && CUDA.runtime_version() > v"13.1"
+ @warn("Libxc_GPU_jll currently not available for CUDA > v13.1." *
+ "Please use a lower version of CUDA for support." *
11
"""(e.g. `CUDA.set_runtime_version!(v"12.8")`)""")
12
end
13
0 commit comments