AIAny
AI Deploy2023
Icon for item

TensorRT-LLM

Compiles LLMs into optimized TensorRT inference engines for NVIDIA GPUs via a Python API. Layers in kernel fusion, quantization, paged attention, KV caching, and continuous in-flight batching, scaling from a single GPU to multi-node deployments.

Introduction

The hard part of serving an LLM isn't running it once — it's keeping a GPU saturated when requests arrive at random lengths and times. This toolkit treats inference as a compilation problem: you describe a model in Python, and it lowers that down to a hardware-specific TensorRT engine plus a runtime that schedules requests aggressively to keep the silicon busy.

What Sets It Apart
  • Continuous in-flight batching schedules new requests into a running batch instead of waiting for the slowest sequence to finish, so throughput stays high under mixed-length traffic rather than collapsing to the worst case.
  • Paged attention and KV-cache management let many sequences share GPU memory without static padding, raising the number of concurrent requests a card can hold.
  • Quantization (down to FP8/INT4 on supported hardware) and kernel fusion cut both latency and memory, trading a controlled accuracy hit for materially cheaper serving.
  • Built-in tensor/pipeline parallelism spans a single GPU up to multi-node clusters using the same API, so scaling out is a config change, not a rewrite.
Who It's For

Great fit if you serve open models at scale on NVIDIA hardware and need to squeeze peak throughput and lowest cost-per-token out of each card, especially paired with Triton for production. Look elsewhere if you run non-NVIDIA accelerators, want zero-config local chat, or value portability over hardware-specific tuning — the engine-build step and CUDA coupling are the price of the performance.

Information

Categories

More Items

GitHub
AI Deploy2026

Provides reusable Docker compose files, scripts and benchmarked configs to serve modern LLMs (Qwen, Gemma, etc.) on 1–2 NVIDIA RTX 3090/4090/5090 GPUs. Multi-engine (vLLM, llama.cpp, ik_llama), measured TPS/context tradeoffs, and validated single/dual‑GPU recipes.

GitHub
AI Deploy2023

Provides a unified platform for AI development and deployment, including the MAX serving framework and the Mojo systems programming language for writing kernels. Offers an OpenAI-compatible inference endpoint, Mojo-written CPU/GPU kernels, and tools to run hundreds of open models across diverse hardware without vendor lock-in.

GitHub
AI Deploy2026

Runs local LLMs on Apple Silicon using native MTP speculative decoding to accelerate token generation while preserving the model's output distribution. Leverages the model's own MTP heads with batched verification and exact rejection sampling; ships with a Mac app, CLI, local OpenAI/Anthropic-compatible server, auto-tune, and Forge for building/verifying MTP adapters.