Skip to content

Commit d1c94b5

Browse files
Update manifest (#1988)
Project CUDA v4.4.0 Diff `~/work/CUDA.jl/CUDA.jl/Project.toml` [621f4979] ↑ AbstractFFTs v1.3.1 ⇒ v1.3.2 [61eb1bfa] ↑ GPUCompiler v0.21.2 ⇒ v0.21.3
1 parent abd569e commit d1c94b5

File tree

6 files changed

+18
-11
lines changed

6 files changed

+18
-11
lines changed

Manifest.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
[[AbstractFFTs]]
44
deps = ["ChainRulesCore", "LinearAlgebra"]
5-
git-tree-sha1 = "16b6dbc4cf7caee4e1e75c49485ec67b667098a0"
5+
git-tree-sha1 = "8bc0aaec0ca548eb6cf5f0d7d16351650c1ee956"
66
uuid = "621f4979-c628-5d54-868e-fcf4e3e8185c"
7-
version = "1.3.1"
7+
version = "1.3.2"
88

99
[[Adapt]]
1010
deps = ["LinearAlgebra", "Requires"]
@@ -111,19 +111,19 @@ version = "0.1.5"
111111

112112
[[GPUCompiler]]
113113
deps = ["ExprTools", "InteractiveUtils", "LLVM", "Libdl", "Logging", "Scratch", "TimerOutputs", "UUIDs"]
114-
git-tree-sha1 = "69a9aa4346bca723e46769ff6b6277e597c969b1"
114+
git-tree-sha1 = "d60b5fe7333b5fa41a0378ead6614f1ab51cf6d0"
115115
uuid = "61eb1bfa-7361-4325-ad38-22787b887f55"
116-
version = "0.21.2"
116+
version = "0.21.3"
117117

118118
[[InteractiveUtils]]
119119
deps = ["Markdown"]
120120
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
121121

122122
[[InverseFunctions]]
123123
deps = ["Test"]
124-
git-tree-sha1 = "6667aadd1cdee2c6cd068128b3d226ebc4fb0c67"
124+
git-tree-sha1 = "edd1c1ac227767c75e8518defdf6e48dbfa7c3b0"
125125
uuid = "3587e190-3f89-42d0-90ee-14403ec27112"
126-
version = "0.1.9"
126+
version = "0.1.10"
127127

128128
[[IrrationalConstants]]
129129
git-tree-sha1 = "630b497eafcc20001bba38a4651b327dcfc491d2"

lib/cudnn/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ CUDNN_jll = "62b44479-cb7b-5706-934f-f13b2eb2e645"
1010

1111
[compat]
1212
CUDNN_jll = "~8.9"
13-
CUDA = "~4.3"
13+
CUDA = "~4.4"
1414
CEnum = "0.2, 0.3, 0.4"
1515
julia = "1.6"

lib/custatevec/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ cuQuantum_jll = "b75408ef-6fdf-5d74-b65a-7df000ad18e6"
1010

1111
[compat]
1212
cuQuantum_jll = "~22.11"
13-
CUDA = "~4.3"
13+
CUDA = "~4.4"
1414
CEnum = "0.2, 0.3, 0.4"
1515
julia = "1.6"

lib/cutensor/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1111

1212
[compat]
1313
CUTENSOR_jll = "~1.7"
14-
CUDA = "~4.3"
14+
CUDA = "~4.4"
1515
CEnum = "0.2, 0.3, 0.4"
1616
julia = "1.6"

lib/cutensornet/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version = "1.0.4"
55

66
[compat]
77
CEnum = "0.2, 0.3, 0.4"
8-
CUDA = "~4.3"
8+
CUDA = "~4.4"
99
cuQuantum_jll = "~22.11"
1010
cuTENSOR = "~1.0, ~1.1"
1111
julia = "1.6"

src/initialization.jl

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ function __init__()
162162
@error """JULIA_CUDA_VERSION is deprecated. Call `CUDA.jl.set_runtime_version!` to use a different version instead."""
163163
end
164164

165-
# scan for CUDA libraries that may have been loaded from system paths
166165
if CUDA_Runtime == CUDA_Runtime_jll
166+
# scan for CUDA libraries that may have been loaded from system paths
167167
runtime_libraries = ["cudart",
168168
"nvperf", "nvvm", "nvrtc", "nvJitLink",
169169
"cublas", "cupti", "cusparse", "cufft", "curand", "cusolver"]
@@ -174,6 +174,13 @@ function __init__()
174174
Ensure that you have not set the LD_LIBRARY_PATH environment variable, or that it does not contain paths to CUDA libraries."""
175175
end
176176
end
177+
178+
# warn about Tegra being incompatible with our artifacts
179+
if is_tegra()
180+
@warn """You are using a Tegra device, which is currently not supported by the CUDA.jl artifacts.
181+
Please install the CUDA toolkit, and call `CUDA.set_runtime_version!("local")` to use it.
182+
For more information, see JuliaGPU/CUDA.jl#1978."""
183+
end
177184
end
178185

179186
_initialized[] = true

0 commit comments

Comments
 (0)