-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question about the suitable version of xformers #45
Comments
Hi, @hnuzhy I have used this version for xformers
I hope it works for you. Please comment if it does so that it can help others who are trying the same. Best, |
OK. Thank you for your reply. |
By the way, I also met the version problem when installing |
Continue from previous post, I found a workable installation way of PyTorch3D from here $ conda install -c fvcore -c iopath -c conda-forge fvcore iopath
$ conda install -c bottler nvidiacub
$ conda install pytorch3d -c pytorch3d Hope this will be useful for other followers~ |
Thanks for sharing this info @hnuzhy! I will add it to the Readme for others to discover. |
Hi, thanks a lot for releasing you code of awesome works RVT and RVT-2.
When I installed RVT-2 and run
pip install -e '.[xformers]'
, I still met a bug as below:AttributeError: '_OpNamespace' object has no attribute '_efficient_attention_forward'
.This bug is related to a non-defined torch function
torch.ops.aten._efficient_attention_forward
, which is imported byxformers
.I used your recommended torch version 1.12.1. And I guess this problem occurred due to the rapid updating of the lib
xformers
.Actually, in the setup.py file, it always pulls down the lateset version.
Thus, I would like to ask what is the matched version of xformers you used when running RVT-2.
The text was updated successfully, but these errors were encountered: