diff --git a/docs/src/usage/runtests.md b/docs/src/usage/runtests.md index 35040033..c28b0a37 100644 --- a/docs/src/usage/runtests.md +++ b/docs/src/usage/runtests.md @@ -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"]) ```