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-Throughput Inference: Achieves up to 24,000 tokens/sec on Llama 3-8B with in-flight batching, paged KV cache, and CUDA graphs. - Quantization Support: Runs FP8, INT4 AWQ, and INT4 GPTQ quantized models for 2-4x faster inference and up to 75% memory reduction. - Multi-GPU Scaling: Supports tensor, pipeline, and expert parallelism across GPUs and nodes for models up to 405B parameters. - Production Serving: Ships an OpenAI-compatible API server with Prometheus metrics, health checks, and Kubernetes deployment patterns. - Use Case: Deploy Llama 3-70B on 4 A100 GPUs with FP8 quantization and serve chat completions to thousands of concurrent users through an OpenAI-compatible endpoint. ## Quick Start Use the tensorrt-llm skill to serve the Llama 3-8B model with FP8 quantization on my NVIDIA GPU and expose an OpenAI-compatible API endpoint.