TensorRT Edge-LLM Outperforms Reference Edge Agent Benchmarks by 6.4x on Jetson AGX Thor
In the latest MLPerf Inference v6.1 results, NVIDIA demonstrated that its TensorRT Edge-LLM runtime running the Qwen3.6-27B model on a single Jetson AGX Thor Developer Kit completed the MLPerf Edge Agentic benchmark in 24 minutes and 36 seconds. This represents a 6.4x speedup compared to the llama.cpp reference implementation, which took 2 hours and 37 minutes across the same 1,007-turn trajectory. The workload reached 52.33 tokens per second with a median time-to-first-token of 247.12 milliseconds while retaining an 87.94% accuracy score on the Berkeley Function Calling Leaderboard suite.
This benchmark marks an important shift in edge evaluation metrics. Standard edge benchmarks have historically prioritized single-prompt inference throughput or raw vision model frames-per-second. Real-world agentic applications—such as autonomous robotics, field diagnostics, and in-cabin automotive assistants—operate through continuous conversational loops where input context grows up to tens of thousands of tokens and systems frequently call external APIs. Achieving rapid tool resolution without cloud round-trip latencies allows edge agents to react deterministically to physical environments while preserving local compute budgets.
Architecturally, edge AI is evolving past simple model weight quantization toward integrated runtime optimizations. The benchmark results were achieved using NVFP4 4-bit precision for weights and activations alongside an FP8 Key-Value (KV) cache. Crucially, the system employs KV cache reuse to prevent redundant prefilling across iterative multi-turn exchanges—serving roughly 96% of prompt tokens directly from memory—and uses tree-based multi-token prediction to accelerate speculative token generation. As foundation models grow more capable, managing KV memory pressure and execution parallelism on unified memory architectures has become the primary gating factor for edge intelligence.
For platform and DevOps engineers supporting distributed edge fleets, these results provide an actionable deployment pattern. Teams deploying edge agents should shift focus from brute-force model shrinking to runtime-level KV caching and hardware-native floating-point formats. When designing field architectures, developers must evaluate whether local agent runtimes can maintain function-calling validity across expanding context windows without triggering unexpected fallbacks to remote cloud APIs.
Read original source