-
Hi, I am working with MRIReco to reconstruct some high-resolution fMRI 3D Stack of Spirals data. So far I can reconstruct the images in the CPU, but it is slow. I am also looking to perform off-resonance correction for these reconstructions, I expect with this the computation times and memory usage will go even higher. I believe the NFFT.jl package includes CuNFFT.jl, which should allow for GPU acceleration. I was wondering if there are any plans on fully implementing GPU acceleration in MRIReco? Thank you, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Do you have some comparative reconstruction (i.e. BART, Gadgetron, ...) which is faster? I just want to get a feeling what NFFT.jl is now one of the fastest NFFT library out there. Before you test Having said that, you will likely need to tweak the NFFT setting a little bit. For instance you can lower the accuracy. |
Beta Was this translation helpful? Give feedback.
Do you have some comparative reconstruction (i.e. BART, Gadgetron, ...) which is faster? I just want to get a feeling what
but it is slow
means. Also: is it just gridding or iterative reconstruction?NFFT.jl is now one of the fastest NFFT library out there. Before you test
CuNFFT.jl
I would encourage you to try multi-threading. With 8-16 threads, the CPU implementation is currently likely to outperformCuNFFT.jl
.Having said that, you will likely need to tweak the NFFT setting a little bit. For instance you can lower the accuracy.