What problem does it solve?
TensorRT-LLM eliminates slow, memory-heavy LLM inference by compiling optimized execution paths for NVIDIA GPUs, so your service delivers low latency and high throughput.
Core Features & Use Cases
- In-flight batching for higher utilization under mixed request lengths (faster tokens/sec without waiting for all sequences to finish).
- Paged KV cache to improve long-context memory efficiency and throughput stability.
- Quantization support (FP8/INT4/FP4) to run larger models with lower GPU memory and faster execution, with multi-GPU scaling via tensor/pipeline/expert parallelism.
- Use case: Deploy an Llama 3 model on A100/H100 with FP8 or INT4 and serve OpenAI-compatible
/v1/chat/completions for real-time production workloads.
Quick Start
Start a TensorRT-LLM server for your model by running: "trtllm-serve meta-llama/Meta-Llama-3-8B --tp_size 1 --max_batch_size 256 --max_num_tokens 4096".