Can NVIDIA Jetson Orin/Thor be used as the host for model quantization and export? #155
|
The TensorRT Edge-LLM documenation states that "must run on an x86 Linux system with an NVIDIA GPU." However, this Jetson AI Lab tutorial suggests that NVIDIA Jetson Thor is a supported alternative. Can NVIDIA Jetson Orin or Jetson Thor be used as the host for model quantization and export? If so, are there any limitations or differences compared to using an x86 Linux host with an NVIDIA GPU? |
Replies: 1 comment
|
Both of your sources are right, and the reconciliation is a Thor/Orin split. Short version: Jetson Thor yes, Jetson Orin no, and the docs sentence you quoted is the conservative supported matrix rather than a technical wall. I verified the mechanics from the repo and packaging before saying so. The authoritative statement is NVIDIA's own Jetson AI Lab tutorial you referenced (https://www.jetson-ai-lab.com/tutorials/tensorrt-edge-llm/): its export step is labeled as running on x86 or Thor, and it states explicitly that the quantize-and-convert step needs significant GPU memory and Python, so it runs on an x86 workstation or Jetson Thor, and not on Orin devices. Orin remains fully supported as a deployment target in that same tutorial (Qwen3-4B INT4 on an Orin Nano 8GB), it just cannot host the export stage. That is consistent with everything checkable in this repo, which is why I would trust it over the stricter installation.md line:
So the practical answers to your two questions:
Caveat for honesty: I verified the docs scoping, the wheel platforms, and the absence of code gates directly from the repo and PyPI, but I have not executed the export on Jetson hardware myself; the Thor-yes claim rests on NVIDIA's Jetson AI Lab tutorial doing exactly that. If a maintainer can confirm whether Thor-as-host is headed into the official installation.md matrix, that would resolve the doc contradiction you found at the source. |
Both of your sources are right, and the reconciliation is a Thor/Orin split. Short version: Jetson Thor yes, Jetson Orin no, and the docs sentence you quoted is the conservative supported matrix rather than a technical wall. I verified the mechanics from the repo and packaging before saying so.
The authoritative statement is NVIDIA's own Jetson AI Lab tutorial you referenced (https://www.jetson-ai-lab.com/tutorials/tensorrt-edge-llm/): its export step is labeled as running on x86 or Thor, and it states explicitly that the quantize-and-convert step needs significant GPU memory and Python, so it runs on an x86 workstation or Jetson Thor, and not on Orin devices. Orin remains fully supported…