Automation & Ops ✓ NVIDIA · Official jetsonperformance-benchmarkingvllmllama-cppollamajson-output

Jetson LLM Benchmark

Measure and compare LLM runtime performance on Jetson with structured JSON results.

FollowSkills review · FSRS-2.0
Not recommended
53/ 100 5-point scale 2.7 / 5
Trust15 / 25 · 3.0/5

The scripts mostly read model inputs, call local services, and mount model directories read-only; no credential theft or covert exfiltration is evident. However, mutable external Docker tags, host networking for vLLM, and the lack of uniform pre-execution confirmation, digest pinning, and fuller data-flow disclosure reduce the score.

Reliability9 / 20 · 2.3/5

The documentation provides coherent paths, parameters, error codes, and JSON contracts, with preflight checks and failure messages. Reliability is reduced by dependence on detect_jetson.sh not shown within the assessed path, fragile vLLM text parsing that may silently emit zero values after format changes, and incomplete robustness around Ollama request failures and cleanup. Static calibration prevents a score above 10.

Adaptability9 / 15 · 3.0/5

Audience, runtime selection, trigger scenarios, and non-fit boundaries are reasonably clear. The skill is Jetson-specific, declares no Chinese-language support, and depends on Docker, GHCR, Ollama, and related network/environment availability without evidence of reachability from mainland-China networks, so points are deducted.

Convention9 / 15 · 3.0/5

The skill is well organized and includes versioning, parameters, examples, limitations, error handling, handoffs, and maintenance-oriented evaluation notes. Deductions reflect the missing recommended Examples section, incomplete author format, inconsistent Apache versus CC-BY-4.0 licensing statements, and lack of a clear changelog or pinned dependency versions.

Effectiveness7 / 15 · 2.3/5

The three runtime paths, structured JSON output, and comparability guidance are directly useful. The committed evaluation report indicates task-level benefit, but the dataset is unavailable and this review did not execute the scripts, so output completeness, parser correctness, and durable benefit over manual alternatives cannot be confirmed. The static ceiling supports 7 points.

Verifiability4 / 10 · 2.0/5

Scripts, evaluation assertions, output contracts, and the committed evaluation report provide auditable material. The report lacks raw tasks, logs, CI, or independently reproducible execution evidence, and the external references are only cited, so coverage remains limited and full marks are not justified.

Evidence confidence:Low Reviewed Jul 20, 2026 Reviewed revision 55f18499943e
The upstream repository has new commits since this review. The score still applies to the reviewed revision shown and may not cover the latest changes.
Before you use it
  • Default Docker images use mutable latest tags; users should confirm execution and use digest-pinned images for compliance or release measurements.
  • vLLM uses host networking and sends requests to a running service; confirm the endpoint, model, network permissions, and acceptance of external image pulls before execution.
  • The scripts depend on Jetson detection tooling and local Docker, curl, python3, and runtime availability; these were not executed in this static review, and parser drift may yield zero or incomplete metrics.
  • Ollama prompts are randomly generated, making repeated measurements non-deterministic, and comprehensive thermal, background-GPU, and container-source warning coverage is not evident.
  • Chinese-language usability and reachability from mainland-China networks are not established.
See the full review method →

What does this skill do, and when should you use it?

This skill measures large language model and vision-language model serving performance on NVIDIA Jetson across vLLM, llama.cpp, and Ollama. It selects a runtime-specific Bash wrapper, performs the documented warmup and benchmark flow, and emits structured JSON suitable for comparing runs. Reported metrics can include time to first token, inter-token latency, time per output token, throughput, and end-to-end latency. It fits users with an existing service or local GGUF model, but it does not launch or tune a vLLM server.

Selects and runs scripts/bench_vllm.sh, scripts/bench_llama_cpp.sh, or scripts/bench_ollama.sh according to the named runtime; calls a running OpenAI-compatible vLLM service, Ollama's /api/generate REST API, or llama-bench through an NVIDIA-AI-IOT llama.cpp container; performs a vLLM concurrency sweep or single-stream llama.cpp/Ollama measurements; reads Jetson device, L4T, container, power-mode, background-load, and thermal indicators; and produces one JSON object containing configuration, metrics, runtime metadata, and warnings.

  1. A Jetson engineer comparing latency and throughput for one model across vLLM concurrency levels.
  2. An Ollama user measuring single-stream performance for a pulled local model.
  3. A GGUF user measuring prompt and generation speed through the Jetson-appropriate llama.cpp container.
  4. A developer comparing results before and after memory tuning or a JetPack upgrade.
  5. An operator handing non-empty benchmark warnings to a Jetson diagnostic workflow.

What are this skill's strengths and limitations?

Pros
  • Covers vLLM, llama.cpp/GGUF, and Ollama benchmark paths for Jetson.
  • Uses a shared JSON envelope designed for run-to-run comparison.
  • Handles warmup, Jetson-oriented container selection, and device-state warnings.
  • Separates vLLM concurrency sweeps from single-stream metrics for the other runtimes.
Limitations
  • The vLLM path requires an already-running OpenAI-compatible server.
  • Ollama supports only concurrency 1, and its results are not directly comparable with vLLM concurrency sweeps.
  • The llama.cpp path normally requires Docker and may pull and execute an external NVIDIA-AI-IOT image.
  • The supplied source provides no test suite, measured benchmark values, or broad platform coverage evidence.

How do you install this skill?

