Perplexity is the wrong instrument
Perplexity is the default quantization metric because it is cheap, needs no labels, and produces a single number. It is also close to useless for the decision you are making.
The problem is averaging. Perplexity measures how surprised the model is by each token in a corpus, then averages. The overwhelming majority of tokens in any text are easy: function words, continuations of common phrases, the second half of a name. A model that has lost real capability still predicts those perfectly, so they dominate the average and hide the loss.
Quantization damage concentrates in exactly the opposite place. It shows up on the decisions that were marginal to begin with, where the correct token was winning by a small margin and a little numerical noise flips it.
The practical consequence is a trap that catches people repeatedly. A quantized model can show a perplexity increase of a fraction of a percent and lose a large share of its accuracy on a task that matters. Reporting the perplexity delta is not evidence of safety.

