New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
do_loop_substitute.h90 in NEMO/trunk/src/OCE – NEMO

source: NEMO/trunk/src/OCE/do_loop_substitute.h90 @ 14325

Last change on this file since 14325 was 14215, checked in by acc, 3 years ago

trunk changes to swap the order of arguments to the DO LOOP macros. These changes result in a more natural i-j-k ordering as explained in #2595. SETTE is passed before and after these changes and results are unchanged. This fixes #2595

File size: 3.1 KB
RevLine 
[12353]1#if defined show_comments
[12340]2! These comments are not intended to be retained during preprocessing; i.e. do not define "show_comments"
[12341]3!!----------------------------------------------------------------------
[14215]4!! NEMO/OCE 4.x , NEMO Consortium (2020)
[12341]5!! Software governed by the CeCILL license (see ./LICENSE)
6!!----------------------------------------------------------------------
[12340]7! This header file contains preprocessor definitions and macros used in the do-loop substitutions introduced
8! between version 4.0 and 4.2. The primary aim of these macros is to assist in future applications of tiling
9! to improve performance. This is expected to be achieved by alternative versions of these macros in selected
[13296]10! locations. The initial introduction of these macros simply replaced all identifiable nested 2D- and 3D-loops
11! with single line statements (and adjusts indenting accordingly). Do loops were identifiable if they comformed
[12340]12! to either:
13!                                       DO jk = ....
14!   DO jj = ....                           DO jj = ...
15!      DO ji = ....                           DO ji = ...
[14072]16!         .                   OR                 .
[12341]17!         .                                      .
[12340]18!     END DO                                  END DO
19!   END DO                                 END DO
20!                                       END DO
21! and white-space variants thereof.
22!
[13296]23! Additionally, only loops with recognised jj and ji loops limits were treated; these were:
[12340]24! Lower limits of 1, 2 or fs_2
25! Upper limits of jpi, jpim1 or fs_jpim1 (for ji) or jpj, jpjm1 or fs_jpjm1 (for jj)
26!
[14215]27! The macro naming convention takes the form: DO_2D( L, R, B, T) where:
28!   L is the Left   offset from the PE's inner domain;
29!   R is the Right  offset from the PE's inner domain
[12340]30!   B is the Bottom offset from the PE's inner domain;
31!   T is the Top    offset from the PE's inner domain;
32!
33! So, given an inner domain of 2,jpim1 and 2,jpjm1, a typical example would replace:
[14072]34!
[12340]35!   DO jj = 2, jpj
36!      DO ji = 1, jpim1
[12341]37!         .
38!         .
39!      END DO
[12340]40!   END DO
41!
42! with:
43!
[14215]44!   DO_2D( 1, 0, 0, 1 )
[12341]45!      .
46!      .
[12340]47!   END_2D
[14072]48!
49! similar conventions apply to the 3D loops macros. jk loop limits are retained through macro arguments
50! and are not restricted. This includes the possibility of strides for which an extra set of DO_3DS
[13295]51! macros are defined.
[12340]52!
[14072]53! In the following definitions the inner PE domain is defined by start indices of (Nis0, Njs0) and end
[13295]54! indices of (Nie0, Nje0) where:
[12340]55!
[13295]56! Nis0 =   1 + nn_hls     Njs0 =   1 + nn_hls
57! Nie0 = jpi - nn_hls     Nje0 = jpj - nn_hls
[14072]58!
[12340]59#endif
60
[14215]61#define DO_2D(L, R, B, T) DO jj = ntsj-(B), ntej+(T)   ;   DO ji = ntsi-(L), ntei+(R)
[13982]62#define A1Di(H) ntsi-H:ntei+H
63#define A1Dj(H) ntsj-H:ntej+H
64#define A2D(H) A1Di(H),A1Dj(H)
65#define A1Di_T(T) (ntsi-nn_hls-1)*T+1:
66#define A1Dj_T(T) (ntsj-nn_hls-1)*T+1:
67#define A2D_T(T) A1Di_T(T),A1Dj_T(T)
68#define JPK  :
69#define JPTS  :
70#define KJPT  :
[12340]71
[14215]72#define DO_3D(L, R, B, T, ks, ke) DO jk = ks, ke   ;   DO_2D(L, R, B, T)
[12340]73
[14215]74#define DO_3DS(L, R, B, T, ks, ke, ki) DO jk = ks, ke, ki   ;   DO_2D(L, R, B, T)
[13286]75
[12341]76#define END_2D   END DO   ;   END DO
77#define END_3D   END DO   ;   END DO   ;   END DO
Note: See TracBrowser for help on using the repository browser.