Install the individual skill with the repository README's skills CLI flow: npx skills add nvidia/skills --skill jetson-llm-benchmark --agent codex. The README also documents installing for other supported clients by changing the --agent value. The skill becomes available the next time the agent loads skills and encounters a relevant task.

How do you use this skill?

Confirm the runtime, model identifier or readable GGUF path, and intended Jetson power mode. For a measurement question, first run the matching wrapper with --help, such as scripts/bench_vllm.sh --help, scripts/bench_llama_cpp.sh --help, or scripts/bench_ollama.sh --help. A vLLM example is scripts/bench_vllm.sh --model <served-model-id> --concurrency 1,8 --input-len 2048 --output-len 128 --num-prompts 50. Use the matching wrapper rather than calling the underlying benchmark tool or Ollama endpoint by hand.

How does this skill compare with similar options?

The skill names three runtime alternatives: vLLM uses an OpenAI-compatible server and supports concurrency sweeps; Ollama uses the /api/generate REST API for sequential single-stream tests; and llama.cpp benchmarks a local GGUF model with llama-bench. The source explicitly says Ollama results should not be directly compared with vLLM results, and cross-device or cross-quantization comparisons require controlled model, quantization, prompt/output lengths, power mode, clocks, and thermal state.

FAQ

Does this skill start vLLM or Ollama?
No. A vLLM server must already be running, and the Ollama daemon must be reachable with the model already pulled. The skill benchmarks the runtime rather than launching it.
What does the llama.cpp path require?
It requires a readable GGUF model path, Bash execution on the Jetson, and normally Docker to run the NVIDIA-AI-IOT llama.cpp container.
What should I do when a benchmark fails?
Exit code 2 indicates invalid arguments or a missing/unreadable model; exit code 3 indicates runtime preflight failure. Preserve the exact stderr, fix the service, model, container, or path issue, and rerun without inventing numbers.

More skills from this repository

All from NVIDIA/skills

Dev & Engineering ✓ NVIDIA · Official

Jetson Inference Memory Tuning

Choose a Jetson serving runtime and generate memory flags from the device snapshot and workload.

Automation & Ops ✓ NVIDIA · Official

Jetson Package & Environment Advisor

Select Jetson-compatible containers and GPU package indexes by device architecture.

Automation & Ops ✓ NVIDIA · Official

Jetson LLM Serving

Deploy OpenAI-compatible LLM and VLM servers on Jetson with vLLM or SGLang.

Automation & Ops ✓ NVIDIA · Official

Jetson vLLM Speculative Decoding

Configure speculative decoding for lower single-stream generation latency on Jetson vLLM servers.

Automation & Ops ✓ NVIDIA · Official

RAG Performance Benchmark

Benchmark a deployed NVIDIA RAG Blueprint server and expose latency, throughput, and bottleneck behavior from one YAML config.

Dev & Engineering ✓ NVIDIA · Official

Jetson Target Switcher

Switch the active Jetson target among existing platform profiles.

Dev & Engineering ✓ NVIDIA · Official

Jetson BSP Info Check

Verify Jetson BSP version, board configs, and rootfs state before flashing.

Dev & Engineering ✓ NVIDIA · Official

Jetson BSP Source Builder

Rebuild Jetson BSP device trees, kernels, and modules from source changes and produce a deployable artifact manifest.

Automation & Ops ✓ NVIDIA · Official

Jetson Device Info Snapshot

Capture a concise software, kernel, OS, and power-mode baseline from a running Jetson target.

Dev & Engineering ✓ NVIDIA · Official

Jetson PCIe Controller Customizer

Configure per-controller PCIe state, lane width, and link speed on custom Jetson Thor or Orin carriers.

Dev & Engineering ✓ NVIDIA · Official

Jetson Target Platform Initializer

Create a Jetson target-platform profile for a reference devkit or custom carrier and update the active pointer.

Dev & Engineering ✓ NVIDIA · Official

Jetson Clock Customizer

Lock or cap Jetson CPU, GPU, and EMC clock behavior before flashing a BSP image.

Automation & Ops ✓ NVIDIA · Official

Jetson Health Snapshot

Read-only diagnostics that consolidate a live Jetson’s hardware, resource, and service state.

Dev & Engineering ✓ NVIDIA · Official

Jetson BSP Image Flasher

Safely flash a promoted Jetson BSP image onto a Jetson device in RCM mode.

Dev & Engineering ✓ NVIDIA · Official

Jetson BSP Quick Start

Choose a Jetson BSP customization path and hand validated intake answers to the right setup skills.

Dev & Engineering ✓ NVIDIA · Official

Jetson USB Port Customization

Safely enable, disable, or change Jetson USB port roles through a kernel device-tree overlay.

Automation & Ops ✓ NVIDIA · Official

Jetson Headless Memory Optimizer

Reclaim memory on GUI-free Jetson devices through safe, reversible system-service changes.

Dev & Engineering ✓ NVIDIA · Official

Jetson Fan Curve Customizer

Safely maintain nvfancontrol fan profiles and boot defaults in a Jetson BSP.

Automation & Ops ✓ NVIDIA · Official

Jetson nvpmodel Power Mode Customizer

Safely customize Jetson BSP power modes, frequency caps, and the boot-default profile.

Dev & Engineering ✓ NVIDIA · Official

NVIDIA Skill Finder

Finds the right NVIDIA agent skill for product, hardware, and workflow requests.

Related skills