Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump deps #613

Merged
merged 9 commits into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
steps:
- label: ":julia: Julia {{matrix.julia}} + CUDA GPU"
command:
- echo 'CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"' >> test/Project.toml
plugins:
- JuliaCI/julia#v1:
version: "{{matrix.julia}}"
Expand All @@ -23,8 +25,7 @@ steps:
matrix:
setup:
julia:
# - "1.9" # uncomment when 1.10 is out
- "1"
- "1.10"
- "nightly"
adjustments:
- with:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ jobs:
matrix:
version:
# - '1.9' # uncomment when julia 1.10 is out
- 'lts'
- '1' # automatically expands to the latest stable 1.x release of Julia
- 'nightly'
- 'pre'
os:
- ubuntu-latest
# - macOS-latest
Expand All @@ -56,7 +57,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
Expand Down Expand Up @@ -84,7 +85,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/setup-julia@v2
with:
version: '1.9'
- uses: julia-actions/cache@v1
Expand Down
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ NNlibFFTWExt = "FFTW"
NNlibForwardDiffExt = "ForwardDiff"

[compat]
AMDGPU = "0.9.4, 1"
AMDGPU = "1"
Adapt = "3.2, 4"
Atomix = "0.1"
CUDA = "4, 5"
ChainRulesCore = "1.13"
ChainRulesCore = "1.25"
EnzymeCore = "0.5, 0.6, 0.7, 0.8"
FFTW = "1.8.0"
ForwardDiff = "0.10.36"
GPUArraysCore = "0.1"
GPUArraysCore = "0.1, 0.2"
KernelAbstractions = "0.9.2"
LinearAlgebra = "<0.0.1, 1"
Random = "<0.0.1, 1"
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,3 @@ for CUDA support, or
using NNlib, AMDGPU
```
for AMDGPU support.

Loading