What problem does it solve? Deploying large language models in production often suffers from high latency, low throughput, and excessive GPU memory consumption when using standard PyTorch inference. This Skill guides you through compiling and serving LLMs with NVIDIA TensorRT-LLM to achieve dramatically faster inference on NVIDIA hardware. ## Core Features & Use Cases - Quantized Inference: Run models in FP8, INT4 (AWQ/GPTQ), or FP4 to cut memory usage by 50-75% and multiply throughput. - Production Serving: Launch an OpenAI-compatible API server with trtllm-serve, including in-flight batching, streaming, Prometheus metrics, and Kubernetes deployment patterns. - Multi-GPU Scaling: Configure tensor, pipeline, and expert parallelism to serve models from 8B up to 405B parameters across multiple GPUs and nodes. - Use Case: Serve Llama 3-70B on 4 A100 GPUs with FP8 quantization and tensor parallelism, exposing an OpenAI-compatible endpoint that handles hundreds of concurrent requests with in-flight batching. ## Quick Start Use the tensorrt-llm skill to serve Llama 3-8B with an OpenAI-compatible API on my NVIDIA GPU.