Ask for it when you want it
Say so directly:What runs instead
Excluding quantization does not exclude optimization. Everything that changes how the model is served, rather than what the model is, still runs:- Serving engine and runtime selection
- Batching, prefill scheduling, prefix caching, and memory headroom tuning
- Lossless FP16 KV cache tuning
- GPU selection and placement
- Speculative decoding, which is output-identical when its equivalence check passes
The plan says which way it went
You never have to infer what happened. Exactly one of two lines appears in the plan you read before accepting it. When quantization is in the plan, the lane carries a Quantization basis line naming the condition that permitted it:The same rule covers the rest
Lossy KV cache compression changes attention arithmetic, so compressed KV dtypes are output-affecting and default to off under this same policy. When they are excluded the run says so, and it says that lossless FP16 KV tuning still runs. The KV lane is never skipped, only its lossy half. Non-LLM runs apply the rule per technique family. Every technique declares whether it is lossless by construction or requires measured quality, and a family counts as output-changing when any of its members does. Output-changing families are excluded from the default plan, and the plan’s adjustments section names every family it excluded, so a new technique cannot quietly join the default plan. When a family is permitted, its lane states why it is running, and each candidate still has to pass its own measured quality gate in that modality’s own vocabulary. Where no score was recorded, the run says not measured rather than assuming a pass.Related
Optimization runs
How candidates are searched and ranked.
Run outcomes
The quality verdict every run carries.
Benchmark reports
Named public benchmarks against a settled winner.