Three advanced quantization schemes: SmoothQuant migrates activation outliers into weights via a mathematically equivalent transform — rewriting as
Y=(X⋅diag(s))⋅(diag(s)−1W) keeps the output unchanged but smooths the activation distribution so activations can go INT8 (W8A8); AWQ (Activation-aware Weight Quantization) identifies sensitive channels from activation statistics and protects the top 1% of important weight channels using only scale scaling (no training), achieving high-accuracy W4A16; FP8 offers two formats — E4M3 (4-bit exponent, 3-bit mantissa, higher precision) for forward/weights and E5M2 (5-bit exponent, 2-bit mantissa, wider range) for gradients/backward.