You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raises an InvalidVersion error when installed using:
python3 setup.py install --use-cxx11-abi
on a Jetson Xavier AGX using the dustynv/ros:humble-pytorch-l4t-r35.3.1 container base image found here. The issue appears to be caused by the fact that torch.__version__ == "2.0.0.nv23.05". Changing the line here:
I'm realizing now this is probably not the correct workflow, and that I should instead be using Torch-TensorRT outside of the container to compile the model and then providing the compiled model to the container.
Bug Description
raises an
InvalidVersion
error when installed using:on a Jetson Xavier AGX using the
dustynv/ros:humble-pytorch-l4t-r35.3.1
container base image found here. The issue appears to be caused by the fact thattorch.__version__ == "2.0.0.nv23.05"
. Changing the line here:to:
makes the error go away.
To Reproduce
Start a container using the
dustynv/ros:humble-pytorch-l4t-r35.3.1
base image found here.Expected behavior
No error.
Environment
A Jetson Xavier AGX and the container base image found here.
Additional context
The text was updated successfully, but these errors were encountered: