Qwen3-14B-Instruct-da8w8-torchao-v0.16.0

Model Overview

  • Model Architecture: Qwen3ForCausalLM
    • Input: Text
    • Output: Text
  • Source Model: Qwen3-14B-Instruct
  • Supported Hardware: AMD EPYC (CPU inference)
  • Preferred Operating System: Linux
  • Inference Engine: vLLM v0.18.0
  • Quantization Framework: TorchAO v0.16.0
  • Quantization Method: 8-bit Dynamic Activation, 8-bit Weight Quantization, Symmetric
  • Compatible Stack:
    • ZenDNN v5.2.1
    • ZenTorch v5.2.1
    • PyTorch v2.10.0
    • TorchAO v0.16.0
    • vLLM v0.18.0

This is a quantized version of Qwen3-14B-Instruct created by AMD using TorchAO for ZenDNN-optimized CPU inference.

Quantization

The model was produced using torchao as shown in the example below. Both activations and weights are quantized to INT8 with symmetric mapping; activation scales are computed dynamically at runtime per token.

import os
import torch
from transformers import TorchAoConfig, AutoModelForCausalLM, AutoTokenizer
from torchao.quantization import Int8DynamicActivationInt8WeightConfig
from torchao.quantization.quant_primitives import MappingType

model_name = "OpenPipe/Qwen3-14B-Instruct"
output_dir = "./Qwen3-14B-Instruct-da8w8-torchao-v0.16.0"
os.makedirs(output_dir, exist_ok=True)
modules_to_skip = ["lm_head"]

# Step 1: Create quantization config
quantization_config = TorchAoConfig(
    Int8DynamicActivationInt8WeightConfig(
        version=2,
        act_mapping_type=MappingType.SYMMETRIC,
    ),
    modules_to_not_convert=modules_to_skip,
)

# Step 2: Load and quantize the model
quantized_model = AutoModelForCausalLM.from_pretrained(
    model_name,
    dtype=torch.bfloat16,
    device_map="cpu",
    quantization_config=quantization_config,
    trust_remote_code=True,
)

# Step 3: Save the quantized model (normal save; no in-place qdata change)
quantized_model.save_pretrained(output_dir, safe_serialization=False)

# Step 4: Save the tokenizer
tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
tokenizer.save_pretrained(output_dir)

# Smoke test
input_text = "What are we having for dinner?"
input_ids = tokenizer(input_text, return_tensors="pt")
output = quantized_model.generate(
    **input_ids, max_new_tokens=30, cache_implementation="static"
)
print(tokenizer.decode(output[0], skip_special_tokens=True))

Notes

  • safe_serialization=False is required because torchao's quantized tensor subclasses cannot currently be serialized in the safetensors format.
  • lm_head is excluded from quantization to preserve final-projection precision.

Quick Start

Requirements

pip install --extra-index-url https://download.pytorch.org/whl/cpu \
            --extra-index-url https://wheels.vllm.ai/cpu/ \
    torch==2.10.0+cpu \
    vllm==0.18.0 \
    torchao==0.16.0 \
    transformers \
    huggingface_hub

Recommended environment variables

# vLLM CPU runtime tuning
export VLLM_CPU_KVCACHE_SPACE=40         # GB of host memory for KV cache
export VLLM_CPU_OMP_THREADS_BIND="0-63"   # NUMA-local cores

# TorchInductor
export TORCHINDUCTOR_FREEZING=1
export TORCHINDUCTOR_AUTOGRAD_CACHE=1
export TORCHINDUCTOR_CACHE_DIR="./.torchinductor_cache/Qwen3-14B-Instruct-da8w8-torchao-v0.16.0"

# Required CPU runtime libraries
export LD_PRELOAD="<path to lib>/libtcmalloc_minimal.so.4:<path to lib>/libiomp5.so${LD_PRELOAD:+:$LD_PRELOAD}"

Locate the libraries with find / -name 'libtcmalloc_minimal.so.4' and find / -name 'libiomp5.so', then substitute the resulting directory for <path to lib>.

Evaluation

The model was evaluated against the BF16 (unquantized) baseline using lm-evaluation-harness with the vLLM engine.

Benchmark BF16 Baseline DA8W8 (this model) Dynamic Quant Difference (baseline: BF16)
GSM8K (5-shot, exact-match strict) 0.8795 0.8855 +0.68%

Evaluation Command

mkdir -p "${TORCHINDUCTOR_CACHE_DIR}"

lm_eval \
    --model vllm \
    --model_args pretrained=amd/Qwen3-14B-Instruct-da8w8-torchao-v0.16.0,tokenizer=OpenPipe/Qwen3-14B-Instruct,dtype=bfloat16 \
    --tasks gsm8k \
    --batch_size auto \
    --trust_remote_code \
    --num_fewshot 5 \
    --log_samples \
    --apply_chat_template \
    --fewshot_as_multiturn \
    --gen_kwargs "temperature=0.6,top_p=0.95,top_k=201" \
    --output_path .

Limitations

  • Version Lock: This model is quantized with TorchAO v0.16.0 and is compatible only with PyTorch v2.10.0 / ZenDNN v5.2.1. It will not load correctly on other PyTorch versions.
  • CPU Only: This model is optimized for AMD EPYC CPU inference via ZenDNN. It is not intended for GPU inference.

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.

Downloads last month
1,118
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for amd/Qwen3-14B-Instruct-da8w8-torchao-v0.16.0

Quantized
(2)
this model

Collection including amd/Qwen3-14B-Instruct-da8w8-torchao-v0.16.0