summaryrefslogtreecommitdiff
path: root/candle-core/examples/basics.rs
diff options
context:
space:
mode:
Diffstat (limited to 'candle-core/examples/basics.rs')
-rw-r--r--candle-core/examples/basics.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-core/examples/basics.rs b/candle-core/examples/basics.rs
index 88b110e0..d028db66 100644
--- a/candle-core/examples/basics.rs
+++ b/candle-core/examples/basics.rs
@@ -2,7 +2,7 @@
extern crate intel_mkl_src;
use anyhow::Result;
-use candle::{Device, Tensor};
+use candle_core::{Device, Tensor};
fn main() -> Result<()> {
let a = Tensor::randn(0f32, 1., (2, 3), &Device::Cpu)?;