Runyard / Run locally / Granite 4.0 Micro

Running Granite 4.0 Micro locally

Granite 4.0 Micro is a 3B-parameter dense model. Every parameter is read for every token generated, so both the memory it occupies and the speed it runs at follow directly from that one figure.

Weights: ibm-granite/granite-4.0-h-micro · Context: 131K tokens · Published 2025-10-20 · Updated 2026-09-01

The short answer: at Q4_K_M, the quantisation most people actually run, Granite 4.0 Micro occupies roughly 1.7 GB of weights and needs about 3.5 GB of total VRAM once you add an 8K context window and runtime overhead. That puts it within reach of a Arc B580 (12 GB) and anything larger.

VRAM by quantisation

Quantisation trades precision for memory. Each row is Granite 4.0 Micro at 8K context, including the KV cache and ~1 GB of runtime overhead:

QuantWeightsTotal VRAMQuality
Q8_03.2 GB5.0 GBNear-lossless. Use when VRAM is free.
Q6_K2.5 GB4.3 GBVery close to FP16; the safe default if it fits.
Q5_K_M2.1 GB4.0 GBMild loss, noticeably smaller.
Q4_K_M1.7 GB3.5 GBThe sweet spot most people run.
Q3_K_M1.3 GB3.2 GBVisible degradation. Fallback only.

Below Q4 the returns turn sharply negative. Q3_K_M saves 0.4 GB over Q4_K_M but introduces errors you will notice in structured output and long-form reasoning. If Q4 does not fit, a smaller model at Q5 or Q6 almost always beats this one at Q3.

Which GPUs run it

Every current consumer card, against Granite 4.0 Micro at Q4_K_M. Throughput is estimated from memory bandwidth against the full weights:

GPUVRAMBandwidthRuns it?Est. speed
RTX 509032 GB1,792 GB/sYes — Q8_0~450 tok/s
RTX 409024 GB1,008 GB/sYes — Q8_0~253 tok/s
RTX 309024 GB936 GB/sYes — Q8_0~235 tok/s
RX 7900 XTX24 GB960 GB/sYes — Q8_0~241 tok/s
RTX 508016 GB960 GB/sYes — Q8_0~241 tok/s
RTX 5070 Ti16 GB896 GB/sYes — Q8_0~225 tok/s
RTX 5060 Ti 16GB16 GB448 GB/sYes — Q8_0~112 tok/s
RTX 4080 SUPER16 GB736 GB/sYes — Q8_0~185 tok/s
RTX 4070 Ti SUPER16 GB672 GB/sYes — Q8_0~169 tok/s
RTX 4060 Ti 16GB16 GB288 GB/sYes — Q8_0~72 tok/s
RX 9070 XT16 GB645 GB/sYes — Q8_0~162 tok/s
RTX 507012 GB672 GB/sYes — Q8_0~169 tok/s
Arc B58012 GB456 GB/sYes — Q8_0~114 tok/s

Notice that VRAM and bandwidth do not move together. The RTX 4060 Ti 16GB holds as much as an RTX 4080 SUPER but reads it at 288 GB/s against 736 GB/s, so it will load this model and then generate at roughly a third the speed. Capacity decides whether it runs; bandwidth decides whether you enjoy using it.

Getting it running

Fastest path, using Ollama:

ollama run granite-4-0-micro

For control over quantisation and context, pull the GGUF directly and serve it with llama.cpp:

huggingface-cli download ibm-granite/granite-4.0-h-micro \
  --include "*Q4_K_M*.gguf" --local-dir ./models

llama-server -m ./models/*Q4_K_M*.gguf \
  --n-gpu-layers 999 \
  --ctx-size 8192

--n-gpu-layers 999 pushes everything onto the GPU; lower it until the model loads if you are short on memory. --ctx-size is worth tuning deliberately — this model supports up to 131K tokens, but the KV cache grows with it, and asking for the full window when you only need 8K can cost you several gigabytes for nothing.

Frequently asked questions

How much VRAM does Granite 4.0 Micro need?

About 3.5 GB at Q4_K_M with an 8K context window: 1.7 GB of weights plus KV cache and roughly 1 GB of runtime overhead. At Q8_0 it needs 5.0 GB, and at Q3_K_M it comes down to 3.2 GB.

What is the cheapest GPU that runs Granite 4.0 Micro?

The Arc B580 at 12 GB is the least expensive card that holds it at Q4_K_M, at around $249.

Can I run Granite 4.0 Micro on 8 GB of VRAM?

Yes — it fits at Q4_K_M with room for an 8K context.

Is Granite 4.0 Micro free to use commercially?

The weights are published openly on Hugging Face as ibm-granite/granite-4.0-h-micro, but the licence is set by the model's publisher and varies — some are Apache 2.0 or MIT, others carry usage restrictions or revenue thresholds. Check the licence file on the model card before deploying it commercially.

Does quantisation make the model worse?

Measurably, but far less than people expect down to Q4. Q6_K is close enough to FP16 that differences are hard to detect; Q4_K_M costs a small amount of accuracy on reasoning and structured output; below Q4 the degradation becomes obvious. Running a larger model at Q4 generally beats a smaller one at Q8.

Why is my speed lower than the estimate here?

These figures assume the whole model sits in VRAM and the GPU sustains its rated bandwidth. Real throughput drops if any layers are offloaded to system RAM, if your context is long enough that attention starts to dominate, or if the card is thermally throttling. Prompt processing is also compute-bound rather than bandwidth-bound and follows different limits.

How much disk space do I need for Granite 4.0 Micro?

Budget 2 GB for the Q4_K_M GGUF, or 4 GB for Q8_0. Download the specific quantisation you want rather than the whole repository — most GGUF repos hold every variant, and cloning all of them wastes a great deal of space.

Related