rusty1s / pytorch_scatter

PyTorch Extension Library of Optimized Scatter Operations

Home Page:https://pytorch-scatter.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pytorch 2.0.0 & Cuda 11.4 on aarch64

YoushaaMurhij opened this issue · comments

Hi,
I am trying to build torch-scatter on aarch64 with cuda11.4 and pytorch 2.0 using this command:

RUN pip3 install torch-scatter==2.1.1 -f https://data.pyg.org/whl/torch-2.0.0+cu114.html

But I got this error message while running the application:

RuntimeError: Not compiled with CUDA support

Could you please guide me how to build it correctly?
Thanks

I am trying to build pytorch scatter on jetson xavier. It has cuda 11.4. I do not think it is an option for me to upgrade cuda.
does building from main branch with force cuda flag work? I think, I can change pytorch version.

Yes, you can also try FORCE_CUDA=1 pip install torch-scatter.

Yes, it works for me on aarch with cuda11.4.
Thanks for your response!