Skip to content

Commit

Permalink
Rename package name
Browse files Browse the repository at this point in the history
  • Loading branch information
utkinis authored Feb 7, 2024
1 parent 1540903 commit 57f0e18
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/src/usage/runtests.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,26 @@

## CPU tests

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

## GPU tests - needs update!

To run the FastIce test suite on CUDA or ROC backend (Nvidia or AMD GPUs), respectively, run the tests using `Pkg` adding following `test_args`:
To run the Chmy test suite on CUDA or ROC backend (Nvidia or AMD GPUs), respectively, run the tests using `Pkg` adding following `test_args`:

### For CUDA backend (Nvidia GPUs):

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

### For ROC backend (AMD GPUs):

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

0 comments on commit 57f0e18

Please sign in to comment.