Add some very basic tensor type.

This commit is contained in:
laurent
2023-06-19 17:26:50 +01:00
parent fe7a5f53a1
commit 9698211d56
4 changed files with 165 additions and 0 deletions

3
src/lib.rs Normal file
View File

@ -0,0 +1,3 @@
mod tensor;
pub use tensor::{DType, Tensor};