Model Overview
- Model Architecture: GraniteMoeHybridForCausalLM
- Input: Text
- Output: Text
- Source Model: granite-4.0-h-tiny
- Supported Hardware: AMD EPYC (CPU inference)
- Preferred Operating System: Linux
- Inference Engine: vLLM v0.29.0
- Quantization Framework: LLM Compressor v0.13.0
- Quantization Method: 8-bit Weight, 8-bit Dynamic Activation Quantization (W8A8)
- Compatible Stack:
- ZenDNN v6.1.0
- ZenTorch v2.13.0.0
- PyTorch v2.13.0.0
- LLM Compressor v0.13.0
- vLLM v0.29.0
- Published with: LLM Compressor v0.13.0
This is a quantized version of granite-4.0-h-tiny created by AMD using LLM Compressor (compressed-tensors) for ZenDNN-optimized CPU inference.
Quantization
The model was quantized from granite-4.0-h-tiny using LLM Compressor via the Round-to-Nearest (RTN) algorithm. This reduces the model weights from 12.9 GiB to 6.6 GiB on disk (~49% reduction).
- Method: 8-bit Weight, 8-bit Dynamic Activation Quantization (W8A8)
- Config:
compressed-tensors, num_bits=8, type=int, symmetric=true
- Weights: INT8, symmetric, per-channel (static)
- Activations: INT8, symmetric, per-token (dynamic)
granite-4.0-h-tiny is a hybrid Mamba-MoE model: of its 40 layers, 4 are full-attention blocks and the other 36 are Mamba (linear-attention) blocks, and every layer carries a 64-expert MoE block alongside a shared MLP.
- Quantized: all 64 routed experts in every layer (
block_sparse_moe.experts.*.{gate,up,down}_proj), the shared MLP (shared_mlp.{input,output}_linear), the Mamba projections (mamba.{in,out}_proj), and self_attn.{q,k,v,o}_proj in the 4 full-attention layers.
- Kept in BF16: the MoE routers (
block_sparse_moe.router), the Mamba state-space internals that are not Linear layers (conv1d, A_log, D, dt_bias, and the gated mamba.norm), lm_head, embed_tokens, and the layer norms.
The recipe only needs two ignore entries. lm_head is standard, and the router is skipped because it is a tiny Linear whose logits decide expert assignment, where an 8-bit rounding error can flip the top-k selection and change which experts run. Note that the routed experts themselves are quantized here, which is what brings the footprint close to the full ~50% an INT8 pass should give.
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
from llmcompressor import oneshot
from llmcompressor.modifiers.quantization import QuantizationModifier
model_id = "ibm-granite/granite-4.0-h-tiny"
output_dir = "./granite-4.0-h-tiny-w8a8-llmcompressor"
# Step 1: Load the BF16 model and tokenizer.
model = AutoModelForCausalLM.from_pretrained(
model_id,
dtype=torch.bfloat16,
device_map="cpu",
trust_remote_code=True,
)
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
# Step 2: Define the W8A8 recipe. Experts, shared MLP, Mamba projections and
# attention are all quantized; only lm_head and the MoE router are skipped.
recipe = QuantizationModifier(
targets=["Linear"],
scheme="W8A8",
ignore=["lm_head", "re:.*block_sparse_moe.router"],
)
# Step 3: Apply quantization. W8A8 here is data-free (RTN), so no calibration
# dataset is needed.
oneshot(model=model, recipe=recipe)
# Step 4: Save in compressed-tensors int-quantized format.
model.save_pretrained(
output_dir,
quantization_format="int-quantized",
save_compressed=True,
)
tokenizer.save_pretrained(output_dir)
# Smoke test
input_ids = tokenizer("What is your favorite TV show?", return_tensors="pt").input_ids
with torch.no_grad():
output = model.generate(input_ids, max_new_tokens=20)
print(tokenizer.decode(output[0]))
Quick Start
Use with vLLM
from vllm import LLM, SamplingParams
model = LLM(
model="amd/granite-4.0-h-tiny-w8a8-llmcompressor",
dtype="bfloat16",
trust_remote_code=True,
)
sampling_params = SamplingParams(temperature=0.7, max_tokens=256)
outputs = model.generate(["Hello, how are you?"], sampling_params)
print(outputs[0].outputs[0].text)
Requirements
torch==2.13.0.0
zentorch==2.13.0.0
vllm==0.29.0
llmcompressor==0.13.0
OpenMP Setup
For optimal performance, set LD_PRELOAD with libomp.so (LLVM OpenMP) or libiomp5.so (Intel OpenMP):
# Using LLVM OpenMP (llvmopenmp)
export LD_PRELOAD=$(find /path/to/env -name "libomp.so" | head -1)
# Or using Intel OpenMP (libiomp)
export LD_PRELOAD=$(find /path/to/env -name "libiomp5.so" | head -1)
Note: Set LD_PRELOAD before launching vLLM or any inference script.
Evaluation
The model was evaluated against the BF16 (unquantized) baseline on standard benchmarks using lm-evaluation-harness with the vLLM engine.
| Benchmark |
BF16 Baseline |
W8A8 (this model) |
Recovery |
| GSM8K (5-shot) |
0.8643 |
0.8613 |
99.65% |
Evaluation Command
lm_eval \
--model vllm \
--model_args pretrained=amd/granite-4.0-h-tiny-w8a8-llmcompressor,dtype=bfloat16 \
--tasks gsm8k \
--batch_size auto \
--trust_remote_code \
--num_fewshot 5 \
--apply_chat_template \
--log_samples \
--gen_kwargs "max_gen_toks=2048" \
--output_path .
Limitations
- Version Lock: This model is compatible with ZenDNN v6.1.0 / ZenTorch v2.13.0.0 / PyTorch v2.13.0.0. It may not load correctly on other versions.
- CPU Only: This model is optimized for AMD EPYC CPU inference via ZenDNN. It is not intended for GPU inference.
- Hybrid Architecture: The Mamba state-space internals (
conv1d, A_log, D, dt_bias, gated norms) are not Linear layers and stay in BF16, so the INT8 speedup applies to the projections, experts and attention rather than to the full recurrent path.
License
This model is distributed under the same license as the source model. See the LICENSE file for details.
Modifications copyright (c) 2026 Advanced Micro Devices, Inc. All rights reserved.