Skip to content

Commit 2ae295b

Browse files
authored
Bump deps (#613)
- Use `1.10` in Buildkite CI (and `nightly` for CUDA). - Use `lts`, `1` and `pre` in GitHub CI. - Add compat GPUArraysCore for `0.2`. - Bump ChainRulesCore to `0.25`.
1 parent 0213868 commit 2ae295b

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

.buildkite/pipeline.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
steps:
22
- label: ":julia: Julia {{matrix.julia}} + CUDA GPU"
3+
command:
4+
- echo 'CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"' >> test/Project.toml
35
plugins:
46
- JuliaCI/julia#v1:
57
version: "{{matrix.julia}}"
@@ -23,8 +25,7 @@ steps:
2325
matrix:
2426
setup:
2527
julia:
26-
# - "1.9" # uncomment when 1.10 is out
27-
- "1"
28+
- "1.10"
2829
- "nightly"
2930
adjustments:
3031
- with:

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ jobs:
2929
matrix:
3030
version:
3131
# - '1.9' # uncomment when julia 1.10 is out
32+
- 'lts'
3233
- '1' # automatically expands to the latest stable 1.x release of Julia
33-
- 'nightly'
34+
- 'pre'
3435
os:
3536
- ubuntu-latest
3637
# - macOS-latest
@@ -56,7 +57,7 @@ jobs:
5657

5758
steps:
5859
- uses: actions/checkout@v3
59-
- uses: julia-actions/setup-julia@v1
60+
- uses: julia-actions/setup-julia@v2
6061
with:
6162
version: ${{ matrix.version }}
6263
arch: ${{ matrix.arch }}
@@ -84,7 +85,7 @@ jobs:
8485
runs-on: ubuntu-latest
8586
steps:
8687
- uses: actions/checkout@v3
87-
- uses: julia-actions/setup-julia@v1
88+
- uses: julia-actions/setup-julia@v2
8889
with:
8990
version: '1.9'
9091
- uses: julia-actions/cache@v1

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ NNlibFFTWExt = "FFTW"
2929
NNlibForwardDiffExt = "ForwardDiff"
3030

3131
[compat]
32-
AMDGPU = "0.9.4, 1"
32+
AMDGPU = "1"
3333
Adapt = "3.2, 4"
3434
Atomix = "0.1"
3535
CUDA = "4, 5"
36-
ChainRulesCore = "1.13"
36+
ChainRulesCore = "1.25"
3737
EnzymeCore = "0.5, 0.6, 0.7, 0.8"
3838
FFTW = "1.8.0"
3939
ForwardDiff = "0.10.36"
40-
GPUArraysCore = "0.1"
40+
GPUArraysCore = "0.1, 0.2"
4141
KernelAbstractions = "0.9.2"
4242
LinearAlgebra = "<0.0.1, 1"
4343
Random = "<0.0.1, 1"

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,3 @@ for CUDA support, or
2525
using NNlib, AMDGPU
2626
```
2727
for AMDGPU support.
28-

0 commit comments

Comments
 (0)