Skip to main content

Stack target

TechniqueTriggerWinPlan
FlashAttention 3Hopper or Blackwell GPUsFaster attention kernelsCore
FP8 dynamic quantizationCompatible GPU and modelLower latency and memoryAll plans where safe
AWQ or GPTQ INT4Compatible checkpointsLower memory footprintAll plans where safe
Chunked prefillLong promptsSmoother time to first tokenAll plans
Prefix cacheRepeated promptsFaster repeated-prefix requestsAll plans
Speculative decodingCompatible draft pathLower generation latencyCore
MLA backendDeepSeek and Kimi-style architecturesSmaller KV cacheCore
Expert parallelMoE models on multi-GPU deploymentsHigher MoE throughputCore
Disaggregated prefill and decodeHigh-throughput deploymentsLower tail latencyEnterprise
Multi-LoRA routingAdapter workloadsPer-tenant adapter servingCore

Detection, routing, and application

DecisionSelection ruleRuntime behavior
Attention backendModel architecture and GPU familyChooses the fastest compatible attention path
QuantizationModel format, GPU, and quality targetSelects fp8, awq, gptq, or fp16 baseline
SpeculationBatch size and draft availabilityUses draft decoding only when a compatible path exists
Expert parallelMoE model and multi-GPU deploymentEnables expert-parallel serving where supported
Prefix cacheRepeated-prefix workloadEnables cache settings in generated runtime files

Verification

  1. The plan should name each selected technique and the reason it applies.
  2. The benchmark response should include effective launch settings for attention, quantization, speculation, and cache.
  3. The Optimization tab should show measured latency, throughput, cost, and quality for the promoted variant.
  4. Generated deployment files should preserve the same runtime settings.

Rollback

constraints.customerOverrides = {
  skipTechniques: ["speculation"],
};
Other common rollback controls:
constraints.customerOverrides = {
  skipTechniques: ["wide_ep"],
};

constraints.customerOverrides = {
  forceQuant: "none",
};
Hard bans and quality gates still apply even when a technique is forced.

Availability notes

  • FP8 requires a compatible GPU and backend.
  • Speculative decoding depends on a compatible draft path for the selected model.
  • Expert-parallel and disaggregated serving depend on deployment topology.
  • Multi-LoRA routing depends on adapter availability and runtime support.