Environment
- Device / Hardware: NVIDIA Jetson Thor (Blackwell,
sm_110)
- Software Version: TensorRT-Edge-LLM v0.9.1 (main branch)
- CUDA Version: CUDA 13.0
- TensorRT Version: 10.13.3
- Model: Qwen2.5-VL / LLM models with GQA
Problem Description
When running LLM/VLM inference on Jetson Thor (sm_110), the Prefill phase completes successfully, but the Decode phase crashes with an XQA kernel lookup error.
Error Trace
decoderXQARunner.cpp:611: "No available kernel available for the GQA"
Root Cause Analysis
- Prefill Phase (Works):
cutedsl_aarch64_sm_110_cuda13.tar.gz is present under kernelSrcs/cuteDSLPrebuilt/ and provides FMHA kernels for sm_110. Context attention works as expected.
- Decode Phase (Fails):
- In
cmake/XQACubins.cmake, the supported SM list only includes:
- There are no prebuilt XQA
.cubin files provided for sm_110 under kernelSrcs/.
- As a result,
decoderXQARunner cannot find a matching XQA cubin for sm_110 during generation/decode, raising the exception above.
Feature Request / Expected Behavior
Could the NVIDIA team please provide prebuilt XQA CUBIN artifacts for sm_110 (Jetson Thor) in kernelSrcs/ and update XQACubins.cmake accordingly in the upcoming release?
This will allow full end-to-end execution (Prefill + Decode) on Jetson Thor devices.
Thanks!
Environment
sm_110)Problem Description
When running LLM/VLM inference on Jetson Thor (
sm_110), the Prefill phase completes successfully, but the Decode phase crashes with an XQA kernel lookup error.Error Trace
Root Cause Analysis
cutedsl_aarch64_sm_110_cuda13.tar.gzis present underkernelSrcs/cuteDSLPrebuilt/and provides FMHA kernels forsm_110. Context attention works as expected.cmake/XQACubins.cmake, the supported SM list only includes:.cubinfiles provided forsm_110underkernelSrcs/.decoderXQARunnercannot find a matching XQA cubin forsm_110during generation/decode, raising the exception above.Feature Request / Expected Behavior
Could the NVIDIA team please provide prebuilt XQA CUBIN artifacts for
sm_110(Jetson Thor) inkernelSrcs/and updateXQACubins.cmakeaccordingly in the upcoming release?This will allow full end-to-end execution (Prefill + Decode) on Jetson Thor devices.
Thanks!