Views
No views yet
| Repo | Chip | SoC | Hexagon |
|---|---|---|---|
sd15-npu-8elite | Snapdragon 8 Elite | SM8750 | v79 |
sd15-npu-8gen3 | Snapdragon 8 Gen 3 | SM8650 | v75 |
unet.onnx + unet_qairt_context.bin # EPContext wrapper + Hexagon binary
text_encoder.onnx + text_encoder_qairt_context.bin
vae.onnx + vae_qairt_context.bin
quant.txt # w8a16 scales, read at load
tokenizer/{vocab.json, merges.txt}
soc_model.txt, htp_arch.txt, kind.txt.onnx files are tiny EPContext wrappers carrying the quantize/dequantize nodes;
the weights live in the _qairt_context.bin Hexagon binaries. Load them with ONNX
Runtime's C++ API — the Java API cannot express the uint16 tensors these require.quant.txt holds the w8a16 quantization scales, read at load rather than hardcoded,
so one engine can drive any chip's build.