Skip to content

Commit

Permalink
Bump sublibrary version and compat.
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt committed Sep 18, 2023
1 parent ea55066 commit 1a1d127
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
9 changes: 8 additions & 1 deletion .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,12 @@ steps:
withenv("JULIA_PKG_PRECOMPILE_AUTO" => 0) do
Pkg.instantiate()
Pkg.develop("NNlibCUDA")
try
Pkg.develop("NNlibCUDA")
catch err
@error "Could not install NNlibCUDA" exception=(err,catch_backtrace())
exit(3)
end
Pkg.develop(path=joinpath(pwd(), "lib", "cudnn"))
write("LocalPreferences.toml", "[CUDA_Runtime_jll]\nversion = \"12.0\"")
Expand All @@ -162,6 +167,8 @@ steps:
build.message !~ /\[skip downstream\]/ &&
!build.pull_request.draft
timeout_in_minutes: 60
soft_fail:
- exit_status: 3

- group: ":eyes: Special"
depends_on: "cuda"
Expand Down
4 changes: 2 additions & 2 deletions lib/cudnn/Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "cuDNN"
uuid = "02a925ec-e4fe-4b08-9a7e-0d78e3d38ccd"
authors = ["Tim Besard <tim.besard@gmail.com>"]
version = "1.1.0"
version = "1.2.0"

[deps]
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
Expand All @@ -10,6 +10,6 @@ CUDNN_jll = "62b44479-cb7b-5706-934f-f13b2eb2e645"

[compat]
CUDNN_jll = "~8.9"
CUDA = "~4.4"
CUDA = "~5.0"
CEnum = "0.2, 0.3, 0.4"
julia = "1.6"
4 changes: 2 additions & 2 deletions lib/custatevec/Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "cuStateVec"
uuid = "92f7fd98-d22e-4c0d-85a8-6ade11b672fb"
authors = ["Katharine Hyatt <kslimes@gmail.com>"]
version = "1.0.5"
version = "1.1.0"

[deps]
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
Expand All @@ -10,6 +10,6 @@ cuQuantum_jll = "b75408ef-6fdf-5d74-b65a-7df000ad18e6"

[compat]
cuQuantum_jll = "~23.6"
CUDA = "~4.4"
CUDA = "~5.0"
CEnum = "0.2, 0.3, 0.4"
julia = "1.6"
4 changes: 2 additions & 2 deletions lib/cutensor/Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "cuTENSOR"
uuid = "011b41b2-24ef-40a8-b3eb-fa098493e9e1"
authors = ["Tim Besard <tim.besard@gmail.com>"]
version = "1.1.0"
version = "1.2.0"

[deps]
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
Expand All @@ -11,6 +11,6 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

[compat]
CUTENSOR_jll = "~1.7"
CUDA = "~4.4"
CUDA = "~5.0"
CEnum = "0.2, 0.3, 0.4"
julia = "1.6"
6 changes: 3 additions & 3 deletions lib/cutensornet/Project.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
authors = ["Katharine Hyatt <kshyatt@gmail.com>"]
name = "cuTensorNet"
uuid = "448d79b3-4b49-4e06-a5ea-00c62c0dc3db"
version = "1.0.5"
version = "1.1.0"

[compat]
CEnum = "0.2, 0.3, 0.4"
CUDA = "~4.4"
CUDA = "~5.0"
cuQuantum_jll = "~22.11"
cuTENSOR = "~1.0, ~1.1"
cuTENSOR = "~1.0, ~1.1, ~1.2"
julia = "1.6"

[deps]
Expand Down

0 comments on commit 1a1d127

Please sign in to comment.