ggml 0.1.1

Semi-idiomatic Rust bindings for the ggml library (from `ggml-sys`).
Documentation
1
2
3
4
5
6
7
//! Loading and saving of [GGML](https://github.com/ggerganov/ggml) files.

mod loader;
mod saver;

pub use loader::*;
pub use saver::*;