Split the tensor file.

This commit is contained in:
laurent
2023-06-19 17:34:13 +01:00
parent 9698211d56
commit 844704de5c
5 changed files with 48 additions and 32 deletions

7
src/storage.rs Normal file
View File

@ -0,0 +1,7 @@
#[allow(dead_code)]
pub(crate) enum Storage {
Cpu {
dtype: crate::DType,
buffer: Vec<u8>,
},
}