Nemotron 3.5 Lightning 30B-A3B vs Qwen 3.6 27B
Side-by-side VRAM requirements, benchmark scores, and GPU compatibility for local AI inference.
Quick verdict
Qwen 3.6 27B is more hardware-efficient — it needs 19.0 GB at Q4_K_M vs 20.5 GB for Nemotron 3.5 Lightning 30B-A3B, fitting on 78 GPUs natively. Nemotron 3.5 Lightning 30B-A3B is a Mixture of Experts model — it has 30B total parameters but only 3B are active per token, making inference faster than its total size suggests.
Analysis
Qwen 3.6 27B and Nemotron 3.5 Lightning 30B-A3B are two agent-oriented releases four months apart in 2026 (Qwen in April, Nemotron in August) that both chase a small KV cache and a context window well past 100,000 tokens, but by very different means. Qwen is a dense model that replaces most of its attention layers with linear-attention DeltaNet blocks; Nemotron goes further still, mixing Mamba-2 state-space layers, MoE feed-forward layers, and a handful of ordinary attention layers in the same 52-layer stack. The more consequential difference is how much of each model is actually doing work per token: all 27B of Qwen's parameters fire on every token, while only 3B of Nemotron's 30B do.
Qwen 3.6 27B is dense: 16 of its 64 layers keep a real KV cache (4 KV heads x 256 head dim, 1,024-wide), and the other 48 run Gated DeltaNet, a fixed-size recurrent state instead of attention. Nemotron 3.5 Lightning is sparser on both axes at once: it's MoE (128 routed experts, 6 active plus 1 shared per token, so only 3B of its 30B parameters are active on any given token), and only 6 of its 52 layers keep a cache at all (2 KV heads x 128 head dim, 256-wide, a quarter of Qwen's per-layer width), the rest split between 26 Mamba-2 layers and 20 MoE FFN layers with nothing to cache. At the 262,144-token context where Qwen's native window ends (Nemotron's continues on to 1,048,576), Nemotron's KV cache is 1.6 GB against Qwen's 17.2 GB, an order of magnitude smaller, because Nemotron caches roughly a tenth of its layers (6 of 52) against Qwen's quarter (16 of 64), at a narrower width besides. Add each model's Q4_K_M weights and the full picture is 22.3 GB total for Nemotron against 37.7 GB for Qwen, the difference between a 24 GB card with room to spare and needing 32 GB or more. On benchmarks both report, Qwen leads clearly: MMLU-Pro 86.2 vs 81.62, GPQA Diamond 87.8 vs 75.57, SWE-bench Verified 77.2 vs 52.80. Nemotron's own reported Terminal-Bench score, 23.46, is measured on the 2.1 suite; Qwen's reported 59.3 is on the older 2.0 suite, a different harness, so the two aren't a direct head-to-head. NVIDIA isn't positioning Lightning as a quality leader in the first place: the tradeoff for routing through only 3B active parameters is throughput, and NVIDIA's own figures claim up to 4x higher output and 30% faster task completion against similarly-sized open models. Licensing differs too: Nemotron ships under NVIDIA's own OpenMDW-1.1, Qwen under the more widely recognized Apache 2.0. Qwen also accepts image and video input where Nemotron is text-only, though Nemotron's native context window (1,048,576 tokens) is four times Qwen's (262,144), which itself only reaches roughly 1,010,000 with YaRN, a context-stretching technique applied after training. Tooling favors Qwen by default: it shipped four months earlier, giving its llama.cpp and vLLM support time to mature even though its own day-one GGUFs reportedly didn't load in Ollama either; Nemotron launched on 11 August 2026 with no GGUF or Ollama build at all, native NVFP4, FP8, and BF16 checkpoints for vLLM, SGLang, and TensorRT-LLM only.
Bottom line: For long-context or throughput-bound agent workloads on a single 24 GB card, Nemotron 3.5 Lightning is the more VRAM-efficient design, and NVIDIA's own throughput claims are the reason it trades benchmark quality away in the first place. Qwen 3.6 27B is the better default otherwise: it scores higher on every shared benchmark, adds vision and video input Nemotron doesn't have, ships under a fully permissive and widely recognized license, and already has four months of runtime support behind it that Nemotron's day-one release doesn't.
Active vs. total parameters: two very different sparsity levels
Qwen 3.6 27B is dense, so all of its parameters are active on every token. Nemotron 3.5 Lightning is MoE on top of its Mamba-2 layers, so its active count is far smaller than its total. The gap between the two bars below is what drives Nemotron's throughput claim; it's not visible in a benchmark score.
What 262,144 tokens of context costs each model
Qwen 3.6 27B's native context window tops out at 262,144 tokens; Nemotron 3.5 Lightning's continues on to 1,048,576. Restricted to the range both models can reach, their KV cache still diverges by an order of magnitude, because Nemotron caches roughly a tenth of its layers at a narrow width while Qwen still caches a quarter of its layers at four times that width.
KV cache only, at FP16. Weights and activation overhead sit on top of these figures.
At 262,144 tokens, the most Qwen 3.6 27B supports, Nemotron 3.5 Lightning's KV cache is 1.6 GB against Qwen's 17.2 GB. Add each model's Q4_K_M weights and the full picture is 22.3 GB total for Nemotron 3.5 Lightning against 37.7 GB for Qwen 3.6 27B, the difference between comfortably fitting a single 24 GB card and needing 32 GB or more.
VRAM at each quantization (8k context)
| Quant | Nemotron 3.5 Lightning 30B-A3B | Qwen 3.6 27B | Diff |
|---|---|---|---|
| FP32 | 134.5 GB | 121.6 GB | +11% |
| BF16 | 67.3 GB | 61.1 GB | +10% |
| FP16 | 67.3 GB | 61.1 GB | +10% |
| Q8_0 | 35.8 GB | 32.7 GB | +9% |
| Q6_K | 27.6 GB | 25.4 GB | +9% |
| Q5_K_M | 24.0 GB | 22.1 GB | +8% |
| Q4_K_M | 20.5 GB | 19.0 GB | +8% |
| Q3_K_M | 16.2 GB | 15.1 GB | +7% |
| Q2_K | 12.9 GB | 12.1 GB | +6% |
| NVFP4 | 16.9 GB | 15.7 GB | +7% |
Diff is Nemotron 3.5 Lightning 30B-A3B relative to Qwen 3.6 27B. Green = lower VRAM (fits more GPUs).
Model specifications
| Spec | Nemotron 3.5 Lightning 30B-A3B | Qwen 3.6 27B |
|---|---|---|
| Org | NVIDIA | Alibaba |
| Parameters | 30B | 27B |
| Architecture | MoE (3B active) | Dense |
| Context | 1024k tokens | 256k tokens |
| Modalities | text | text, vision, video |
| License | OpenMDW-1.1 | Apache 2.0 |
| Commercial | Yes | Yes |
| Released | 2026-08-11 | 2026-04-22 |
| GPUs (native) | 78 / 112 | 78 / 112 |
Benchmark scores
| Benchmark | Nemotron 3.5 Lightning 30B-A3B | Qwen 3.6 27B |
|---|---|---|
| MMLU-Pro | 81.6 | 86.2 |
| GPQA Diamond | 75.6 | 87.8 |
| SWE-bench Verified | 52.8 | 77.2 |
| Terminal-Bench 2.1 | 23.5 | — |
Green = higher score (better). — = not yet available.
GPUs that run only Nemotron 3.5 Lightning 30B-A3B(0)
Every GPU that runs Nemotron 3.5 Lightning 30B-A3B also runs Qwen 3.6 27B.
GPUs that run only Qwen 3.6 27B(0)
Every GPU that runs Qwen 3.6 27B also runs Nemotron 3.5 Lightning 30B-A3B.
GPUs that run both natively(78)
- NVIDIA RTX 509032 GB
- NVIDIA RTX 508016 GB
- NVIDIA RTX 5070 Ti16 GB
- NVIDIA RTX 5060 Ti 16GB16 GB
- NVIDIA RTX 409024 GB
- NVIDIA RTX 408016 GB
- NVIDIA RTX 4070 Ti SUPER16 GB
- NVIDIA RTX 4060 Ti 16GB16 GB
- NVIDIA RTX 309024 GB
- NVIDIA RTX 3090 Ti24 GB
- NVIDIA B300 288GB288 GB
- NVIDIA B200 180GB180 GB
- +66 more GPUs run both
Which should you use?
- • You want maximum capability and have a 21 GB+ GPU
- • You want fast inference — MoE only activates 3B params per token
- • Long context matters — it supports 1024k tokens vs 256k
- • You have limited VRAM — it's a smaller model needing 19.0 GB vs 20.5 GB
- • Benchmark quality matters — scores 86.2 vs 81.6 on MMLU-Pro
- • You need chain-of-thought reasoning
- • You need vision/image understanding
Frequently asked questions
- Which is better, Nemotron 3.5 Lightning 30B-A3B or Qwen 3.6 27B?
- Nemotron 3.5 Lightning 30B-A3B has 30B parameters vs 27B for Qwen 3.6 27B, so Nemotron 3.5 Lightning 30B-A3B is the larger model. Qwen 3.6 27B is more hardware-efficient, needing 19.0 GB at Q4_K_M vs 20.5 GB. On MMLU-Pro, Qwen 3.6 27B scores higher (86.2 vs 81.6).
- How much VRAM does Nemotron 3.5 Lightning 30B-A3B need vs Qwen 3.6 27B?
- At Q4_K_M quantization with 8k context, Nemotron 3.5 Lightning 30B-A3B needs approximately 20.5 GB of VRAM, while Qwen 3.6 27B needs 19.0 GB. At FP16, Nemotron 3.5 Lightning 30B-A3B requires 67.3 GB vs 61.1 GB for Qwen 3.6 27B.
- Can you run Nemotron 3.5 Lightning 30B-A3B on the same GPUs as Qwen 3.6 27B?
- Yes, 78 GPUs can run both natively in VRAM, including NVIDIA RTX 5090, NVIDIA RTX 5080, NVIDIA RTX 5070 Ti. However, no GPU can run Nemotron 3.5 Lightning 30B-A3B without also fitting Qwen 3.6 27B, and no GPU can run Qwen 3.6 27B without also fitting Nemotron 3.5 Lightning 30B-A3B.
- What is the difference between Nemotron 3.5 Lightning 30B-A3B and Qwen 3.6 27B?
- Nemotron 3.5 Lightning 30B-A3B has 30B parameters (3B active, MoE) with a 1024k context window. Qwen 3.6 27B has 27B parameters (dense) with a 256k context window. Licensing differs: Nemotron 3.5 Lightning 30B-A3B is OpenMDW-1.1 while Qwen 3.6 27B is Apache 2.0.
- Which model fits in 24 GB of VRAM, Nemotron 3.5 Lightning 30B-A3B or Qwen 3.6 27B?
- Both fit in 24 GB of VRAM at Q4_K_M — Nemotron 3.5 Lightning 30B-A3B needs 20.5 GB and Qwen 3.6 27B needs 19.0 GB.
- Which handles long context better, Nemotron 3.5 Lightning 30B-A3B or Qwen 3.6 27B?
- At 262,144 tokens, the most Qwen 3.6 27B supports, Nemotron 3.5 Lightning's KV cache is 1.6 GB against Qwen's 17.2 GB. Add each model's Q4_K_M weights and the full picture is 22.3 GB total for Nemotron 3.5 Lightning against 37.7 GB for Qwen 3.6 27B, the difference between comfortably fitting a single 24 GB card and needing 32 GB or more.