diff options
Diffstat (limited to 'candle-core/examples/cuda_basics.rs')
-rw-r--r-- | candle-core/examples/cuda_basics.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-core/examples/cuda_basics.rs b/candle-core/examples/cuda_basics.rs index 645420e5..abff2d1b 100644 --- a/candle-core/examples/cuda_basics.rs +++ b/candle-core/examples/cuda_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 device = Device::new_cuda(0)?; |