X-Git-Url: http://biod.pnpi.spb.ru/gitweb/?a=blobdiff_plain;f=src%2Fgromacs%2Ffft%2Ffft5d.cpp;h=93f518a85b680b9303b3a2ef236882474acebd7e;hb=897da8f26d941a8ceb8f6d131d2a13198d19298f;hp=d22662291698cee874c6e2ef6788e27e25b609cd;hpb=496908b4bf980c0edd1b250a18783138aa84197d;p=alexxy%2Fgromacs.git diff --git a/src/gromacs/fft/fft5d.cpp b/src/gromacs/fft/fft5d.cpp index d226622916..93f518a85b 100644 --- a/src/gromacs/fft/fft5d.cpp +++ b/src/gromacs/fft/fft5d.cpp @@ -1005,7 +1005,7 @@ void fft5d_execute(fft5d_plan plan, int thread, fft5d_time times) s = 0; /*lin: x,y,z*/ - if (plan->flags&FFT5D_DEBUG && thread == 0) + if ((plan->flags&FFT5D_DEBUG) && thread == 0) { print_localdata(lin, "%d %d: copy in lin\n", s, plan); } @@ -1065,7 +1065,7 @@ void fft5d_execute(fft5d_plan plan, int thread, fft5d_time times) time_fft += MPI_Wtime()-time; } #endif - if (plan->flags&FFT5D_DEBUG && thread == 0) + if ((plan->flags&FFT5D_DEBUG) && thread == 0) { print_localdata(lout, "%d %d: FFT %d\n", s, plan); } @@ -1186,7 +1186,7 @@ void fft5d_execute(fft5d_plan plan, int thread, fft5d_time times) time_local += MPI_Wtime()-time; } #endif - if (plan->flags&FFT5D_DEBUG && thread == 0) + if ((plan->flags&FFT5D_DEBUG) && thread == 0) { print_localdata(lin, "%d %d: tranposed %d\n", s+1, plan); } @@ -1230,7 +1230,7 @@ void fft5d_execute(fft5d_plan plan, int thread, fft5d_time times) } #endif - if (plan->flags&FFT5D_DEBUG && thread == 0) + if ((plan->flags&FFT5D_DEBUG) && thread == 0) { print_localdata(lout, "%d %d: FFT %d\n", s, plan); }