From 703b36b5194afd735cb55b1d05071486df7a894a Mon Sep 17 00:00:00 2001 From: Ludovic Raess Date: Fri, 24 Nov 2023 22:10:02 +0100 Subject: [PATCH] Update repl output in docs --- docs/src/usage.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/usage.md b/docs/src/usage.md index 7890ed66..8af7bdc3 100644 --- a/docs/src/usage.md +++ b/docs/src/usage.md @@ -5,7 +5,7 @@ ### CPU tests To run the FastIce test suite on the CPU, simple run `test` from within the package mode or using `Pkg`: -```julia-repl +```@repl using Pkg Pkg.test("FastIce") ``` @@ -16,14 +16,14 @@ To run the FastIce test suite on CUDA or ROC Backend (Nvidia or AMD GPUs), respe #### For CUDA backend (Nvidia GPU): -```julia-repl +```@repl using Pkg Pkg.test("FastIce"; test_args=["--backend=CUDA"]) ``` #### For ROC backend (AMD GPU): -```julia-repl +```@repl using Pkg Pkg.test("FastIce"; test_args=["--backend=AMDGPU"]) ```