source: LMDZ6/branches/Amaury_dev/libf/filtrez/lmdz_fft.F90 @ 5107

Last change on this file since 5107 was 5107, checked in by abarral, 8 weeks ago

Turn coefils.h into lmdz_coefils.f90
Put filtreg.F90, inifgn.f90, jacobi.F90, eigen_sort.f90, acc.f90 inside lmdz_filtreg.F90
Turn mod_* into lmdz_* in filtrez
Delete obsolete parafilt.h*
(lint) remove spaces between routine name and args

  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 218 bytes
Line 
1MODULE lmdz_fft
2
3#ifdef FFT_MATHKEISAN
4  USE lmdz_fft_mathkeisan
5#else
6#ifdef FFT_FFTW
7  USE lmdz_fft_fftw
8#else
9#ifdef FFT_MKL
10  USE lmdz_fft_mkl
11#else
12  USE lmdz_fft_wrapper
13#endif
14#endif
15#endif
16
17END MODULE lmdz_fft
Note: See TracBrowser for help on using the repository browser.