Can Qwen 3.6 35B A3B run on NVIDIA A10 24GB?

YES — With Q2_K

S95Excellent
Estimated from fit model

Qwen 3.6 35B A3B needs ~22.6 GB VRAM. NVIDIA A10 24GB has 24.0 GB. With Q2_K quantization, expect ~60 tok/s.

Runtime: vLLMCapacity: TightBandwidth: MediumStack: OptimizedBottleneck: Balanced
Share:

Operating mode

Choose the run profile you care about

Interactive favors responsiveness, while light API and scale-out lean harder on serving readiness. The fit stays the same, but the recommendation lens changes.

Current mode

Balanced

Balanced for general local use. Keeps the ranking neutral across personal and serving workflows.

Qwen 3.6 35B A3B at Q4_K_M needs 30.3 GB — too much for NVIDIA A10 24GB (24.0 GB). Runs at Q2_K (22.6 GB) with low quality.
Capabilities:

Select quantization to explore

Q4_K_M (Medium quality) 30.3 GB, exceeds 24.0 GB available
30.3 GB required24.0 GB available
126% VRAM needed

6.3 GB over capacity — needs offload or smaller quantization

Fit status

Too heavy

Decode

20.8 tok/s

TTFT

9297 ms

Safe context

4K

Memory

30.3 GB / 24.0 GB

Offload

20%

Memory breakdown

Weights21.3 GB
KV Cache4.1 GB
Runtime2.4 GB
Headroom2.4 GB

See how fast it feels

