Qwen3-14B LiteRT-LM Models
This repository contains LiteRT-LM variants of Qwen/Qwen3-14B optimized for on-device text generation.
Available Artifacts
| File | Quantization | Context | Size |
|---|---|---:|---:|
| qwen3_14b_channelwise_int8_float32kv.litertlm | channel-wise INT8 weights, float32 KV | - | 14.93 GB |
| qwen3_14b_mixed_int4.litertlm | TorchAO mixed INT4, float KV | 2048 | 8254.88 MiB |
Conversion Notes
The mixed INT4 .litertlm artifact was produced with a TorchAO-based quantize-first recipe from the original Hugging Face checkpoint. This is a mixed quantization layout rather than a uniform all-INT4 model: eligible linear projection weights are stored as blockwise INT4 with group size 32 and floating-point scales, token embedding weights use weight-only INT8 quantization, and normalization/reduction paths plus KV cache tensors remain floating point.
The mixed INT4 bundle also uses LiteRT-LM StableHLO composite ops for attention/cache execution, including odml.runtime_bmm and odml.cache_update.
Desktop Smoke Benchmark
Benchmarked on AMD Radeon AI PRO R9700 via LiteRT-LM WebGPU with 256 prefill tokens and 32 decode tokens. No phone benchmark is reported for this size.
Hardware benchmark disclosure: Results were measured by us on retail devices purchased through normal channels. These results are not affiliated with, sponsored by, endorsed by, or verified by Samsung, vivo, Qualcomm, MediaTek, Google, MLCommons, or Hugging Face. Results depend on device SKU, OS build, thermal state, battery mode, backend, model quantization, runtime version, and benchmark settings.
| Backend | Prefill (tok/s) | Decode (tok/s) | TTFT (s) | Peak Private Footprint |
|---|---:|---:|---:|---:|
| GPU WebGPU | 481.88 | 50.20 | 0.55 | 3196 MB |
Try It
Install uv and run:
uv tool install litert-lm
uvx litert-lm run --from-huggingface-repo=litert-community/Qwen3-14B qwen3_14b_mixed_int4.litertlm --prompt="What is the capital of France?"
Integration
Ready to integrate this into your product? Get started in the LiteRT-LM documentation.
Citation
@misc{qwen3technicalreport,
title={Qwen3 Technical Report},
author={Qwen Team},
year={2025},
eprint={2505.09388},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2505.09388},
}