Ignore:
Timestamp:
Aug 26, 2013 9:31:42 AM (11 years ago)
Author:
raasch
Message:

overlapping execution of fft and transpositions (MPI_ALLTOALL), but real overlapping is not activated so far,
fftw implemented for 1D-decomposition
resorting of arrays moved to separate routines resort_for_...
bugfix in mbuild concerning Makefile_check

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/calc_spectra.f90

    r1121 r1216  
    2020! Current revisions:
    2121! -----------------
    22 !
     22! resorting of array moved to separate routine resort_for_zx,
     23! one argument removed from the transpose_..d routines
    2324!
    2425! Former revisions:
     
    121122#if defined( __parallel )
    122123          IF ( pdims(2) /= 1 )  THEN
    123              CALL transpose_zx( d, tend, d )
     124             CALL resort_for_zx( d, tend )
     125             CALL transpose_zx( tend, d )
    124126          ELSE
    125              CALL transpose_yxd( d, tend, d )
     127             CALL transpose_yxd( d, d )
    126128          ENDIF
    127129          CALL calc_spectra_x( d, pr, m )
     
    153155
    154156#if defined( __parallel )
    155           CALL transpose_zyd( d, tend, d )
     157          CALL transpose_zyd( d, d )
    156158          CALL calc_spectra_y( d, pr, m )
    157159#else
Note: See TracChangeset for help on using the changeset viewer.