Views
No views yet

| File | Description |
|---|---|
z_image_int8_convrot.safetensors | Z-Image Base, INT8 + ConvRot |
z_image_turbo_int8_convrot.safetensors | Z-Image Turbo, INT8 + ConvRot |
qwen_3_4b_int8_convrot.safetensors | Qwen 3 4B text encoder, INT8 + ConvRot |
--scaling_mode row, not tensor. Tensor-wise scaling computes a single scale factor for an entire weight matrix; even a small number of outlier values forces that global scale to widen, coarsening quantization precision across the rest of the matrix. In testing, this combination (ConvRot + tensor-wise scaling) produced visibly fuzzy, detail-smoothed output. Switching to row-wise scaling — which computes an independent scale per row, isolating outliers to the rows that contain them — resolved this and produced output sharpness matching or exceeding plain INT8 row-wise quantization.ctq -i <model>.safetensors -o <model>-int8-convrot.safetensors \
--int8 --scaling_mode row --simple --low-memory \
--convrot --convrot-group-size 64 \
--zimage --comfy_quant --save-quant-metadata--zimage (no architecture-specific preset needed for this text encoder; verify its native hidden dimensions divide cleanly by the chosen group size before quantizing).comfy_kitchen runtime requires the ConvRot Hadamard block size to be a power of 4 (4, 16, 64, 256, 1024…), not merely a power of 2. A group size of 64 was chosen because it divides cleanly into every 2D weight dimension in the Z-Image architecture, requiring no manual layer exclusions.z_image_int8_convrot.safetensors or z_image_turbo_int8_convrot.safetensors with a standard UNETLoader node, and qwen_3_4b_int8_convrot.safetensors with a CLIPLoader node (type: your Z-Image workflow's text encoder type). No special ConvRot-aware nodes are required; the rotation metadata is embedded via --save-quant-metadata and read automatically by ComfyUI's mixed-precision quantization ops.--low-memory streaming conversion.