Skip to main content

Run frontier MoE models on consumer hardware. 35B in 1.5GB RAM.

Project description

Kandiga

Giant models. Tiny memory.

Kandiga is an open-source MoE inference engine that uses Selective Expert Materialization (SEM) to run massive models on any Apple Silicon Mac. A 397B model that normally needs 224GB of RAM runs in 8GB. A 35B model runs in 2GB. No cloud, no API keys.

Supported Models

Model Parameters Active Experts Disk Kandiga RAM Min. Mac
Qwen3.5-35B-A3B 35B 3B 256 20 GB ~2 GB 8 GB
Qwen3.5-122B-A10B 122B 10B 256 70 GB ~4 GB 16 GB
Qwen3.5-397B-A17B 397B 17B 512 224 GB ~8 GB 24 GB

Without Kandiga, these models require their full disk size in RAM. With SEM, only the shared layers load to memory — expert weights stay on disk and are read on demand.

How it works

MoE models have hundreds of expert sub-networks per layer, but only activate a few per token. Kandiga exploits this sparsity:

  1. Shared layers (attention, norms, embeddings) load to GPU memory
  2. Expert weights stay on disk in packed binary files
  3. Per token: the router selects which experts to activate (8 of 256)
  4. CPU computes expert MLP with NEON-vectorized 4-bit dequant + GCD parallelism
  5. GPU computes attention simultaneously via MLX (unified memory, zero copy)

Install

pip install kandiga

Requirements: macOS with Apple Silicon (M1/M2/M3/M4), Python 3.10+

Quick start

# One-time setup: download model + prepare expert files
kandiga setup

# Choose a different model
kandiga setup --model mlx-community/Qwen3.5-122B-A10B-4bit

# Interactive chat
kandiga chat

# Fast mode (K=4 experts instead of 8, ~2x speed)
kandiga chat --fast

# One-shot prompt
kandiga "What is the capital of France?"

# Start an OpenAI-compatible API server
kandiga serve

# Run benchmarks
kandiga bench

# Update to latest version
kandiga update

Performance

Measured on M4 Mac Mini (16GB), Qwen3.5-35B-A3B-4bit:

Mode Experts Speed RAM Quality
Quality (K=8) 8/256 per layer ~3.5 tok/s ~2 GB Full
Fast (K=4) 4/256 per layer ~6.5 tok/s ~2 GB Near-equal

KV Cache Compression (TurboQuant)

Every token generated grows a memory buffer called the KV cache. On a 16GB Mac, this normally limits conversations to ~4K tokens before RAM runs out.

Kandiga implements TurboQuant (based on Google Research) — a compression algorithm that shrinks the KV cache from 16-bit to 3-bit per element with only 4% quality loss:

  1. PolarQuant — randomly rotates vectors to spread information, then quantizes to 3 bits
  2. QJL — 1-bit error correction using the Johnson-Lindenstrauss transform
Context Length Standard (float16) Kandiga (3-bit) Compression
4K tokens 16.8 MB 4.5 MB 3.8x
8K tokens 33.6 MB 8.9 MB 3.8x
16K tokens 67.1 MB 17.8 MB 3.8x
32K tokens 134 MB 35.3 MB 3.8x
  • 96% cosine similarity — attention scores stay accurate
  • Zero speed overhead — rotation cost is negligible vs expert I/O
  • No configuration needed — compression is automatic

Architecture

User prompt
    |
    v
[Tokenizer + Chat Template]
    |
    v
[MLX Forward Pass]
    |
    +---> GPU: Attention + Norms + Router + Shared Expert + Blending
    |
    +---> CPU: Routed Expert MLP (NEON 4-bit dequant + GCD parallel)
    |         |
    |         +-- pread expert weights from SSD (OS page cache)
    |         +-- SwiGLU activation + down projection
    |
    v
[Token Output]

Both CPU and GPU operate on the same physical DRAM (Apple Silicon unified memory), so there is zero data transfer overhead between them.

API Server

Kandiga includes an OpenAI-compatible HTTP API:

kandiga serve --port 8340
import openai

client = openai.OpenAI(base_url="http://localhost:8340/v1", api_key="unused")
response = client.chat.completions.create(
    model="mlx-community/Qwen3.5-35B-A3B-4bit",
    messages=[{"role": "user", "content": "Hello!"}],
    stream=True,
)
for chunk in response:
    print(chunk.choices[0].delta.content or "", end="")

Development

git clone https://github.com/kantheon/kandiga.git
cd kandiga
pip install -e ".[serve]"
cd kandiga/metal && make && cd ../..
pytest tests/ -v

License

MIT — Built by Kantheon

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kandiga-0.4.0.tar.gz (39.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kandiga-0.4.0-py3-none-any.whl (38.4 kB view details)

Uploaded Python 3

File details

Details for the file kandiga-0.4.0.tar.gz.

File metadata

  • Download URL: kandiga-0.4.0.tar.gz
  • Upload date:
  • Size: 39.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for kandiga-0.4.0.tar.gz
Algorithm Hash digest
SHA256 e8a51cd2b7a8cef7dd5ca7cd2751af1cdb045cce0f7e6ab8b825a879eb5836e1
MD5 d5e42c91f7df57ebdc94fab45a39f68d
BLAKE2b-256 00b806eaf34d68481834947527d29b8ce09f22afba3c94c23bb855cb94708698

See more details on using hashes here.

File details

Details for the file kandiga-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: kandiga-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 38.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for kandiga-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 02b3a088e30beff185557ef45c3a5c8bd0800957216b624fd0528b13fc6609fc
MD5 1bc942c37e0f8da032b0a8481e76681f
BLAKE2b-256 8b0bf71c4b57bd94d13b8dfe19c9a9ea6f4a240d0c43b650697d5ae63d0e356d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page