nvidia-skill-finder
Use for NVIDIA-related requests where an NVIDIA skill might help, even if the user did not ask for a skill. Trigger on NVIDIA products, hardware, software,…
Benchmark Jetson LLM/VLM serving performance across vLLM, llama.cpp, and Ollama with structured JSON output.
$ npx -y skills add NVIDIA/skills --skill jetson-llm-benchmark --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/jetson-llm-benchmarkContext preview
The summary Claude sees to decide when to auto-load this skill.
Benchmark Jetson LLM/VLM serving performance across vLLM, llama.cpp, and Ollama with structured JSON output.
name: jetson-llm-benchmark description: Benchmark Jetson LLM/VLM serving performance across vLLM, llama.cpp, and Ollama with structured JSON output. version: 0.0.2 license: "Apache-2.0" metadata: author: "Jetson Team" tags: [jetson, llm, benchmark] languages: [bash] data-classification: public
Reproducible Jetson benchmarks with **structured JSON output** so an agent can compare runs. Encodes the workflow from the [Jetson AI Lab GenAI Benchmarking tutorial](https://www.jetson-ai-lab.com/tutorials/genai-benchmarking/).
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.
named model is already pulled.
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:
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>`.
`{baseDir}/scripts/bench_vllm.sh --help`, then show a command using `--concurrency 1,8` and the served model ID.
--help`, then show a command for the GGUF model path and report that prompt/generation speed maps to TTFT, ITL/TPOT, and throughput.
`--model <ollama-tag>`. Do not use vLLM or llama.cpp wrappers for Ollama.
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
Official, NVIDIA-verified Agent Skills for Claude Code, Codex, and other coding agents.
Use for NVIDIA-related requests where an NVIDIA skill might help, even if the user did not ask for a skill. Trigger on NVIDIA products, hardware, software,…
Official NVIDIA-authored guidance for NVIDIA cuDF GPU DataFrames, pandas acceleration, dask-cuDF, ETL, joins, groupby, CSV/Parquet I/O, nullable semantics, and…
Use when asked to install, deploy, run, validate, troubleshoot, or stop NVIDIA AI-Q Blueprint infrastructure.
Use when asked to run deep research or AI-Q research through a reachable NVIDIA AI-Q Blueprint backend.
Calibrate a new dataset from live RTSP camera streams via the AutoMagicCalib REST API. Use when the user provides RTSP URLs or asks to calibrate live cameras;…
Run end-to-end calibration on the shipped sample dataset (sdg_08_2_sample_data_010926.zip) against a running AMC microservice. Use when user says 'test sample…