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
Thanks to the authors for making their very helpful code publicly available. This is for those of you working with newer versions of torch.
Currently, if you try to run python setup.py install with torch 2.0 (python3.8, cuda 11.8), it will fail to compile. To solve this, you need to add just one line in setup.py on L30:
nvcc_flags += ['-std=c++14']
EDIT: This actually didn't work, it seemed to compile for me because it clashed with an existing build but fails if I try to build from scratch.
The text was updated successfully, but these errors were encountered:
Thanks to the authors for making their very helpful code publicly available. This is for those of you working with newer versions of torch.
Currently, if you try to run
python setup.py install
with torch 2.0 (python3.8, cuda 11.8), it will fail to compile. To solve this, you need to add just one line insetup.py
on L30:EDIT: This actually didn't work, it seemed to compile for me because it clashed with an existing build but fails if I try to build from scratch.
The text was updated successfully, but these errors were encountered: