Skip to content

Commit a68f400

Browse files
authored
Bump versions. (#2229)
Also test and allow use of subpackages on CUDA 5.1, as there was nothing in v5.1 that broke the interface.
1 parent 2ecd820 commit a68f400

File tree

6 files changed

+28
-28
lines changed

6 files changed

+28
-28
lines changed

.buildkite/pipeline.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ steps:
1919
cuda: "*"
2020
commands: |
2121
echo -e "[CUDA_Runtime_jll]\nlocal = \"true\"" >LocalPreferences.toml
22-
if: build.message !~ /\[skip tests\]/
22+
if: build.message !~ /\[skip tests\]/ && build.message !~ /\[skip julia\]/
2323
timeout_in_minutes: 60
2424
matrix:
2525
setup:
@@ -52,7 +52,7 @@ steps:
5252
agents:
5353
queue: "juliagpu"
5454
cuda: "*"
55-
if: build.message !~ /\[skip tests\]/ && !build.pull_request.draft
55+
if: build.message !~ /\[skip tests\]/ && build.message !~ /\[skip cuda\]/ && !build.pull_request.draft
5656
timeout_in_minutes: 30
5757
matrix:
5858
setup:
@@ -88,7 +88,7 @@ steps:
8888
agents:
8989
queue: "juliagpu"
9090
cuda: "*"
91-
if: build.message !~ /\[skip tests\]/ && !build.pull_request.draft
91+
if: build.message !~ /\[skip tests\]/ && build.message !~ /\[skip memory\]/ && !build.pull_request.draft
9292
timeout_in_minutes: 30
9393
matrix:
9494
setup:
@@ -123,23 +123,23 @@ steps:
123123
agents:
124124
queue: "juliagpu"
125125
cuda: "*"
126-
if: build.message !~ /\[skip tests\]/ && !build.pull_request.draft
126+
if: build.message !~ /\[skip tests\]/ && build.message !~ /\[skip subpackages\]/ && !build.pull_request.draft
127127
timeout_in_minutes: 15
128128
commands: |
129-
julia --project -e '
129+
julia -e '
130130
using Pkg
131131
132132
println("--- :julia: Instantiating project")
133133
withenv("JULIA_PKG_PRECOMPILE_AUTO" => 0) do
134+
Pkg.activate(joinpath(pwd(), "lib", lowercase("{{matrix.package}}")))
134135
Pkg.instantiate()
135136
136-
Pkg.develop(path=joinpath(pwd(), "lib", lowercase("{{matrix.package}}")))
137-
137+
Pkg.add("CUDA_Runtime_jll")
138138
write("LocalPreferences.toml", "[CUDA_Runtime_jll]\nversion = \"{{matrix.cuda}}\"")
139139
end
140140
141141
println("+++ :julia: Running tests")
142-
Pkg.test("{{matrix.package}}"; coverage=true)'
142+
Pkg.test(; coverage=true)'
143143
144144
- group: ":telescope: Downstream"
145145
depends_on: "cuda"
@@ -177,7 +177,7 @@ steps:
177177
agents:
178178
queue: "juliagpu"
179179
cuda: "*"
180-
if: build.message !~ /\[skip tests\]/ && !build.pull_request.draft
180+
if: build.message !~ /\[skip tests\]/ && build.message !~ /\[skip downstream\]/ && !build.pull_request.draft
181181
timeout_in_minutes: 30
182182
soft_fail:
183183
- exit_status: 3
@@ -209,7 +209,7 @@ steps:
209209
agents:
210210
queue: "juliagpu"
211211
intel: "*"
212-
if: build.message !~ /\[skip tests\]/ && !build.pull_request.draft
212+
if: build.message !~ /\[skip tests\]/ && build.message !~ /\[skip special\]/ && !build.pull_request.draft
213213
timeout_in_minutes: 5
214214

215215
- label: "Documentation"
@@ -250,7 +250,7 @@ steps:
250250
cuda: "*"
251251
env:
252252
JULIA_CUDA_USE_COMPAT: 'false' # NVIDIA bug #3418723: injection tools prevent probing libcuda
253-
if: build.message !~ /\[skip tests\]/ && !build.pull_request.draft
253+
if: build.message !~ /\[skip tests\]/ && build.message !~ /\[skip sanitizer\]/ && !build.pull_request.draft
254254
timeout_in_minutes: 30
255255

256256
# we want to benchmark every commit on the master branch, even if it failed CI

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "CUDA"
22
uuid = "052768ef-5323-5732-b1bb-66c8b64840ba"
3-
version = "5.1.1"
3+
version = "5.2.0"
44

55
[deps]
66
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"

lib/cudnn/Project.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "cuDNN"
22
uuid = "02a925ec-e4fe-4b08-9a7e-0d78e3d38ccd"
33
authors = ["Tim Besard <tim.besard@gmail.com>"]
4-
version = "1.2.2"
4+
version = "1.2.3"
55

66
[deps]
77
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
@@ -10,8 +10,8 @@ CUDA_Runtime_Discovery = "1af6417a-86b4-443c-805f-a4643ffb695f"
1010
CUDNN_jll = "62b44479-cb7b-5706-934f-f13b2eb2e645"
1111

1212
[compat]
13-
CEnum = "0.2, 0.3, 0.4"
14-
CUDA = "~5.1"
13+
CEnum = "0.2, 0.3, 0.4, 0.5"
14+
CUDA = "~5.1, ~5.2"
1515
CUDA_Runtime_Discovery = "0.2"
1616
CUDNN_jll = "~8.9"
17-
julia = "1.6"
17+
julia = "1.8"

lib/custatevec/Project.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "cuStateVec"
22
uuid = "92f7fd98-d22e-4c0d-85a8-6ade11b672fb"
33
authors = ["Katharine Hyatt <kslimes@gmail.com>"]
4-
version = "1.1.1"
4+
version = "1.2.0"
55

66
[deps]
77
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
@@ -10,8 +10,8 @@ CUDA_Runtime_Discovery = "1af6417a-86b4-443c-805f-a4643ffb695f"
1010
cuQuantum_jll = "b75408ef-6fdf-5d74-b65a-7df000ad18e6"
1111

1212
[compat]
13-
CEnum = "0.2, 0.3, 0.4"
14-
CUDA = "~5.1"
13+
CEnum = "0.2, 0.3, 0.4, 0.5"
14+
CUDA = "~5.1, ~5.2"
1515
CUDA_Runtime_Discovery = "0.2"
1616
cuQuantum_jll = "~23.10"
17-
julia = "1.6"
17+
julia = "1.8"

lib/cutensor/Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ CUTENSOR_jll = "35b6c64b-1ee1-5834-92a3-3f624899209a"
1111
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1212

1313
[compat]
14-
CEnum = "0.2, 0.3, 0.4"
15-
CUDA = "~5.1"
14+
CEnum = "0.2, 0.3, 0.4, 0.5"
15+
CUDA = "~5.1, ~5.2"
1616
CUDA_Runtime_Discovery = "0.2"
1717
CUTENSOR_jll = "~2.0"
18-
julia = "1.6"
18+
julia = "1.8"
1919
LinearAlgebra = "1"

lib/cutensornet/Project.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "cuTensorNet"
22
uuid = "448d79b3-4b49-4e06-a5ea-00c62c0dc3db"
33
authors = ["Katharine Hyatt <kshyatt@gmail.com>"]
4-
version = "1.1.1"
4+
version = "1.2.0"
55

66
[deps]
77
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
@@ -12,10 +12,10 @@ cuQuantum_jll = "b75408ef-6fdf-5d74-b65a-7df000ad18e6"
1212
cuTENSOR = "011b41b2-24ef-40a8-b3eb-fa098493e9e1"
1313

1414
[compat]
15-
CEnum = "0.2, 0.3, 0.4"
16-
CUDA = "~5.1"
15+
CEnum = "0.2, 0.3, 0.4, 0.5"
16+
CUDA = "~5.1, ~5.2"
1717
CUDA_Runtime_Discovery = "0.2"
1818
cuQuantum_jll = "~23.10"
19-
cuTENSOR = "~1.0, ~1.1, ~1.2"
20-
julia = "1.6"
19+
cuTENSOR = "~1.2"
20+
julia = "1.8"
2121
LinearAlgebra = "1"

0 commit comments

Comments
 (0)