Skip to content

Commit

Permalink
Update manifest (#1988)
Browse files Browse the repository at this point in the history
     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
  • Loading branch information
github-actions[bot] authored and maleadt committed Aug 25, 2023
1 parent ab70378 commit 9888ac9
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 deletions.
12 changes: 6 additions & 6 deletions Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

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

[[Adapt]]
deps = ["LinearAlgebra", "Requires"]
Expand Down Expand Up @@ -111,19 +111,19 @@ version = "0.1.5"

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

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

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

[[IrrationalConstants]]
git-tree-sha1 = "630b497eafcc20001bba38a4651b327dcfc491d2"
Expand Down
2 changes: 1 addition & 1 deletion lib/cudnn/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ CUDNN_jll = "62b44479-cb7b-5706-934f-f13b2eb2e645"

[compat]
CUDNN_jll = "~8.9"
CUDA = "~4.3"
CUDA = "~4.4"
CEnum = "0.2, 0.3, 0.4"
julia = "1.6"
2 changes: 1 addition & 1 deletion lib/custatevec/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ cuQuantum_jll = "b75408ef-6fdf-5d74-b65a-7df000ad18e6"

[compat]
cuQuantum_jll = "~22.11"
CUDA = "~4.3"
CUDA = "~4.4"
CEnum = "0.2, 0.3, 0.4"
julia = "1.6"
2 changes: 1 addition & 1 deletion lib/cutensor/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

[compat]
CUTENSOR_jll = "~1.7"
CUDA = "~4.3"
CUDA = "~4.4"
CEnum = "0.2, 0.3, 0.4"
julia = "1.6"
2 changes: 1 addition & 1 deletion lib/cutensornet/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version = "1.0.5"

[compat]
CEnum = "0.2, 0.3, 0.4"
CUDA = "~4.3"
CUDA = "~4.4"
cuQuantum_jll = "~22.11"
cuTENSOR = "~1.0, ~1.1"
julia = "1.6"
Expand Down
9 changes: 8 additions & 1 deletion src/initialization.jl
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ function __init__()
@error """JULIA_CUDA_VERSION is deprecated. Call `CUDA.jl.set_runtime_version!` to use a different version instead."""
end

# scan for CUDA libraries that may have been loaded from system paths
if CUDA_Runtime == CUDA_Runtime_jll
# scan for CUDA libraries that may have been loaded from system paths
runtime_libraries = ["cudart",
"nvperf", "nvvm", "nvrtc", "nvJitLink",
"cublas", "cupti", "cusparse", "cufft", "curand", "cusolver"]
Expand All @@ -172,6 +172,13 @@ function __init__()
Ensure that you have not set the LD_LIBRARY_PATH environment variable, or that it does not contain paths to CUDA libraries."""
end
end

# warn about Tegra being incompatible with our artifacts
if is_tegra()
@warn """You are using a Tegra device, which is currently not supported by the CUDA.jl artifacts.
Please install the CUDA toolkit, and call `CUDA.set_runtime_version!("local")` to use it.
For more information, see JuliaGPU/CUDA.jl#1978."""
end
end

_initialized[] = true
Expand Down

2 comments on commit 9888ac9

@maleadt
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/90305

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v4.4.1 -m "<description of version>" 9888ac92810373c3d6b58b5ca972d8df2afb4829
git push origin v4.4.1

Please sign in to comment.