diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-08-02 08:20:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-02 08:20:22 +0100 |
commit | 51e51da89687dc4678f64377e1c9ef7a74fb410e (patch) | |
tree | 21890778d268723a95cf6915469812e3f5db2f00 /candle-core/src/indexer.rs | |
parent | 6e33ff62d610776bf5a6b2144b2e8f98c39ccfcc (diff) | |
download | candle-51e51da89687dc4678f64377e1c9ef7a74fb410e.tar.gz candle-51e51da89687dc4678f64377e1c9ef7a74fb410e.tar.bz2 candle-51e51da89687dc4678f64377e1c9ef7a74fb410e.zip |
Rename the candle crate to candle-core (#301)
* Rename to candle-core.
* More candle-core renaming.
Diffstat (limited to 'candle-core/src/indexer.rs')
-rw-r--r-- | candle-core/src/indexer.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/candle-core/src/indexer.rs b/candle-core/src/indexer.rs index 6ab209ca..2b6d694b 100644 --- a/candle-core/src/indexer.rs +++ b/candle-core/src/indexer.rs @@ -7,7 +7,7 @@ impl Tensor { /// Intended to be use by the trait `.i()` /// /// ``` - /// # use candle::{Tensor, DType, Device, IndexOp}; + /// # use candle_core::{Tensor, DType, Device, IndexOp}; /// let a = Tensor::zeros((2, 3), DType::F32, &Device::Cpu)?; /// /// let c = a.i(0..1)?; @@ -22,7 +22,7 @@ impl Tensor { /// let c = a.i((.., ..=2))?; /// assert_eq!(c.shape().dims(), &[2, 3]); /// - /// # Ok::<(), candle::Error>(()) + /// # Ok::<(), candle_core::Error>(()) /// ``` fn index(&self, indexers: &[TensorIndexer]) -> Result<Self, Error> { let mut x = self.clone(); |