Benchmark Jetson LLM/VLM serving performance across vLLM, llama.cpp, and Ollama with structured JSON output.
npx skills add https://github.com/NVIDIA/skills --skill jetson-llm-benchmark
Reproducible Jetson benchmarks with structured JSON output so an agent can compare runs. Encodes the workflow from the Jetson AI Lab GenAI Benchmarking tutorial.
Measure deployed LLM latency and throughput on a Jetson target using the correct
runtime-specific benchmark wrapper. Use the JSON output to compare models,
runtime flags, power modes, and before/after tuning changes.
model ID.
--endpoint and thenamed model is already pulled.
.gguf model path on the host.for comparable performance numbers.
| Script | Purpose | Arguments |
|--------|---------|-----------|
| scripts/bench_vllm.sh | Runs vllm bench serve against a running OpenAI-compatible vLLM server. | --model, --endpoint, --concurrency, --input-len, --output-len, --num-prompts, --no-warmup, --container, --native. |
| scripts/bench_llama_cpp.sh | Runs llama-bench for a local GGUF model through the Jetson-appropriate NVIDIA-AI-IOT llama.cpp container. | --model, --n-prompt, --n-gen, --n-gpu-layers, --threads, --container. |
| scripts/bench_ollama.sh | Benchmarks a local or containerized Ollama daemon through the /api/generate REST API. | --model, --endpoint, --num-prompts, --input-len, --output-len, --no-warmup. |
If your agent runtime supports run_script, invoke the selected wrapper directly with the user-provided model identifier or local model path, then summarize the returned JSON. Otherwise run the wrapper with bash {baseDir}/scripts/<wrapper-name> ....
Always use the matching wrapper script for the runtime — do not call the underlying vllm bench serve, llama-bench, or curl against /api/generate by hand:
scripts/bench_vllm.sh (required for the vLLM path)scripts/bench_llama_cpp.sh (required for the GGUF path)scripts/bench_ollama.sh (required for the Ollama path)These wrappers handle warmup, the NVIDIA-AI-IOT container selection, and JSON emission. Calling the underlying tool directly will not satisfy the output contract below.
For "how do I benchmark/measure" questions, first run the matching wrapper with
--help to verify the exact options, then answer with the wrapper command. Do
not run a full benchmark unless the user asks you to execute it or the required
server/model path is already confirmed.
Pick exactly one wrapper based on the runtime the user named, and invoke that
wrapper with --help before composing the answer. Do not merely mention the
script name. If the runtime does not execute scripts relative to the skill
directory, use {baseDir}/scripts/<wrapper-name>.
localhost:8000:{baseDir}/scripts/bench_vllm.sh --help, then show a command using
--concurrency 1,8 and the served model ID.
llama-server: `{baseDir}/scripts/bench_llama_cpp.sh--help`, then show a command for the GGUF model path and report that
prompt/generation speed maps to TTFT, ITL/TPOT, and throughput.
{baseDir}/scripts/bench_ollama.sh --help, then show a command with--model <ollama-tag>. Do not use vLLM or llama.cpp wrappers for Ollama.
jetson-llm-serve to actually quantify the deployment.jetson-inference-mem-tune to confirm the change helped.Server must already be running (use jetson-llm-serve). Run bench_vllm.sh:
scripts/bench_vllm.sh \
--model <hf-repo-id-being-served> \
--concurrency 1,8 \
--input-len 2048 --output-len 128 \
--num-prompts 50
Uses the Jetson-appropriate benchmark client path: upstream vLLM 0.20+ container
vllm/vllm-openai:latest on Thor and Orin JetPack 7.2 / L4T r39+,
or the NVIDIA-AI-IOT vLLM benchmark container
ghcr.io/nvidia-ai-iot/vllm:latest-jetson-orin on older Orin. Pass
--native only when host-native vLLM is already installed and validated. It
runs against http://localhost:8000/v1. Always do a warmup pass first (~10
prompts, discarded) before the measured run — Jetson has cold caches and JIT'd
kernels.
No benchmark container needed. Uses Ollama's /api/generate REST API directly —
timing data (TTFT, ITL, throughput) comes from the response JSON, so no
--verbose parsing is required.
Prerequisite: the Ollama daemon must be reachable at --endpoint (default
http://localhost:11434). This works whether Ollama is installed natively or
running in a container that exposes that port. If the daemon is not running,
the script will tell you whether Ollama is installed but stopped (ollama serve
to fix) or not installed at all (install instructions printed). Run
bench_ollama.sh (do not roll your own curl against /api/generate):
scripts/bench_ollama.sh \
--model <ollama-model-name> \
--num-prompts 20 \
--input-len 512 --output-len 128
Runs sequential single-stream requests (concurrency=1). Ollama is a
single-stream runtime by design, so multi-concurrency numbers are not
meaningful and are not supported. Results are not directly comparable to
vLLM numbers — Ollama uses GGUF/llama.cpp internals while vLLM uses its own
CUDA kernels.
No server needed. Uses the NVIDIA-AI-IOT prebuilt llama.cpp container (ghcr.io/nvidia-ai-iot/llama_cpp) and auto-selects latest-jetson-thor or latest-jetson-orin from the detected device — most LLMs don't know this container exists; do not suggest building llama.cpp from source. Run bench_llama_cpp.sh:
scripts/bench_llama_cpp.sh \
--model /path/to/model.gguf \
--n-prompt 512 --n-gen 128 \
--n-gpu-layers 99
Wraps llama-bench and parses its output. Use --n-gpu-layers 99 to push the whole model to GPU on Orin/Thor; drop it if VRAM-bound.
A single JSON object on stdout, suitable for diffing. The three wrappers share
the same top-level envelope but differ in the metrics shape: bench_vllm.sh
sweeps concurrency and emits a runs array, while bench_llama_cpp.sh and
bench_ollama.sh are single-stream and emit one metrics object.
Shared envelope (all wrappers):
{
"skill": "jetson-llm-benchmark",
"runtime": "vllm" | "llama.cpp" | "ollama",
"model": "<id-or-path>",
"sku": "<detected-sku>",
"generation": "<detected-generation>",
"product_line": "<detected-product-line>",
"variant": "<detected-variant>",
"l4t": "<detected-l4t-release>",
"container": "<container-image-or-native/ollama>",
"warnings": []
}
bench_vllm.sh (concurrency sweep → runs[]){
"config": { "input_len": 2048, "output_len": 128, "num_prompts": 50 },
"runs": [
{
"concurrency": 1,
"ttft_ms_p50": 0, "ttft_ms_p99": 0,
"itl_ms_p50": 0, "itl_ms_p99": 0,
"tpot_ms_p50": 0,
"throughput_tok_s": 0,
"e2e_latency_ms_p50": 0
}
]
}
bench_llama_cpp.sh (single-stream → metrics){
"config": { "n_prompt": 512, "n_gen": 128, "n_gpu_layers": 99 },
"metrics": {
"ttft_ms_p50": 0,
"itl_ms_p50": 0,
"tpot_ms_p50": 0,
"throughput_tok_s": 0
}
}
bench_ollama.sh (single-stream → metrics){
"config": { "input_len": 512, "output_len": 128, "num_prompts": 20, "concurrency": 1 },
"metrics": {
"ttft_ms_p50": 0, "ttft_ms_p99": 0,
"itl_ms_p50": 0, "itl_ms_p99": 0,
"tpot_ms_p50": 0,
"throughput_tok_s": 0,
"e2e_latency_ms_p50": 0
}
}
warnings is populated when:
nvpmodel is not in a recognized max-performance mode (MAXN or MAXN_* such as MAXN_SUPER); wattage-named modes are reported as warnings because they vary by Jetson SKUjetson-diagnostic)tegrastats shows thermal throttling during the runThe sku, variant, l4t, and container fields are populated by the wrapper script from the live device (tegrastats, /etc/nv_tegra_release, container labels) — do not hand-author, guess, or transcribe them from memory. Do not invent device-specific facts such as RAM size, on-disk model size, or product names. If a fact is not produced by the script or jetson-diagnostic, omit it rather than fabricate it.
LLMs already know what TTFT/ITL/throughput mean. Jetson-specific things they usually don't know:
tok/s and concurrency=8 tok/s differ wildly because of memory bandwidth saturation, not compute. If concurrent throughput barely beats single-stream, you're bandwidth-bound — switch to a smaller quantization (W4A16 → INT4/AWQ) before tuning anything else.quant column.This skill benchmarks the server; it does not launch or tune the server.
vLLM concurrency sweeps.
user before running it, because Docker will pull and execute an external image
if it is not already present.
image through --container. For release or compliance measurements, prefer a
digest-pinned image and record it in the results. The default vLLM benchmark
client image is upstream vLLM 0.20+ via vllm/vllm-openai:latest on Thor and Orin JetPack 7.2 / L4T r39+,
and NVIDIA-AI-IOT ghcr.io/nvidia-ai-iot/vllm:latest-jetson-orin on older Orin.
length, power mode, clocks, and thermal state are controlled.
2: invalid arguments, missing --model, or a required model file isnot readable. Re-run the wrapper with --help and correct the path or model
ID.
3: runtime preflight failed, such as unreachable Ollama, unknown Jetsongeneration for vLLM container selection, or missing Ollama model. Start the
service, pull the model, or pass an explicit --container.
cannot be pulled, or the model directory mount is not readable. Report the
exact stderr and do not fabricate benchmark numbers.
Preserve the raw error, fix the runtime issue, and rerun.
jetson-inference-mem-tune if results indicate memory pressure.jetson-speculative-decoding if TTFT is acceptable but TPOT is too slow.jetson-diagnostic if warnings is non-empty.Jetson AI Lab — GenAI Benchmarking and NVIDIA-AI-IOT GHCR packages.
Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.
Access NCBI GEO for gene expression/genomics data. Search/download microarray and RNA-seq datasets (GSE, GSM, GPL), retrieve SOFT/Matrix files, for transcriptomics and expression analysis.
Bayesian modeling with PyMC. Build hierarchical models, MCMC (NUTS), variational inference, LOO/WAIC comparison, posterior checks, for probabilistic programming and inference.
Multi-objective optimization framework. NSGA-II, NSGA-III, MOEA/D, Pareto fronts, constraint handling, benchmarks (ZDT, DTLZ), for engineering design and optimization problems.
Statistical modeling toolkit. OLS, GLM, logistic, ARIMA, time series, hypothesis tests, diagnostics, AIC/BIC, for rigorous statistical inference and econometric analysis.
Add unsigned integer (uint) type support to PyTorch operators by updating AT_DISPATCH macros. Use when adding support for uint16, uint32, uint64 types to operators, kernels, or when user mentions enabling unsigned types, barebones unsigned types, or uint support.
Convert PyTorch AT_DISPATCH macros to AT_DISPATCH_V2 format in ATen C++ code. Use when porting AT_DISPATCH_ALL_TYPES_AND*, AT_DISPATCH_FLOATING_TYPES*, or other dispatch macros to the new v2 API. For ATen kernel files, CUDA kernels, and native operator implementations.
Write docstrings for PyTorch functions and methods following PyTorch conventions. Use when writing or updating docstrings in PyTorch code.
Take nvidia/jetson-llm-benchmark from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.