Views
No views yet
| File | Size | Notes |
|---|---|---|
laguna-s-2.1-F16.gguf | 235 GB | full precision |
laguna-s-2.1-Q8_0.gguf | 129 GB | routed experts Q8_0, signal path (attention, shared experts, embeddings) kept BF16 |
laguna-s-2.1-Q4_K_M.gguf | 68 GB | routed experts Q4_K (imatrix), signal path kept Q8_0 |
laguna-s-2.1-DFlash-BF16.gguf | 2.2 GB | DFlash drafter for speculative decoding |
laguna-s-2.1.imatrix | 0.4 GB | importance matrix used for the K-quants |
laguna, which carries full
Laguna support including DFlash speculative decoding. (Base Laguna support is also
in upstream review: ggml-org/llama.cpp#25165.)1git clone --branch laguna https://github.com/poolsideai/llama.cpp
2cd llama.cpp && cmake -B build && cmake --build build -j
3
4./build/bin/llama-server -m laguna-s-2.1-Q4_K_M.gguf --jinja --port 8000
5
6# with DFlash speculative decoding:
7./build/bin/llama-server -m laguna-s-2.1-Q4_K_M.gguf \
8 -md laguna-s-2.1-DFlash-BF16.gguf \
9 --spec-type draft-dflash --spec-draft-n-max 15 \
10 --spec-draft-override-tensor '.*=CUDA0' \
11 -fa on --jinja --port 8000--ctx-size 1048576 --rope-scaling yarn --rope-scale 128 --yarn-orig-ctx 8192--temp 0.7 --top-p 0.95.yarn_attn_factor metadata (now 1.0; llama.cpp derives the YaRN attention scaling internally).