amd / amd-fftw

FFTW code optimized for AMD based processors
GNU General Public License v2.0
48 stars 12 forks source link

How to get best performance installation on AMD EPYC 7773X 64-Core Processor? #10

Closed 2catycm closed 1 year ago

2catycm commented 1 year ago

I am using spack, with the instruction on https://developer.amd.com/spack/amd-optimized-cpu-libraries/. However, I don't know what is "threads"

BiplabRaut commented 1 year ago

Hi, The "threads" option enables the compilation of the threaded FFTW library. You can compile the library with either of the two options: threads=on : It will use posix threads on unix and win32 on windows openmp=on : It will use OpenMP threads.

Thanks.