8-bit affine-quantized MLX weights for NVIDIA's
parakeet-unified-en-0.6b
Cache-Aware FastConformer-RNNT, for the witness MLX C++ engine on Apple Silicon.
Only the linear / projection matmuls are quantized (group size 64, affine):
encoder FFN + attention + pointwise convs, the subsampling output projection,
the RNNT prediction LSTM + embedding, and the joint network. Conv2d
subsampling, depthwise conv, all norms / biases / batch-norm stats, and the
relative-position bias vectors stay dense fp32 (the engine reads them directly).
Why int8
The autoregressive RNNT decode is a batch-1, memory-bandwidth-bound GEMV, and
at typical utterance lengths the encoder is partly weight-bandwidth-bound too —
so halving the weight bytes read per step is a latency win on Apple apple9
(M3/M4), not just a footprint win. WER is unchanged from dense.