Views
No views yet
qaihub-public-assets.s3.amazonaws.com
are tied to a release version (currently v0.52.0) that may rotate.| File | Size | Purpose |
|---|---|---|
text_encoder.onnx | 733 B | EPContext wrapper, references text_encoder_qairt_context.bin |
text_encoder_qairt_context.bin | 156 MB | QAIRT 2.42 HTP context binary, w8a16 |
unet.onnx | 9.4 KB | EPContext wrapper, references unet_qairt_context.bin |
unet_qairt_context.bin | 841 MB | UNet w/ 13 ControlNet residual inputs, w8a16 |
controlnet.onnx | 7.4 KB | EPContext wrapper, references controlnet_qairt_context.bin |
controlnet_qairt_context.bin | 352 MB | ControlNet-Canny encoder, w8a16 |
vae.onnx | 873 B | EPContext wrapper, references vae_qairt_context.bin |
vae_qairt_context.bin | 62 MB | VAE decoder, w8a16 |
metadata.json | 17 KB | Input/output shapes + quantization scale/zero-point per tensor |
.onnx files are tiny EPContext wrappers — they reference the matching
*_qairt_context.bin and tell ORT's QNN Execution Provider to dispatch
inference to the Hexagon V75 backend. Both files of a pair must live
side-by-side at load time.1val options = OrtSession.SessionOptions().apply {
2 addQnn(mapOf("backend_path" to "libQnnHtp.so", "htp_arch" to "75"))
3}
4val unet = env.createSession("unet.onnx", options)sd15-controlnet-canny-fp16), these
take uint16 quantized tensors in NHWC layout, with per-tensor
scale and zero_point in metadata.json. Host code must:[1, 4, 64, 64] → [1, 64, 64, 4]).metadata.json enumerates every input/output shape, dtype, and
quantization parameters. See the Qualcomm AI Hub
ControlNet-Canny model card
for the full pre/post-processing reference.Stable Diffusion v1.5 weights
CompVis (https://github.com/CompVis/stable-diffusion)
CreativeML Open RAIL-M
│
▼
ControlNet-Canny adapter
lllyasviel (https://github.com/lllyasviel/ControlNet)
Apache 2.0
│
▼
Quantization (w8a16) + QAIRT 2.42 HTP compilation for V75
Qualcomm AI Hub (https://aihub.qualcomm.com)
Use restrictions per Qualcomm AI Hub Terms — see LICENSE / ATTRIBUTION.md
│
▼
This repository
sona-forge mirror, no further modifications2.42.0.251225135753_1932951.24.3w8a16 (8-bit weights, 16-bit activations)_8gen2 variant_8elite variantqaihub-public-assets.s3.us-west-2.amazonaws.com or recompile via the
Qualcomm AI Hub Python API.