X-Git-Url: http://biod.pnpi.spb.ru/gitweb/?a=blobdiff_plain;f=src%2Fgromacs%2Ffft%2Ffft_fftw3.cpp;h=d83d0f591b0604f7a8cdec3dc5a988eec0d9fce2;hb=a5b355552b920746e3dda332accccabadfe37b50;hp=e9de7eb0d1fa0a59d7aaf031c53924bdf3cec9cd;hpb=7df930ee2e1d3bac7d080dfd994417c47fec94db;p=alexxy%2Fgromacs.git diff --git a/src/gromacs/fft/fft_fftw3.cpp b/src/gromacs/fft/fft_fftw3.cpp index e9de7eb0d1..d83d0f591b 100644 --- a/src/gromacs/fft/fft_fftw3.cpp +++ b/src/gromacs/fft/fft_fftw3.cpp @@ -35,25 +35,25 @@ */ #include "gmxpre.h" -#include "config.h" - #include #include #include +#include "thread_mpi/mutex.h" + #include "gromacs/fft/fft.h" +#include "gromacs/utility/exceptions.h" #include "gromacs/utility/fatalerror.h" +#include "config.h" + #ifdef GMX_DOUBLE #define FFTWPREFIX(name) fftw_ ## name #else #define FFTWPREFIX(name) fftwf_ ## name #endif -#include "thread_mpi/mutex.h" -#include "gromacs/utility/exceptions.h" - /* none of the fftw3 calls, except execute(), are thread-safe, so we need to serialize them with this mutex. */ static tMPI::mutex big_fftw_mutex;