Zenaique
Glossary · Production

TensorRT-LLM

Also known as: TRT-LLM

NVIDIA's compiled inference engine: highest throughput on NVIDIA GPUs, with longer build and iteration time than vLLM.

NVIDIA's high-performance LLM inference engine that compiles models to optimized CUDA kernels with kernel fusion, in-flight batching, and FP8/INT4 quantization. Targets maximum throughput on NVIDIA GPUs.

In practice

The throughput champion if you're stuck on NVIDIA. Senior infra interviews probe vLLM vs TensorRT-LLM trade-offs (iteration speed vs perf).

How it compares

TensorRT-LLM is a compiled engine optimized for max throughput; vLLM is a Python serving engine with faster iteration and PagedAttention.

Related topics

Related terms