Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/multi-gpu.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,10 @@ llama-cli -m model.gguf -sm tensor -ctk f16 -ctv f16

- `--flash-attn off` or (`--flash-attn auto` resolving to `off` when it isn't supported) is a hard error.
- KV cache types must be non-quantized: `f32`, `f16`, or `bf16`. Support for quantized KV cache is not implemented and trying to use it will result in an error.
- Because tensor parallelism splits the KV cache across GPUs, some models can fit a larger `--ctx-size` than they can with `layer` mode on the same hardware. `--fit` is disabled for `tensor`, so set the context size explicitly and validate memory use.
- If combining tensor parallelism with MTP/speculative decoding, validate stability separately. If a model becomes unstable, retry with MTP/speculative decoding disabled before reducing the context size.
- Mark this configuration as experimental in your tooling: validate output quality before deploying.
- `--split-mode tensor`is not implemented for all architectures. The following will fail with *"LLAMA_SPLIT_MODE_TENSOR not implemented for architecture '...'"*:
- `--split-mode tensor` is not implemented for all architectures. The following will fail with *"LLAMA_SPLIT_MODE_TENSOR not implemented for architecture '...'"*:

- **MoE / hybrid:** Grok, MPT, OLMoE, DeepSeek2, GLM-DSA, Nemotron-H, Nemotron-H-MoE, Granite-Hybrid, LFM2-MoE, Minimax-M2, Mistral4, Kimi-Linear, Jamba, Falcon-H1
- **State-space / RWKV-style:** Mamba, Mamba2 (and the hybrid Mamba-attention models above)
Expand Down