Initial support for reading ggml files. (#311)

* Start adding support for reading ggml files.

* Compute the proper tensor size.

* Print the read tensors.

* Fix file reading.
This commit is contained in:
Laurent Mazare
2023-08-02 21:59:02 +01:00
committed by GitHub
parent 52414ba5c8
commit e635f18eda
2 changed files with 239 additions and 0 deletions

View File

@ -45,6 +45,7 @@ pub mod display;
mod dtype;
mod dummy_cuda_backend;
pub mod error;
pub mod ggml;
mod indexer;
pub mod layout;
#[cfg(feature = "mkl")]