Skip to content

Commit

Permalink
Bump AMDGPU
Browse files Browse the repository at this point in the history
  • Loading branch information
luraess committed Aug 12, 2024
1 parent 86cedf2 commit 8159fb3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "FastIce"
uuid = "e0de9f13-a007-490e-b696-b07d031015ca"
authors = ["Ludovic Raess <[email protected]>, Ivan Utkin <[email protected]>, Samuel Omlin <[email protected]> and contributors"]
version = "0.3.0"
version = "0.3.1"

[deps]
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
Expand Down
12 changes: 6 additions & 6 deletions docs/src/usage/runtests.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

To run the FastIce test suite on the CPU, simple run `test` from within the package mode or using `Pkg`:
```julia-repl
using Pkg
Pkg.test("FastIce")
julia> using Pkg
julia> Pkg.test("FastIce")
```

## GPU tests
Expand All @@ -15,13 +15,13 @@ To run the FastIce test suite on CUDA or ROC backend (Nvidia or AMD GPUs), respe
### For CUDA backend (Nvidia GPUs):

```julia-repl
using Pkg
Pkg.test("FastIce"; test_args=["--backend=CUDA"])
julia> using Pkg
julia> Pkg.test("FastIce"; test_args=["--backend=CUDA"])
```

### For ROC backend (AMD GPUs):

```julia-repl
using Pkg
Pkg.test("FastIce"; test_args=["--backend=AMDGPU"])
julia> using Pkg
julia> Pkg.test("FastIce"; test_args=["--backend=AMDGPU"])
```
2 changes: 1 addition & 1 deletion test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ AMDGPU = "21141c5a-9bdb-4563-92ae-f87d6854732e"
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"

[compat]
AMDGPU = "0.8, 0.9"
AMDGPU = "0.8, 0.9, 1.0"
CUDA = "5"

0 comments on commit 8159fb3

Please sign in to comment.