diff options
author | Patrick von Platen <patrick.v.platen@gmail.com> | 2023-08-23 09:04:08 +0000 |
---|---|---|
committer | Patrick von Platen <patrick.v.platen@gmail.com> | 2023-08-23 09:04:08 +0000 |
commit | c8211fc4748fc69ef2af60aafd252d6c9592d5c9 (patch) | |
tree | 72eb23351656a1fa6c02ac24a8a13b05d5ffd257 /candle-book | |
parent | 7732bf62387d2370c1d01db39852b610bbbd385d (diff) | |
download | candle-c8211fc4748fc69ef2af60aafd252d6c9592d5c9.tar.gz candle-c8211fc4748fc69ef2af60aafd252d6c9592d5c9.tar.bz2 candle-c8211fc4748fc69ef2af60aafd252d6c9592d5c9.zip |
fix code snippets
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 |