Shuffle the shape bits around.

This commit is contained in:
laurent
2023-06-19 20:22:12 +01:00
parent 634e0c88ae
commit 01eeb0e72f
5 changed files with 159 additions and 63 deletions

View File

@ -2,10 +2,11 @@ mod device;
mod dtype;
mod error;
mod op;
mod shape;
mod storage;
mod tensor;
pub use device::Device;
pub use dtype::DType;
pub use dtype::{DType, WithDType};
pub use error::{Error, Result};
pub use tensor::Tensor;