With memory offload — actual speed may be lower
See how fast it feelsQwen 3.6 35B A3B on NVIDIA A10 24GB
1st promptCold start — includes initialization
>Write a Python function to sort a list
Here's a Python function that sorts a list using quicksort: def quicksort(arr): if len(arr) <= 1: return arr pivot = arr[len(arr) // 2] left = [x for x in arr if x < pivot] middle = [x for x in arr if x == pivot] right = [x for x in arr if x > pivot] return quicksort(left) + middle + quicksort(right) # Example usage numbers = [3, 6, 8, 10, 1, 2, 1] print(quicksort(numbers)) # [1, 1, 2, 3, 6, 8, 10] The algorithm picks a pivot, partitions the list into smaller, equal, and larger elements, then recursively sorts each partition and concatenates the results.
2nd promptWarm — model ready, no init overhead
>Now add type hints and a docstring
def quicksort(arr: list[int]) -> list[int]: """Sort a list using the quicksort algorithm. Args: arr: List of integers to sort. Returns: A new sorted list. """ if len(arr) <= 1: return arr pivot = arr[len(arr) // 2] left = [x for x in arr if x < pivot] middle = [x for x in arr if x == pivot] right = [x for x in arr if x > pivot] return quicksort(left) + middle + quicksort(right) Added type hints for the input and return type, plus a Google-style docstring.
Estimated: 20.8 tok/s decode · 9.3s TTFT (warm) · 52 tok/s prefill

What limits this setup

This setup is broadly balanced for this model.

Very little memory headroom

You can run the model, but there is not much room left for longer context, bigger batches, extra apps, or future model updates.

Best improvement path

Buy headroom, not only minimum fit

A slightly larger memory tier gives you safer context growth and makes the recommendation more future-proof.

Performance by workload

WorkloadGradeFitDecodeTTFTContext
ChatFToo heavy24.1 tok/s4374 ms4K
CodingFToo heavy20.8 tok/s9297 ms4K
Agentic CodingFToo heavy15.9 tok/s17672 ms4K
ReasoningFToo heavy20.8 tok/s10987 ms4K
RAGFToo heavy15.9 tok/s22091 ms4K

Inference speed

Qwen 3.6 35B A3B inference speed — tokens per second by GPU & Mac

Estimated decode speed (tokens/sec) for Qwen 3.6 35B A3B at Q4_K_M across popular GPUs and Apple Silicon, using the fastest local runtime per device. Fastest is RTX 5090 32GB at ~153 tok/s. Speed is memory-bandwidth bound, so cards that fit the whole model in VRAM run far faster than ones that offload to system RAM.

GPU / MacMemoryQuantSpeed (tok/s)Fits?
NVIDIARTX 5090 32GB
32 GBQ4_K_M152.6Offloads
Mac Studio M3 Ultra 256GB
256 GBQ4_K_M70.8Fits
Mac Studio M2 Ultra 128GB
128 GBQ4_K_M59.0Fits
Mac Studio M1 Ultra 128GB
128 GBQ4_K_M55.9Fits
MacBook Pro M4 Max 128GB
128 GBQ4_K_M43.7Fits
MacBook Pro M4 Max 64GB
64 GBQ4_K_M43.7Fits
NVIDIARTX 4090 24GB
24 GBQ4_K_M34.1Too big
RX 7900 XTX 24GB
24 GBQ4_K_M30.8Too big
MacBook Pro M3 Max 64GB
64 GBQ4_K_M30.5Fits
NVIDIARTX 3090 24GB
24 GBQ4_K_M29.2Too big
MacBook Pro M1 Max 64GB
64 GBQ4_K_M28.0Fits
MacBook Pro M4 Pro 48GB
48 GBQ4_K_M26.7Tight
NVIDIARTX 4080 Super 16GB
16 GBQ4_K_M12.2Too big
NVIDIARTX 4070 12GB
12 GBQ4_K_M5.5Too big
NVIDIARTX 3060 12GB
12 GBQ4_K_M3.4Too big
NVIDIARTX 4060 8GB
8 GBQ4_K_M2.9Too big

Estimates for single-stream decoding at Q4_K_M; real tokens/sec varies with prompt length, context, batch size, and runtime build. Prompt processing (prefill) is faster than the decode figures shown here.

Quantization options

How Qwen 3.6 35B A3B (35B params) fits at each quantization level on NVIDIA A10 24GB (24.0 GB usable).

QuantBitsVRAMQualityFit
Q2_K
2
13.7 GB
LowS92
Q3_K_SBest for your GPU
3
17.2 GB
LowS92
NVFP4
4
19.6 GB
MediumF0
Q4_K_M
4
21.3 GB
MediumF0
Q5_K_M
5
25.2 GB
HighF0
Q6_K
6
28.7 GB
HighF0
Q8_0
8
37.5 GB
Very HighF0
F16
16
71.8 GB
MaximumF0

Get started

Copy-paste commands to run Qwen 3.6 35B A3B on your machine.

Run

docker run --rm -it ghcr.io/ggerganov/llama.cpp:full \ --hf-repo "Qwen/Qwen3.6-35B-A3B" \ --hf-file "Qwen3.6-35B-A3B-Q4_K_M.gguf" \ -c 4096 -ngl 99

Upgrade-Optionen

Hardware, die Qwen 3.6 35B A3B gut ausführt

Frequently asked questions

Can NVIDIA A10 24GB run Qwen 3.6 35B A3B?

Yes, NVIDIA A10 24GB can run Qwen 3.6 35B A3B at Q2_K quantization (Tight fit). The recommended Q4_K_M requires 30.3 GB which exceeds available memory, but at Q2_K it needs only 22.6 GB. Expected decode speed: 60.1 tok/s.

How much VRAM does Qwen 3.6 35B A3B need?

Qwen 3.6 35B A3B (35B parameters) requires approximately 30.3 GB at Q4_K_M quantization. On NVIDIA A10 24GB, it fits at Q2_K using 22.6 GB.

What is the best quantization for Qwen 3.6 35B A3B?

The recommended quantization is Q4_K_M, but on NVIDIA A10 24GB the best fitting quantization is Q2_K, which uses 22.6 GB.

What speed will Qwen 3.6 35B A3B run at on NVIDIA A10 24GB?

On NVIDIA A10 24GB, Qwen 3.6 35B A3B achieves approximately 60.1 tokens per second decode speed with a time-to-first-token of 3222ms using Q2_K quantization.

Can NVIDIA A10 24GB run Qwen 3.6 35B A3B for coding?

For coding workloads, Qwen 3.6 35B A3B on NVIDIA A10 24GB receives a F grade with 20.8 tok/s and 4K context.

What context window can Qwen 3.6 35B A3B use on NVIDIA A10 24GB?

On NVIDIA A10 24GB, Qwen 3.6 35B A3B can safely use up to 22K tokens of context at Q2_K quantization. The model's official context limit is 262K, but available memory constrains the safe maximum.

What should I upgrade first if Qwen 3.6 35B A3B feels slow on NVIDIA A10 24GB?

Buy headroom, not only minimum fit. A slightly larger memory tier gives you safer context growth and makes the recommendation more future-proof.

See all results for NVIDIA A10 24GBSee all hardware for Qwen 3.6 35B A3B
Embed this result

Paste this snippet into any page to show a live fit card.

<iframe src="https://willitrunai.com/embed/qwen-3.6-35b-a3b-on-a10-24gb" width="400" height="180" frameborder="0" style="border:none;border-radius:12px;overflow:hidden;" title="Will It Run AI — fit result"></iframe>

Preview: