Preliminary GGUF support. (#557)

* Preliminary GGUF support.

* Tensor reading.
This commit is contained in:
Laurent Mazare
2023-08-23 00:14:10 +01:00
committed by GitHub
parent 7687a0f453
commit 6a30ecefad
2 changed files with 221 additions and 0 deletions

View File

@ -3,6 +3,7 @@ use crate::{Device, Result, Shape, Tensor};
#[cfg(target_feature = "avx")]
pub mod avx;
pub mod ggml_file;
pub mod gguf_file;
pub mod k_quants;
#[cfg(target_feature = "neon")]
pub mod neon;