Changeset 1482 for palm/trunk/SOURCE/poisfft.f90
- Timestamp:
- Oct 18, 2014 12:34:45 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/poisfft.f90
r1407 r1482 20 20 ! Current revisions: 21 21 ! ----------------- 22 ! 22 ! use 2d-decomposition, if accelerator boards are used 23 23 ! 24 24 ! Former revisions: … … 239 239 ! 240 240 !-- Two-dimensional Fourier Transformation in x- and y-direction. 241 IF ( pdims(2) == 1 .AND. pdims(1) > 1 ) THEN 241 IF ( pdims(2) == 1 .AND. pdims(1) > 1 .AND. num_acc_per_node == 0 ) & 242 THEN 242 243 243 244 ! … … 254 255 CALL tr_xy_ffty( ar, ar ) 255 256 256 ELSEIF ( pdims(1) == 1 .AND. pdims(2) > 1 ) THEN 257 ELSEIF ( pdims(1) == 1 .AND. pdims(2) > 1 .AND. num_acc_per_node == 0 ) & 258 THEN 257 259 258 260 !
Note: See TracChangeset
for help on using the changeset viewer.