/[MITgcm]/MITgcm/eesupp/inc/CPP_EEMACROS.h
ViewVC logotype

Annotation of /MITgcm/eesupp/inc/CPP_EEMACROS.h

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.15 - (hide annotations) (download)
Thu Aug 10 17:46:55 2006 UTC (17 years, 9 months ago) by edhill
Branch: MAIN
CVS Tags: checkpoint59, checkpoint58y_post, checkpoint58t_post, checkpoint60, checkpoint61, checkpoint58w_post, checkpoint58o_post, checkpoint58p_post, checkpoint58q_post, mitgcm_mapl_00, checkpoint58r_post, checkpoint58n_post, checkpoint59q, checkpoint59p, checkpoint59r, checkpoint59e, checkpoint59d, checkpoint59g, checkpoint59f, checkpoint59a, checkpoint59c, checkpoint59b, checkpoint59m, checkpoint59l, checkpoint59o, checkpoint59n, checkpoint59i, checkpoint59h, checkpoint59k, checkpoint58v_post, checkpoint58x_post, checkpoint59j, checkpoint61e, checkpoint58u_post, checkpoint58s_post, checkpoint61d, checkpoint61b, checkpoint61c, checkpoint61a
Changes since 1.14: +2 -1 lines
File MIME type: text/plain
add RL_IS_REAL8

