Ooops...my recent fix for FFT3 was still worng

git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@8809 c92efa57-630b-4861-b058-cf58834340f0
This commit is contained in:
giannozz 2012-03-21 20:22:58 +00:00
parent 69097d9908
commit 699b20fd5e
1 changed files with 2 additions and 2 deletions

View File

@ -1523,10 +1523,10 @@ SUBROUTINE cfft3ds (f, nx, ny, nz, ldx, ldy, ldz, isign, &
#if defined __FFTW
call FFTW_INPLACE_DRV_1D( bw_plan( 2, ip), m, f( ii ), incx1, incx2 )
#elif defined __FFTW3
call dfftw_execute_dft( bw_plan( 1, ip), f( ii: ), f( ii: ) )
call dfftw_execute_dft( bw_plan( 2, ip), f( ii: ), f( ii: ) )
#elif defined __ESSL || defined __LINUX_ESSL
call dcft (0, f (ii), incx1, incx2, f (ii), incx1, incx2, nx, m, &
-isign, 1.0_DP, bw_table ( 1, 1, ip ), ltabl, work( 1 ), lwork)
-isign, 1.0_DP, bw_table ( 1, 2, ip ), ltabl, work( 1 ), lwork)
#else
call errore(' cfft3ds ',' no scalar fft driver specified ', 3)
#endif