Open marty-sullivan opened 9 months ago
Not sure where the build code for the torch-neuronx>=2 python package is. If you point me to it, I'd be happy to make a PR.
torch-neuronx>=2
Problem: it seems that there is an erroneous version requirement listed, causing issues with my build tools (below output from poetry):
Invalid requirement (libneuronxla (<3.0,>2.0.x)) found in torch-neuronx-2.1.1.2.0.1b0 dependencies, skipping
My workaround is to explicitly require libneuronxla^2.0, however, fixing the requirement string on your end to <3.0,>=2.0 should solve the problem.
libneuronxla^2.0
<3.0,>=2.0
Thank you for creating an issue. We are looking into this.
We have added a fix for the requirements and should be available in the upcoming release
Not sure where the build code for the
torch-neuronx>=2
python package is. If you point me to it, I'd be happy to make a PR.Problem: it seems that there is an erroneous version requirement listed, causing issues with my build tools (below output from poetry):
Invalid requirement (libneuronxla (<3.0,>2.0.x)) found in torch-neuronx-2.1.1.2.0.1b0 dependencies, skipping
My workaround is to explicitly require
libneuronxla^2.0
, however, fixing the requirement string on your end to<3.0,>=2.0
should solve the problem.