diff options
Diffstat (limited to 'candle-book')
-rw-r--r-- | candle-book/src/guide/installation.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/candle-book/src/guide/installation.md b/candle-book/src/guide/installation.md index 31845a36..58bf7054 100644 --- a/candle-book/src/guide/installation.md +++ b/candle-book/src/guide/installation.md @@ -6,7 +6,8 @@ - `nvcc --version` should print your information about your Cuda compiler driver. - `nvidia-smi --query-gpu=compute_cap --format=csv` should print your GPUs compute capability, e.g. something like: -``` + +```bash compute_cap 8.9 ``` @@ -30,7 +31,7 @@ cargo add --git https://github.com/huggingface/candle.git candle-core --features Run `cargo build` to make sure everything can be correctly built. -``` +```bash cargo run ``` @@ -38,7 +39,7 @@ cargo run Create a new app and add [`candle-core`](https://github.com/huggingface/candle/tree/main/candle-core) as follows: -``` +```bash cargo new myapp cd myapp cargo add --git https://github.com/huggingface/candle.git candle-core |