ReasoningDenseContext: 125K
DeepSeek R1 Distill Qwen 32B
Comprehensive deployment profile and benchmark telemetry for DeepSeek R1 Distill Qwen 32B. Self-hosting memory footprints, verified token economics, and direct API endpoints.
Verified Engineering Benchmarks
SWE-bench
49.2%
LiveCodeBench
65.9%
MATH-500
97.3%
MMLU
90.8%
VRAM Requirements & Sizing
🔗 Quick Actions
🖥️ Compatible GPUs & Self-Host Pricing
Deterministic VRAM math from entity graph. Green = fits in single GPU.
| GPU | VRAM | FP16 | FP8 | INT4 | Calculator Link |
|---|---|---|---|---|---|
| H100 SXM5 | 80 GB | ✓ fits | ✓ fits | ✓ fits | Pre-filled → |
| H200 | 141 GB | ✓ fits | ✓ fits | ✓ fits | Pre-filled → |
| B200 | 192 GB | ✓ fits | ✓ fits | ✓ fits | Pre-filled → |
| A100 80GB | 80 GB | ✓ fits | ✓ fits | ✓ fits | Pre-filled → |
| L40S | 48 GB | OOM | ✓ fits | ✓ fits | Pre-filled → |
| RTX 4090 | 24 GB | OOM | OOM | ✓ fits | Pre-filled → |
Active API Providers & Free Tiers
| Provider | Input / 1M | Output / 1M | Speed | Free Tier Status |
|---|---|---|---|---|
| OpenRouter | $0.35 | $1.40 | 45 tok/s | ⚡ 20 RPM |
| DeepInfra | $0.25 | $1.00 | 50 tok/s | Paid API Only |
| Together AI | $0.35 | $1.40 | 42 tok/s | Paid API Only |
| Cloudflare Workers AI | $0.01 | $0.01 | 100 tok/s | Paid API Only |
OpenAI SDK Drop-in
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.OPENROUTER_API_KEY,
});
const response = await client.chat.completions.create({
model: "deepseek-r1-distill-qwen-32b",
messages: [{ role: "user", content: "Hello" }],
});