Last change
on this file since 5308 was
4103,
checked in by Laurent Fairhead, 3 years ago
|
Inclusion of some corrections and optimisations for XIOS done by
Arnaud Durocher during his TGCC mission.
Included here are r3703, r3704, r3750, r3751, r3752 from his
LMDZ6/branches/Optimisation_LMDZ branch
|
-
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
|
File size:
326 bytes
|
Line | |
---|
1 | MODULE TPM_FFT |
---|
2 | USE PARKIND1 ,ONLY : JPIM ,JPRB |
---|
3 | |
---|
4 | IMPLICIT NONE |
---|
5 | |
---|
6 | SAVE |
---|
7 | |
---|
8 | TYPE FFT_TYPE |
---|
9 | REAL(KIND=JPRB) ,ALLOCATABLE :: TRIGS(:,:) |
---|
10 | INTEGER(KIND=JPIM),ALLOCATABLE :: NFAX(:,:) |
---|
11 | END TYPE FFT_TYPE |
---|
12 | |
---|
13 | TYPE(FFT_TYPE),ALLOCATABLE,TARGET :: FFT_RESOL(:) |
---|
14 | TYPE(FFT_TYPE),POINTER :: T |
---|
15 | |
---|
16 | !$OMP THREADPRIVATE(t) |
---|
17 | |
---|
18 | END MODULE TPM_FFT |
---|
Note: See
TracBrowser
for help on using the repository browser.