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 provides guidance for 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. - Multi-GPU Scaling: Configure tensor, pipeline, and expert parallelism to serve models from 8B to 405B parameters across single nodes or multi-node clusters. - Production Serving: Deploy an OpenAI-compatible API server with in-flight batching, Prometheus metrics, health checks, Kubernetes manifests, and autoscaling. - 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 Set up a TensorRT-LLM server to serve Llama 3-8B with FP8 quantization on my available NVIDIA GPUs and show me how to send a chat completion request to it.