RUNLOCALAIv38
->Will it run?Best GPUCompareTroubleshootStartLearnPulseModelsHardwareToolsBench
Run check
RUNLOCALAI

Independently operated catalog for local-AI hardware and software. Hand-written verdicts. Source-cited claims. Reproducible commands when we have them.

OP·Eruo Fredoline
DIR
  • Models
  • Hardware
  • Tools
  • Benchmarks
TOOLS
  • Will it run?
  • Compare hardware
  • Cost vs cloud
  • Choose my GPU
  • Prompting kits
  • Quick answers
REF
  • All buyer guides
  • Learn local AI
  • Methodology
  • Glossary
  • Errors KB
  • Trust
  • Suggest a feature
EDITOR
  • About
  • Author
  • How we make money
  • Editorial policy
  • Contact
LEGAL
  • Privacy
  • Terms
  • Sitemap
MAIL · MONTHLY DIGEST
Get monthly local AI changes
Monthly recap. No spam.
DISCLOSURE

Some links on this site are affiliate links (Amazon Associates and other first-class retailers). When you buy through them, we earn a small commission at no extra cost to you. Affiliate links do not influence our verdicts — there are cards we rate highly that we don't have affiliate relationships with, and cards that sell well that we refuse to recommend. Read more →

© 2026 runlocalai.coIndependently operated
RUNLOCALAI · v38
Glossary / Training & optimization / EXL2
Training & optimization

EXL2

EXL2 is the ExLlamaV2 quantization format. NVIDIA-only, single-stream-throughput-optimized. Allows fractional bit-rates (e.g. 4.65 bits per weight) by mixing higher-precision weights for "important" channels with lower-precision for the rest. Used through ExLlamaV2 + TabbyAPI as the OpenAI-compatible serving wrapper.

The EXL2 case operationally: the fastest single-stream tok/s on consumer NVIDIA for most models. Beats vLLM AWQ by 10-25% on per-stream throughput at the same VRAM target. Compatibility cost: EXL2 doesn't support continuous batching the way vLLM does, so multi-tenant concurrency is weaker. EXL2 doesn't run on AMD or Apple.

When to use EXL2: solo-user or small-team consumer-NVIDIA deployments where peak per-stream tok/s matters more than concurrency. The dual-3090 NVLink + ExLlamaV2 combo is one of the highest-throughput single-stream setups under $2,000. When NOT to use EXL2: production serving with multi-user concurrency (use vLLM/SGLang with AWQ instead), AMD/Apple targets, or workloads where you need the broader quant ecosystem (GGUF for portability).

Practical example

A solo developer running a coding assistant on a single RTX 4090 wants maximum tokens/sec for one interactive session rather than serving multiple users. They quantize a 32B model to EXL2 at 4.65 bits per weight — a fractional rate flat GPTQ/AWQ can't express — via ExLlamaV2's calibration pass, then serve it through TabbyAPI with an OpenAI-compatible endpoint. Single-stream throughput comes in meaningfully ahead of an equivalent AWQ model served through vLLM on the same card, confirming EXL2's single-stream-optimized design. When they later need to serve the same model to five concurrent teammates, EXL2's lack of continuous batching becomes the bottleneck — each additional stream roughly divides throughput rather than sharing GPU work efficiently — so they migrate that deployment to vLLM with AWQ despite the lower per-stream ceiling, keeping gguf as the portable fallback for anyone without an NVIDIA card.

Related terms

QuantizationGPTQAWQGGUF

See also

tool: exllamav2tool: tabbyapi

Reviewed by Eruo Fredoline. See our editorial policy.

Buyer guides
  • Best GPU for local AI →
When it doesn't work
  • Quantization quality loss →
  • GGUF tokenizer mismatch →