What problem does it solve? Serving large language models in production with PyTorch is slow and expensive, often failing to meet throughput and latency targets on NVIDIA GPU infrastructure. ## Core Features & Use Cases - High-Performance Inference: Achieves up to 100x faster inference than PyTorch using in-flight batching, paged KV cache, Flash Attention, and CUDA graphs. - Quantization Support: Runs FP8, INT4 (AWQ/GPTQ), and FP4 quantized models for 2-4x speedups and major memory savings. - Multi-GPU & Production Serving: Scales models like Llama 3-405B across GPUs and nodes with tensor/pipeline/expert parallelism, and serves them via an OpenAI-compatible API with Prometheus metrics and Kubernetes deployment patterns. - Use Case: Deploy Llama 3-70B on 4 A100 GPUs with FP8 quantization and trtllm-serve to handle thousands of concurrent chat requests at 10,000+ tokens/sec. ## Quick Start Deploy the Llama 3-8B model as an OpenAI-compatible API server on my NVIDIA GPUs using TensorRT-LLM with FP8 quantization.