Does anyone have any recommendations for a high-performance library that can do FFT over a finite field, $\mathbb{F}_p$ where the prime, $p$, can be up to 256 bits and the the length of the vector on which FFT is being computed is tens of millions?
migrated from crypto.stackexchange.com Mar 6 at 6:04
|
Have you considered achieving performance by running on your GPGPU, instead of using a slightly more efficient library on your CPU? An algorithm would have to be a lot faster to make up for having only 1% as many cores, or less, and this problem sounds like an easily parallelized one. The NVIDIA site has lots of good free documentation on the use of their CUDA library; I suspect the same is true for the other graphics card manufacturers. |
|||
|
|
|
I don't know of any (freely-available) prepackaged libraries. However, some quick Googling turns up the modpn library, which is apparently integrated into the Maple CAS. There's also a related paper describing a GPGPU-based algorithm for rapidly computing finite-field FFTs on arrays up to length 226 (64 million). These algorithms are certainly implementable if you have the time (and patience to read an academic paper). The references might point you towards a prepackaged solution. |
|||
|
|
flaglink below your question) and ask them to migrate the question to crypto.SE – Dilip Sarwate Feb 19 at 2:18