Snapshotmaster · 10bf611
From an OpenAI-compatible request to local tensor kernels and streamed text.
Click a building or route
System map8 components · 10 connections
130%
Connections
BuildingsEntryServiceComputeStorageRuntimeToolingExternal
Terms, in plain English
GGUFA file format that stores model metadata, tokenizer data, and weight tensors for efficient inference.
How to study this repo
- 1Trace the public API
Start in include/llama.h, then find each API implementation in src to connect concepts to concrete code.
- 2Follow one decode
Read the server slot loop into llama_decode, graph creation, backend scheduling, and logit extraction.
- 3Compare backends
Inspect the CPU and one GPU backend to see how the same GGML operation receives different kernels.