Analysis updated 2026-05-18
Find the fastest llama.cpp settings for a specific GPU and model automatically
Save and reuse a tuned performance profile instead of guessing settings
Compare CPU-only versus GPU-offloaded performance on your own hardware
| federicobarrosgiuffrida/fluxinfer | allentdan/shape_based_matching | amu2mod/radeonmon | |
|---|---|---|---|
| Stars | 1 | 1 | 1 |
| Language | C++ | C++ | C++ |
| Last pushed | — | 2019-03-01 | — |
| Maintenance | — | Dormant | — |
| Setup difficulty | moderate | moderate | moderate |
| Complexity | 3/5 | 3/5 | 3/5 |
| Audience | developer | developer | vibe coder |
Figures from each repo's GitHub metadata at analysis time.
Requires a working llama.cpp build already installed, plus a C++20 compiler and CMake to build FluxInfer itself.
FluxInfer is a command line tool that helps you get the best performance out of llama.cpp, a popular program for running AI language models on your own computer. Instead of guessing which settings will work well on your specific hardware, FluxInfer looks at your CPU, memory, and GPU, then automatically runs a small series of benchmark tests using a given model file to find the fastest working configuration. It saves that result as a reusable profile and can then launch the model for you using the settings it found. Importantly, FluxInfer does not build or modify llama.cpp itself. It only finds and runs the existing llama-bench, llama-cli, and llama-server programs that you have already built or installed separately, either through a folder you point it to, an environment variable, or your system's PATH. The tool reads real metadata directly from the model's GGUF file, such as how many layers it has, so its benchmark search is tailored to that specific model rather than using generic guesses. The project is explicitly labeled experimental. It has only been tested on one machine with two AI models and one graphics card so far, and the author is asking people with different hardware to share their results by opening an issue. Building it requires a C++20 compiler and CMake, with instructions given for both Windows and Linux, macOS is not yet supported. Most of its C++ dependencies are bundled directly in the project so a normal build does not need extra downloads. FluxInfer is released under the PolyForm Noncommercial License 1.0.0, which allows free use for personal, research, hobby, and nonprofit or educational purposes, but requires a separate paid license for any commercial use.
A command line tool that benchmarks your hardware and automatically finds the fastest settings for running AI models with llama.cpp.
Mainly C++. The stack also includes C++, CMake, llama.cpp.
Free to use for personal, research, hobby, or nonprofit purposes, but a separate paid license is required for commercial use.
Setup difficulty is rated moderate, with roughly 1h+ to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.