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
As already mentioned in #803, manually installing the dependencies using the provided linux-rocm requirements file is not working as expected.
Steps to Reproduce
Clone the repository in your scripts/addons folder as described in the documentation.
Run /usr/share/blender/4.1/python/bin/python3.11 -m pip install -r requirements/linux-rocm.txt --target .python_dependencies in the checked out folder
Expected Behavior
A rocm version of PyTorch (>=2.3.1) should have been downloaded but instead it is downloading the default one withtout rocm support.
This is due to requirements/linux-rocm.txt referring to the extra-index-url https://download.pytorch.org/whl/nightly/rocm6.1/ which is only containing nightly versions and from my understanding the version constraint >=2.3.1 does not apply. Changing the extra-index-url to https://download.pytorch.org/whl/rocm6.1/ seems to fix the problem and I couldn't find any issues when using the addon in blender.
(Also, as a side note, the dropdown in the bug reporting form should be updated because the current gen AMD GPUs are supported now)
Addon Version
Other (Built from source)
GPU
AMD (unsupported for local generation)
The text was updated successfully, but these errors were encountered:
Description
As already mentioned in #803, manually installing the dependencies using the provided linux-rocm requirements file is not working as expected.
Steps to Reproduce
/usr/share/blender/4.1/python/bin/python3.11 -m pip install -r requirements/linux-rocm.txt --target .python_dependencies
in the checked out folderExpected Behavior
A rocm version of PyTorch (>=2.3.1) should have been downloaded but instead it is downloading the default one withtout rocm support.
This is due to
requirements/linux-rocm.txt
referring to the extra-index-urlhttps://download.pytorch.org/whl/nightly/rocm6.1/
which is only containing nightly versions and from my understanding the version constraint>=2.3.1
does not apply. Changing the extra-index-url tohttps://download.pytorch.org/whl/rocm6.1/
seems to fix the problem and I couldn't find any issues when using the addon in blender.(Also, as a side note, the dropdown in the bug reporting form should be updated because the current gen AMD GPUs are supported now)
Addon Version
Other (Built from source)
GPU
AMD (unsupported for local generation)
The text was updated successfully, but these errors were encountered: