-
Notifications
You must be signed in to change notification settings - Fork 47
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
Support for higher version of Pytorch/CUDA #43
Comments
Hi @matteo-ronchetti , installation is getting quite difficult with newer GPUs (even RTX 3060 fails early). Do you have any plans to continue this? Would be quite sad to not have it working anymore 😢 |
Can relate 😇 I've try installing it for over 10x and here are some tricks that I found may be useful: 1. Use (Updated) Precompile Packages
This command is provided in Issue #23, but surprisingly the authors did not update it in the README.md.
from torch_radon.radon import FanBeam, ParallelBeam, RadonFanbeam, Radon
# ParallelBeam is the new version for Radon, and Fanbeam for RadonFanbeam
If Method 1 produces problem with version conflicts, try 2. build from source
This will support higher versions of cuda and pytorch (I succeeded on RTX 3090 with cuda 11.7). However, when compiling you may encounter other issues:
|
Wow, cool! |
Hi.
I find torch-radon library extremely helpful in accelerating forward/backward projection.
It worked well on machines with CUDA 10.2. However, when I tried to run codes on machines with CUDA 11.x, I got the following error message:
It turns out that this conflicts with the CUDA requirements for pytorch (1.11+), and I am wondering if there's a plan for an updated version of torch-radon that could solve this problem?
Thanks!
The text was updated successfully, but these errors were encountered: