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
Currently, recent versions of torch-neuronx has a loose dependency on libneuronxla:
libneuronxla>2.0.965,<3.0
When trying to install torch-neuronx from older release (say SDK 2.19.1), it will bring in newer version of libneuronxla (say from SDK 2.20). For example, if installing torch-neuronx==2.1.2.2.2.0 (SDK 2.19.1) it will install libneuronxla version 2.0.4115.0 instead of 2.0.2335 (inconsistent versions):
This can cause graph cache misses when using optimum-neuron's cache for example. Furthermore, the release 2.20 libneuronxla also has support for newer openxla and thus you may get an error "Unknown flags in XLA_FLAGS" like below:
F external/xla/xla/parse_flags_from_env.cc:224] Unknown flags in XLA_FLAGS: --xla_gpu_simplify_all_fp_conversions=false --xla_gpu_force_compilation_parallelism=8 "
Currently, recent versions of torch-neuronx has a loose dependency on libneuronxla:
When trying to install torch-neuronx from older release (say SDK 2.19.1), it will bring in newer version of libneuronxla (say from SDK 2.20). For example, if installing torch-neuronx==2.1.2.2.2.0 (SDK 2.19.1) it will install libneuronxla version 2.0.4115.0 instead of 2.0.2335 (inconsistent versions):
This can cause graph cache misses when using optimum-neuron's cache for example. Furthermore, the release 2.20 libneuronxla also has support for newer openxla and thus you may get an error "Unknown flags in XLA_FLAGS" like below:
The workaround is to pin to the released version based on the 2.19.1 released artifacts.
The text was updated successfully, but these errors were encountered: