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 configures NVIDIA TensorRT-LLM to compile and serve models with dramatically faster inference, lower memory footprint, and efficient multi-GPU scaling. ## Core Features & Use Cases - Quantized Inference: Run models in FP8, INT4 (AWQ/GPTQ), or FP4 for 2-4x faster generation and up to 75% memory reduction. - Production Serving: Launch an OpenAI-compatible API server with in-flight batching, paged KV cache, streaming, Prometheus metrics, and Kubernetes deployment manifests. - Multi-GPU Scaling: Configure tensor, pipeline, and expert parallelism to serve models from 8B to 405B parameters across multiple GPUs or nodes. - Use Case: Serve Llama 3-70B on 4 A100 GPUs with FP8 quantization and tensor parallelism, achieving over 10,000 tokens per second behind an OpenAI-compatible endpoint with autoscaling. ## Quick Start Use the tensorrt-llm skill to serve the Llama 3 8B model with FP8 quantization on my available GPUs and expose an OpenAI-compatible chat completions endpoint.