diff options
author | Nicolas Patry <patry.nicolas@protonmail.com> | 2023-07-27 12:45:25 +0200 |
---|---|---|
committer | Nicolas Patry <patry.nicolas@protonmail.com> | 2023-08-01 14:26:02 +0200 |
commit | ba37de94d43ba2f2e640b0dce4993f5600c9a525 (patch) | |
tree | 66bc8f4684b427752098182278035a0540f072b5 /candle-book | |
parent | 6242a1470e4ccd43c0cc3c7facae5759c9592dc1 (diff) | |
download | candle-ba37de94d43ba2f2e640b0dce4993f5600c9a525.tar.gz candle-ba37de94d43ba2f2e640b0dce4993f5600c9a525.tar.bz2 candle-ba37de94d43ba2f2e640b0dce4993f5600c9a525.zip |
Making sure the CI actually works
Diffstat (limited to 'candle-book')
-rw-r--r-- | candle-book/src/guide/hello_world.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-book/src/guide/hello_world.md b/candle-book/src/guide/hello_world.md index 393576ad..a29edff6 100644 --- a/candle-book/src/guide/hello_world.md +++ b/candle-book/src/guide/hello_world.md @@ -6,7 +6,7 @@ Open `src/main.rs` and fill in with these contents: ```rust # extern crate candle; -use candle::{DType, Device, Result, Tensor}; +use candle::{DType, Device, Result, Tensor, xx}; struct Model { first: Tensor, |