diff options
author | Patrick von Platen <patrick.v.platen@gmail.com> | 2023-08-23 13:26:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-23 13:26:21 +0200 |
commit | 2c280007e8abad5eb4186ce0223fd7d60fd3fc58 (patch) | |
tree | 7990529736eb044def8c74fc2f1c9b5fb60c4b0b /README.md | |
parent | 649202024c2ec8b771fd7c554f698dc2f58ba51b (diff) | |
download | candle-2c280007e8abad5eb4186ce0223fd7d60fd3fc58.tar.gz candle-2c280007e8abad5eb4186ce0223fd7d60fd3fc58.tar.bz2 candle-2c280007e8abad5eb4186ce0223fd7d60fd3fc58.zip |
Apply suggestions from code review
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 14 |
1 files changed, 2 insertions, 12 deletions
@@ -15,21 +15,11 @@ and ease of use. Try our online demos: Make sure that you have [`candle-core`](https://github.com/huggingface/candle/tree/main/candle-core) correctly installed as described in [**Installation**](https://huggingface.github.io/candle/guide/installation.html). Let's see how to run a simple matrix multiplication. - -We will need the [`anyhow`](https://docs.rs/anyhow/latest/anyhow/) package for our example, so let's also add it to our app. - -```bash -cd myapp -cargo add anyhow -``` - -Next, write the following to your `myapp/src/main.rs` file: - +Write the following to your `myapp/src/main.rs` file: ```rust -use anyhow::Result; use candle_core::{Device, Tensor}; -fn main() -> Result<()> { +fn main() -> Result<(), Box<dyn std::error::Error>> { let device = Device::Cpu; let a = Tensor::randn(0f32, 1., (2, 3), &device)?; |