5 releases

0.1.1 May 8, 2023
0.1.0-rc4 May 8, 2023
0.1.0-rc3 May 7, 2023
0.1.0-rc1 May 4, 2023

#183 in #artificial-intelligence

Download history 32/week @ 2024-11-15 61/week @ 2024-11-22 69/week @ 2024-11-29 90/week @ 2024-12-06 99/week @ 2024-12-13 56/week @ 2024-12-20 22/week @ 2024-12-27 46/week @ 2025-01-03 88/week @ 2025-01-10 98/week @ 2025-01-17 54/week @ 2025-01-24 80/week @ 2025-01-31 84/week @ 2025-02-07 96/week @ 2025-02-14 97/week @ 2025-02-21 65/week @ 2025-02-28

360 downloads per month
Used in 11 crates (via llm-base)

MIT license

3.5MB
26K SLoC

C 14K SLoC // 0.1% comments C++ 7K SLoC // 0.1% comments Rust 2.5K SLoC // 0.0% comments Python 768 SLoC // 0.3% comments CUDA 544 SLoC // 0.0% comments Shell 138 SLoC // 0.2% comments

ggml is a semi-idiomatic wrapper for the ggml C library.

It exposes a subset of operations (currently used to implement the llm library). Note that it does not expose a fully-idiomatic safe Rust interface; operations that could be potentially unsafe are marked as such.

ggml operates on a computational graph; no values will be computed until Context::graph_compute is executed. All [Tensor]s are nodes in this computational graph, and values cannot be retrieved until computation is completed.

Dependencies