loong64 /
llama.cpp
LLM inference in C/C++
Loading repository data…
ggml-org / repository
LLM inference in C/C++
Manifesto / ggml / ops / maintainer PRs
LLM inference in C/C++
-hf are now stored in the standard Hugging Face cache directory, enabling sharing with other HF tools.gpt-oss model with native MXFP4 format has been added | PR | Collaboration with NVIDIA | Commentllama-server: #12898 | documentationGetting started with llama.cpp is straightforward. Here are several ways to install it on your machine:
llama.cpp using brew, nix, winget, or conda-forgeOnce installed, you'll need a model to work with. Head to the Obtaining and quantizing models section to learn more.
Example command:
# Use a local model file
llama-cli -m my_model.gguf
# Or download and run a model directly from Hugging Face
llama-cli -hf ggml-org/gemma-3-1b-it-GGUF
# Launch OpenAI-compatible API server
llama-server -hf ggml-org/gemma-3-1b-it-GGUF
The main goal of llama.cpp is to enable LLM inference with minimal setup and state-of-the-art performance on a wide
range of hardware - locally and in the cloud.
The llama.cpp project is the main playground for developing new features for the ggml library.
Typically finetunes of the base models below are supported as well.
Instructions for adding support for new models: HOWTO-add-model.md
Selected from shared topics, language and repository description—not editorial ratings.
loong64 /
LLM inference in C/C++
gyunggyung /
High-performance On-Device MoA (Mixture of Agents) Engine in C++. Optimized for CPU inference with RadixCache & PagedAttention. (Tiny-MoA Native)
On the Releases page, you can download pre-built binaries for arm, armv7l and Raspberry pi. LLM inference in C/C++
bertaye /
A header-only, from-scratch Llama 2 inference engine in C++, built to learn how LLM inference actually works. Tensor design inspired by ggml/llama.cpp; wieghts borrowed from llama2.c :)