1 edhill 1.15 C $Header: /u/gcmpack/MITgcm/eesupp/inc/CPP_EEMACROS.h,v 1.14 2005/11/09 17:22:08 cnh Exp $
2 adcroft 1.4 C $Name: $
3    
4 cnh 1.5 CBOP
5     C !ROUTINE: CPP_EEMACROS.h
6     C !INTERFACE:
7     C include "CPP_EEMACROS.h "
8     C !DESCRIPTION:
9     C *==========================================================*
10 dimitri 1.9 C | CPP_EEMACROS.h
11 cnh 1.5 C *==========================================================*
12     C | C preprocessor "execution environment" supporting
13     C | macros. Use this file to define macros for simplifying
14     C | execution environment in which a model runs - as opposed
15     C | to the dynamical problem the model solves.
16     C *==========================================================*
17     CEOP
18 adcroft 1.1
19     #ifndef _CPP_EEMACROS_H_
20     #define _CPP_EEMACROS_H_
21    
22     C In general the following convention applies:
23     C ALLOW - indicates an feature will be included but it may
24     C CAN have a run-time flag to allow it to be switched
25     C on and off.
26     C If ALLOW or CAN directives are "undef'd" this generally
27     C means that the feature will not be available i.e. it
28     C will not be included in the compiled code and so no
29     C run-time option to use the feature will be available.
30     C
31     C ALWAYS - indicates the choice will be fixed at compile time
32     C so no run-time option will be present
33    
34     C Flag used to indicate which flavour of multi-threading
35     C compiler directives to use. Only set one of these.
36     C USE_SOLARIS_THREADING - Takes directives for SUN Workshop
37     C compiler.
38     C USE_KAP_THREADING - Takes directives for Kuck and
39     C Associates multi-threading compiler
40     C ( used on Digital platforms ).
41     C USE_IRIX_THREADING - Takes directives for SGI MIPS
42     C Pro Fortran compiler.
43     C USE_EXEMPLAR_THREADING - Takes directives for HP SPP series
44     C compiler.
45     C USE_C90_THREADING - Takes directives for CRAY/SGI C90
46     C system F90 compiler.
47     #ifdef TARGET_SUN
48     #define USE_SOLARIS_THREADING
49 cnh 1.14 #define USING_THREADS
50 adcroft 1.1 #endif
51    
52     #ifdef TARGET_DEC
53     #define USE_KAP_THREADING
54 cnh 1.14 #define USING_THREADS
55 adcroft 1.1 #endif
56    
57     #ifdef TARGET_SGI
58     #define USE_IRIX_THREADING
59 cnh 1.14 #define USING_THREADS
60 adcroft 1.1 #endif
61    
62     #ifdef TARGET_HP
63     #define USE_EXEMPLAR_THREADING
64 cnh 1.14 #define USING_THREADS
65 adcroft 1.1 #endif
66    
67     #ifdef TARGET_CRAY_VECTOR
68     #define USE_C90_THREADING
69 cnh 1.14 #define USING_THREADS
70     #endif
71    
72     #ifdef USE_OMP_THREADING
73     #define USING_THREADS
74 adcroft 1.1 #endif
75    
76     C-- Define the mapping for the _BARRIER macro
77     C On some systems low-level hardware support can be accessed through
78     C compiler directives here.
79     #define _BARRIER CALL BARRIER(myThid)
80    
81     C-- Define the mapping for the BEGIN_CRIT() and END_CRIT() macros.
82     C On some systems we simply execute this section only using the
83     C master thread i.e. its not really a critical section. We can
84     C do this because we do not use critical sections in any critical
85     C sections of our code!
86     #define _BEGIN_CRIT(a) _BEGIN_MASTER(a)
87     #define _END_CRIT(a) _END_MASTER(a)
88    
89     C-- Define the mapping for the BEGIN_MASTER_SECTION() and
90     C END_MASTER_SECTION() macros. These are generally implemented by
91     C simply choosing a particular thread to be "the master" and have
92     C it alone execute the BEGIN_MASTER..., END_MASTER.. sections.
93 cnh 1.13
94     #define _BEGIN_MASTER(a) IF ( a .EQ. 1 ) THEN
95     #define _END_MASTER(a) ENDIF
96     CcnhDebugStarts
97     C Alternate form to the above macros that increments (decrements) a counter each
98     C time a MASTER section is entered (exited). This counter can then be checked in barrier
99     C to try and detect calls to BARRIER within single threaded sections.
100     C Using these macros requires two changes to Makefile - these changes are written
101     C below.
102     C 1 - add a filter to the CPP command to kill off commented _MASTER lines
103     C 2 - add a filter to the CPP output the converts the string N EWLINE to an actual newline.
104     C The N EWLINE needs to be changes to have no space when this macro and Makefile changes
105     C are used. Its in here with a space to stop it getting parsed by the CPP stage in these
106     C comments.
107     C #define _BEGIN_MASTER(a) IF ( a .EQ. 1 ) THEN N EWLINE CALL BARRIER_MS(a)
108     C #define _END_MASTER(a) CALL BARRIER_MU(a) N EWLINE ENDIF
109     C 'CPP = cat $< | $(TOOLSDIR)/set64bitConst.sh | grep -v '^[cC].*_MASTER' | cpp -traditional -P'
110     C .F.f:
111     C $(CPP) $(DEFINES) $(INCLUDES) | sed 's/N EWLINE/\n/' > $@
112     CcnhDebugEnds
113 adcroft 1.1
114     C-- Control storage of floating point operands
115     C On many systems it improves performance only to use
116     C 8-byte precision for time stepped variables.
117     C Constant in time terms ( geometric factors etc.. )
118     C can use 4-byte precision, reducing memory utilisation and
119     C boosting performance because of a smaller working
120     C set size. However, on vector CRAY systems this degrades
121     C performance.
122     #ifdef REAL4_IS_SLOW
123     #define _RS Real*8
124     #define RS_IS_REAL8
125 adcroft 1.4 #define _GLOBAL_SUM_R4(a,b) CALL GLOBAL_SUM_R8 ( a, b)
126 adcroft 1.1 #define _GLOBAL_MAX_R4(a,b) CALL GLOBAL_MAX_R8 ( a, b )
127 dimitri 1.6 #define _MPI_TYPE_RS MPI_DOUBLE_PRECISION
128 adcroft 1.1 #else
129     #define _RS Real*4
130     #define RS_IS_REAL4
131     #define _GLOBAL_SUM_R4(a,b) CALL GLOBAL_SUM_R4 ( a, b )
132     #define _GLOBAL_MAX_R4(a,b) CALL GLOBAL_MAX_R4 ( a, b )
133 dimitri 1.6 #define _MPI_TYPE_RS MPI_REAL
134 adcroft 1.1 #endif
135 dimitri 1.10 #define _EXCH_XY_R4(a,b) CALL EXCH_XY_RL ( a, b )
136     #define _EXCH_XYZ_R4(a,b) CALL EXCH_XYZ_RL ( a, b )
137 adcroft 1.1
138     #define _RL Real*8
139 edhill 1.15 #define RL_IS_REAL8
140 dimitri 1.10 #define _EXCH_XY_R8(a,b) CALL EXCH_XY_RL ( a, b )
141     #define _EXCH_XYZ_R8(a,b) CALL EXCH_XYZ_RL ( a, b )
142 adcroft 1.4 #define _GLOBAL_SUM_R8(a,b) CALL GLOBAL_SUM_R8 ( a, b )
143 adcroft 1.1 #define _GLOBAL_MAX_R8(a,b) CALL GLOBAL_MAX_R8 ( a, b )
144 dimitri 1.6 #define _MPI_TYPE_RL MPI_DOUBLE_PRECISION
145 adcroft 1.4
146 dimitri 1.10 #define _EXCH_XY_RS(a,b) CALL EXCH_XY_RL ( a, b )
147     #define _EXCH_XYZ_RS(a,b) CALL EXCH_XYZ_RL ( a, b )
148     #define _EXCH_XY_RL(a,b) CALL EXCH_XY_RL ( a, b )
149     #define _EXCH_XYZ_RL(a,b) CALL EXCH_XYZ_RL ( a, b )
150 dimitri 1.9
151     #define _MPI_TYPE_R4 MPI_REAL
152 ce107 1.12 #if (defined (TARGET_SGI) || defined (TARGET_AIX) || defined (TARGET_LAM))
153 dimitri 1.9 #define _MPI_TYPE_R8 MPI_DOUBLE_PRECISION
154     #else
155     #define _MPI_TYPE_R8 MPI_REAL8
156     #endif
157     #define _R4 Real*4
158     #define _R8 Real*8
159 adcroft 1.4
160     C-- Control use of JAM routines for Artic network
161     C These invoke optimized versions of "exchange" and "sum" that
162     C utilize the programmable aspect of Artic cards.
163     #ifdef LETS_MAKE_JAM
164     #define _GLOBAL_SUM_R4(a,b) CALL GLOBAL_SUM_R8_JAM ( a, b)
165     #define _EXCH_XY_R4(a,b) CALL EXCH_XY_R8_JAM ( a, b )
166     #define _EXCH_XYZ_R4(a,b) CALL EXCH_XYZ_R8_JAM ( a, b )
167     #define _EXCH_XY_R8(a,b) CALL EXCH_XY_R8_JAM ( a, b )
168     #define _EXCH_XYZ_R8(a,b) CALL EXCH_XYZ_R8_JAM ( a, b )
169     #define _GLOBAL_SUM_R8(a,b) CALL GLOBAL_SUM_R8_JAM ( a, b )
170    
171     #define _EXCH_XY_RS(a,b) CALL EXCH_XY_R8_JAM ( a, b )
172     #define _EXCH_XYZ_RS(a,b) CALL EXCH_XYZ_R8_JAM ( a, b )
173     #define _EXCH_XY_RL(a,b) CALL EXCH_XY_R8_JAM ( a, b )
174     #define _EXCH_XYZ_RL(a,b) CALL EXCH_XYZ_R8_JAM ( a, b )
175     #endif
176 adcroft 1.1
177     C-- Control use of "double" precision constants.
178     C Use D0 where it means REAL*8 but not where it means REAL*16
179     #ifdef REAL_D0_IS_16BYTES
180     #define D0
181     #endif
182    
183     C-- Substitue for 1.D variables
184     C Sun compilers do not use 8-byte precision for literals
185     C unless .Dnn is specified. CRAY vector machines use 16-byte
186     C precision when they see .Dnn which runs very slowly!
187     #ifdef REAL_D0_IS_16BYTES
188 dimitri 1.7 #define _d E
189 adcroft 1.1 #define _F64( a ) a
190     #endif
191     #ifndef REAL_D0_IS_16BYTES
192     #define _d D
193     #define _F64( a ) DFLOAT( a )
194     #endif
195    
196     #endif /* _CPP_EEMACROS_H_ */

  ViewVC Help
Powered by ViewVC 1.1.22