[Scipy-svn] r4314 - branches/refactor_fft/scipy/fftpack/src

scipy-svn at scipy.org scipy-svn at scipy.org
Tue May 13 04:53:31 EDT 2008


Author: cdavid
Date: 2008-05-13 03:53:28 -0500 (Tue, 13 May 2008)
New Revision: 4314

Modified:
   branches/refactor_fft/scipy/fftpack/src/fftpack.cxx
Log:
Do not include cxx files anymore in fftpack, only use headers.

Modified: branches/refactor_fft/scipy/fftpack/src/fftpack.cxx
===================================================================
--- branches/refactor_fft/scipy/fftpack/src/fftpack.cxx	2008-05-13 08:52:59 UTC (rev 4313)
+++ branches/refactor_fft/scipy/fftpack/src/fftpack.cxx	2008-05-13 08:53:28 UTC (rev 4314)
@@ -40,24 +40,21 @@
  */
 
 #ifdef WITH_FFTW3
-    #include "fftw3/drfft.cxx"
-    #include "fftw3/zfft.cxx"
-    #include "fftw3/zfftnd.cxx"
+    #include "fftw3/api.h"
     #ifndef WITH_DJBFFT
         GEN_ZFFT_API(fftw3)
         GEN_DRFFT_API(fftw3)
         GEN_ZFFTND_API(fftw3)
     #endif
 #elif defined WITH_FFTW
-    #include "fftw/drfft.cxx"
-    #include "fftw/zfft.cxx"
-    #include "fftw/zfftnd.cxx"
+    #include "fftw/api.h"
     #ifndef WITH_DJBFFT
         GEN_ZFFT_API(fftw)
         GEN_DRFFT_API(fftw)
         GEN_ZFFTND_API(fftw)
     #endif
 #elif defined WITH_MKL
+#error MKL backend not supported !
     #include "mkl/zfft.cxx"
     #include "mkl/zfftnd.cxx"
     #ifndef WITH_DJBFFT




More information about the Scipy-svn mailing list