Qwen3 — Genai Bundle¶
Qwen3 (Qwen/Qwen3-0.6B) is a decoder-only LLM. To run it on the NPU with
onnxruntime-genai, the model is
exported as a bundle — a directory of cooperating ONNX graphs plus the
runtime metadata and tokenizer that onnxruntime-genai loads together:
| File | Role | Device | Precision |
|---|---|---|---|
ctx.onnx |
Transformer prefill graph (processes the prompt) | NPU (QNN or VitisAI) | w8a16 |
iter.onnx |
Transformer decode graph (one token per step) | NPU (QNN or VitisAI) | w8a16 |
embeddings.onnx |
Token embedding lookup | CPU | fp32 |
lm_head.onnx |
Final vocab projection | CPU | w4a32 |
genai_config.json + tokenizer |
onnxruntime-genai runtime metadata | — | — |
ctx.onnx and iter.onnx are the two sub-models of Qwen3's transformer-only
composite: prefill bakes in a context sequence length, decode is fixed to a
single token. The embedding table and vocab projection stay on CPU. Splitting the
model this way lets the compute-heavy transformer run on the selected NPU while
the memory-bound companions stay on CPU.
Prerequisites¶
- winml-cli installed and
winmlon your PATH. - A network connection to download Qwen3 weights from HuggingFace on first run.
- For NPU inference, a QNN (Qualcomm) or VitisAI (AMD) execution provider. CPU inference does not require either NPU provider.
Overall workflow¶
graph LR
A["winml build -m Qwen/Qwen3-0.6B --export-type optimized"] --> B[Genai bundle recipe]
B --> C[ctx.onnx / iter.onnx — NPU]
B --> D[embeddings.onnx — CPU]
B --> E[lm_head.onnx — CPU]
C --> F[genai_config.json + tokenizer]
D --> F
E --> F
F --> G[onnxruntime-genai]
Step 1: Build the bundle (one command)¶
--export-type optimized switches winml build from the stock per-model ONNX
output to the full genai bundle. It resolves --ep/--device like a normal
build — honoring an explicit value, otherwise probing the host — and builds the
recipe for that resolved target, so on an NPU host no flags are needed:
This builds (or reuses from cache) all four components and assembles them, writing
out/qwen3-bundle/genai_config.json alongside the ONNX graphs and tokenizer.
--output-dir is required — the bundle is a directory — and --use-cache is not
supported for bundles. The recipe supports CPU, QNN/NPU, and VitisAI/NPU;
other resolved targets fail fast. Pin the provider to select a target explicitly:
# Qualcomm Snapdragon NPU
winml build -m Qwen/Qwen3-0.6B -o out/qwen3-bundle \
--export-type optimized --ep qnn --device npu
# AMD Ryzen AI NPU
winml build -m Qwen/Qwen3-0.6B -o out/qwen3-bundle \
--export-type optimized --ep vitisai --device npu
The Qwen3 transformer's quantization scheme is fixed by its recipe (w8a16, the
scheme its NPU export is tuned for), so it is not overridable — passing a
--precision that differs from w8a16 is rejected rather than silently reverted.
The CPU companions likewise keep their bundle-standard precisions.
Force a clean rebuild of every component with --rebuild.
Backward-compatible shortcut
When --export-type is omitted, an explicit --ep qnn targeting the NPU
still routes a registered family to its bundle. The NPU target may be
explicit (--device npu) or resolved from auto — whether --device auto
is typed or --device is omitted:
winml build -m Qwen/Qwen3-0.6B -o out/qwen3-bundle --device npu --ep qnn
# or, letting device auto-detection pick the NPU (--device may be omitted):
winml build -m Qwen/Qwen3-0.6B -o out/qwen3-bundle --ep qnn
Qwen3 on any other target — CPU, GPU, or an auto-detected NPU without an
explicit --ep qnn — still produces the stock composite build. --export-type
generic always forces the stock build, even on the NPU. A pinned
--ep/--device that contradicts the recipe fails fast rather than silently
reverting.
Step 2: Tune context and prefill lengths (optional)¶
winml build uses the recipe defaults: context length (static KV cache) 2048
and prefill sequence length 64. To change those, use the equivalent developer
script, which exposes the extra knobs and delegates to the same builder:
uv run python scripts/qwen3.py export \
--device npu \
--output out/qwen3-bundle \
--max-cache-len 4096 \
--prefill-seq-len 128
The script also accepts --embeddings <onnx> and --lm-head <onnx> to reuse
pre-built companions (skipping their builds), and --force-rebuild to rebuild
everything from scratch. The developer script's --device npu shortcut targets
QNN; use winml build --ep vitisai --device npu for an AMD bundle.
Step 3: Run the bundle (generate text)¶
The assembled bundle runs through onnxruntime-genai. Benchmark prompt processing
and token generation on the NPU with winml perf:
# Qualcomm Snapdragon NPU
winml perf -m out/qwen3-bundle --runtime ort-genai --device npu --compile \
--compile-timeout 600 --max-new-tokens 20 --prompt "What is the capital of France?"
# AMD Ryzen AI NPU
winml perf -m out/qwen3-bundle --runtime ort-genai --device npu --ep vitisai --compile \
--compile-timeout 600 --max-new-tokens 20 --prompt "What is the capital of France?"
winml perf registers the selected WinML EP and runs the bundle's context and
iterator stages on that NPU, while the CPU companions handle the embedding
lookup and vocab projection. The command reports canonical GenAI phases:
session/native load, best-effort weight-upload estimate, cold-start TTFT/total,
request/model TTFT, prefill throughput, steady-state decode throughput, full
request latency, optional RAM/VRAM deltas, and a results JSON under
~/.cache/winml/perf/. Exact weight-upload telemetry is currently null because
onnxruntime-genai does not expose it; the estimate is labeled in JSON.
One command from a model id (auto-build)
winml perf --runtime ort-genai also accepts a HuggingFace model id directly.
When -m is not a prebuilt bundle directory, it builds the genai bundle on demand
(into ~/.cache/winml/, reused on later runs) and then benchmarks it — no separate
winml build step:
winml perf -m Qwen/Qwen3-0.6B --runtime ort-genai --compile \
--compile-timeout 600 --max-new-tokens 20 --prompt "What is the capital of France?"
Without a device or EP override, the model-ID shortcut targets QNN/NPU.
An explicit --device or --ep also selects the transformer build target,
not just the inference target. For example, a CPU run does not require QNN:
winml perf -m Qwen/Qwen3-0.6B --runtime ort-genai --device cpu --no-compile \
--warmup 2 --iterations 10 --max-new-tokens 20 \
--prompt "What is the capital of France?"
Use --ep vitisai --device npu --compile for VitisAI. Auto-building rejects
targets not supported by the recipe; a prebuilt bundle can still be passed
to perf for a runtime override. Explicit targets have
separate bundle caches, so a CPU run never reuses a QNN build. CPU companions
retain their recipe precisions. -o/--output stays the results-JSON path,
and --rebuild forces a fresh bundle for the selected target.
--compile is required on the NPU
The genai NPU path needs --compile (EPContext pre-compilation). The context
and iterator stages are compiled together when they use the same provider
options, allowing both EPContext graphs to reference one shared weight
.bin. Without --compile, onnxruntime-genai compiles the NPU context
in-memory at model-creation time, which can fault before the first token.
Use --compile-timeout <seconds> to bound compilation before falling back
to the original ONNX.
Known caveat: non-zero exit on teardown
On Windows ARM64, after generation completes and the results JSON is saved, the
process may exit with a native 0xC0000374 (heap corruption) during
onnxruntime-genai / QNN-EP teardown. This fires after all work is done — the
generated tokens and the saved perf metrics are unaffected — and originates in the
native runtime below winml-cli, not in the bundle or the build.
How it maps to the composite system¶
The bundle reuses winml-cli's existing composite-model machinery — it does not add a parallel export path:
- The transformer (
ctx+iter) is the registeredqwen3_transformer_onlycomposite, built for the NPU withw8a16precision. embeddingsandlm_headare built as ordinary single models on CPU.- A final assembly step applies the Qwen3 ONNX passes, writes the selected NPU stage
session options, and emits
genai_config.json.
Every model-specific value lives in a data-only genai-bundle recipe registered
by the Qwen3 model package, so the winml build routing itself stays
architecture-agnostic. Registering a recipe for another decoder family is all that
is needed to give it the same one-command bundle build.
See also¶
- winml build — full flag reference and the genai-bundle trigger
- CLIP — Composite Models — the composite-model pattern this builds on
- Supported Models — validated architectures
- Output Layout — what each output file contains