Precision (fp16 vs fp32)
The single biggest lever is which model variant is deployed: fp16 is roughly 3× faster than fp32 on the same GPU, for the same workload (benchmarked on an A10G-class GPU). This is a deployment-time choice, not a per-request option — it depends on which image/artifact was built and deployed. See On-premise deployment and AWS SageMaker for choosing the fp16 build.Batching (on-premise / self-hosted)
The server auto-batches concurrent requests before running them through the GPU. These env vars control that behavior:
In practice, once the GPU is saturated, tuning these away from their defaults has little effect — they matter mainly if requests are arriving faster than the GPU can drain them. Set them with
-e when starting the container; see Environment variables.

