mirror of
https://github.com/huggingface/candle.git
synced 2025-06-18 19:47:12 +00:00
Move the StridedIndex in its own module.
This commit is contained in:
@ -4,6 +4,7 @@ mod error;
|
||||
mod op;
|
||||
mod shape;
|
||||
mod storage;
|
||||
mod strided_index;
|
||||
mod tensor;
|
||||
|
||||
pub use device::Device;
|
||||
@ -11,4 +12,5 @@ pub use dtype::{DType, WithDType};
|
||||
pub use error::{Error, Result};
|
||||
pub use shape::Shape;
|
||||
pub use storage::{CpuStorage, Storage};
|
||||
use strided_index::StridedIndex;
|
||||
pub use tensor::{Tensor, TensorId};
|
||||
|
Reference in New Issue
Block a user