forked from C2SM-RCM/buildenv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
env.dom.sh
321 lines (283 loc) · 8.74 KB
/
env.dom.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
#!/bin/bash
# This script contains functions for setting up machine specific compile
# environments for the dycore and the Fortran parts. Namely, the following
# functions must be defined in this file:
#
# setupDefaults setup global default options for this platform
# setCppEnvironment setup environment for dycore compilation
# unsetCppEnvironment restore environment after dycore compilation
# setFortranEnvironment setup environment for Fortran compilation
# unsetFortranEnvironment restore environment after Fortran compilation
# Setup global defaults and variables
#
# upon exit, the following global variables need to be set:
# targets list of possible targets (e.g. gpu, cpu)
# compilers list of possible compilers for Fortran parts
# target default target
# BOOST_PATH The boost installation path (for both fortran and C++ dependencies)
# compiler default compiler to use for Fortran parts
# debug build in debugging mode (yes/no)
# cleanup clean before build (yes/no)
# cuda_arch CUDA architecture version to use (e.g. sm_35, use blank for CPU target)
setupDefaults()
{
# available options
targets=(cpu gpu)
compilers=(gnu cray pgi)
fcompiler_cmds=(ftn)
# Daint and DOM environement should be indentical and using
# the Daint installed Boost is fine
# Module display boost
export BOOST_PATH="/project/c14/install/daint/boost/boost_1_49_0"
# Check if ncurses was loaded before
export BUILDENV_NCURSES_LOADED=`module list -t 2>&1 | grep "ncurses"`
# default options
if [ -z "${target}" ] ; then
target="gpu"
fi
if [ -z "${compiler}" ] ; then
compiler="cray"
fi
if [ -z "${cuda_arch}" ] ; then
cuda_arch="sm_60"
fi
# fortran compiler command
if [ -z "${fcompiler_cmd}" ] ; then
fcompiler_cmd="ftn"
fi
}
get_fcompiler_cmd()
{
local __resultvar=$1
local __compiler=$2
if [ "${compiler}" == "gnu" ] ; then
myresult="gfortran"
else
myresult="ftn"
fi
if [[ "$__resultvar" ]]; then
eval $__resultvar="'$myresult'"
else
echo "$myresult"
fi
}
# This function loads modules and sets up variables for compiling in C++
#
# upon entry, the following global variables need to be set:
# compiler Compiler to use to compile the Fortran parts of the code
#
# upon exit, the following global variables need to be set:
# old_prgenv Default PrgEnv-XXX module loaded on Cray machines
# dycore_gpp C++ compiler for dycore
# dycore_gcc C compiler for dycore
# cuda_gpp C++ used by nvcc as backend
# boost_path path to the Boost installation to use (deprecated, see BOOST_PATH)
# use_mpi_compiler use MPI compiler wrappers?
# mpi_path path to the MPI installation to use
#
setCppEnvironment()
{
# switch to programming environment (only on Cray)
#old_prgenv=" "
old_prgenv=`module list -t 2>&1 | grep 'PrgEnv-'`
if [ -z "${old_prgenv}" ] ; then
module load PrgEnv-gnu
else
module swap ${old_prgenv} PrgEnv-gnu
fi
# standard modules (part 1)
if [ "${target}" == "gpu" ] ; then
module load craype-accel-nvidia60
fi
module load CMake
# Fortran compiler specific modules and setup
case "${compiler}" in
cray )
;;
gnu )
;;
pgi )
;;
* )
echo "ERROR: Unsupported compiler encountered in setCppEnvironment" 1>&2
exit 1
esac
# standard modules (part 2)
# set global variables
if [ "${compiler}" == "gnu" ] ; then
dycore_openmp=ON # OpenMP only works if GNU is also used for Fortran parts
else
dycore_openmp=OFF # Otherwise, switch off
fi
dycore_gpp='CC'
dycore_gcc='cc'
cuda_gpp='g++'
boost_path="${BOOST_PATH}/include"
use_mpi_compiler=OFF
mpi_path=${CRAY_MPICH2_DIR}
export CXX=g++
export CC=gcc
}
# This function unloads modules and removes variables for compiling in C++
#
# upon entry, the following global variables need to be set:
# compiler Compiler to use to compile the Fortran parts of the code
# old_prgenv Default PrgEnv-XXX module loaded on Cray machines
#
unsetCppEnvironment()
{
# remove standard modules (part 2)
# remove Fortran compiler specific modules
case "${compiler}" in
cray )
;;
gnu )
;;
pgi )
;;
* )
echo "ERROR: Unsupported compiler encountered in unsetCppEnvironment" 1>&2
exit 1
esac
module unload CMake
# unload curses in case it was already loaded
if [ -z "${BUILDENV_NCURSES_LOADED}" ] ; then
module unload ncurses
fi
# remove standard modules (part 1)
if [ "${target}" == "gpu" ] ; then
module unload craype-accel-nvidia60
fi
# restore programming environment (only on Cray)
if [ -z "${old_prgenv}" ] ; then
module unload PrgEnv-gnu
else
module swap PrgEnv-gnu ${old_prgenv}
fi
unset old_prgenv
# unset global variables
unset dycore_openmp
unset dycore_gpp
unset dycore_gcc
unset cuda_gpp
unset boost_path
unset use_mpi_compiler
unset mpi_path
unset CXX
unset CC
}
# This function loads modules and sets up variables for compiling the Fortran part
#
# upon entry, the following global variables need to be set:
# compiler Compiler to use to compile the Fortran part of the code
#
# upon exit, the following global variables need to be set:
# old_prgenv Default PrgEnv-XXX module loaded on Cray machines
#
setFortranEnvironment()
{
# switch to GNU programming environment (only on Cray machines)
#old_prgenv=" "
old_prgenv=`module list -t 2>&1 | grep 'PrgEnv-'`
if [ -z "${old_prgenv}" ] ; then
module load PrgEnv-${compiler}
else
module swap ${old_prgenv} PrgEnv-${compiler}
fi
old_ldflags="${LDFLAGS}"
# standard modules (part 1)
module load CMake
if [ "${target}" == "gpu" ] ; then
module load craype-accel-nvidia60
fi
# compiler specific modules
case "${compiler}" in
cray )
module load cce/8.7.1
# Load gcc/5.3.0 to link with the C++ Dynamical Core
module load gcc/5.3.0
# Override C++ and C compiler
export CXX=$GCC_PATH/snos/bin/g++
export CC=$GCC_PATH/snos/bin/gcc
export FC=ftn
export LDFLAGS="-L$GCC_PATH/snos/lib64 ${LDFLAGS}"
;;
gnu )
module unload gcc
module load gcc/5.3.0
export CXX=CC
export CC=cc
export FC=ftn
;;
pgi )
module unload pgi
module load pgi/18.3.0
# Load gcc/5.3.0 to link with the C++ Dynamical Core
module load gcc/5.3.0
export CXX=$GCC_PATH/snos/bin/g++
export CC=$GCC_PATH/snos/bin/gcc
export FC=ftn
export LDFLAGS="-L/opt/gcc/5.3.0/snos/lib64 ${LDFLAGS}"
;;
* )
echo "ERROR: Unsupported compiler encountered in setFortranEnvironment" 1>&2
exit 1
esac
# standard modules (part 2)
module load cray-netcdf
}
# This function unloads modules and removes variables for compiling the Fortran parts
#
# upon entry, the following global variables need to be set:
# compiler Compiler to use to compile the Fortran parts of the code
# old_prgenv Default PrgEnv-XXX module loaded on Cray machines
#
unsetFortranEnvironment()
{
# remove standard modules (part 2)
module unload cray-netcdf
# remove compiler specific modules
case "${compiler}" in
cray )
module unload gcc/5.3.0
;;
gnu )
module unload gcc/5.3.0
module load gcc
;;
pgi )
module unload gcc/5.3.0
;;
* )
echo "ERROR: Unsupported compiler encountered in unsetFortranEnvironment" 1>&2
exit 1
esac
# remove standard modules (part 1)
module unload CMake
# unload curses in case it was already loaded
if [ -z "${BUILDENV_NCURSES_LOADED}" ] ; then
module unload ncurses
fi
# GPU specific unload
if [ "${target}" == "gpu" ] ; then
module unload craype-accel-nvidia60
fi
# swap back to original programming environment (only on Cray machines)
if [ -z "${old_prgenv}" ] ; then
module unload PrgEnv-${compiler}
else
module swap PrgEnv-${compiler} ${old_prgenv}
fi
unset old_prgenv
export LDFLAGS="${old_ldflags}"
unset old_ldflags
unset CXX
unset CC
unset FC
}
export -f setFortranEnvironment
export -f unsetFortranEnvironment
export -f unsetCppEnvironment
export -f setupDefaults
export -f setCppEnvironment
export -f get_fcompiler_cmd