forked from C2SM-RCM/buildenv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.arolla.sh
More file actions
308 lines (265 loc) · 8.91 KB
/
env.arolla.sh
File metadata and controls
308 lines (265 loc) · 8.91 KB
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
#!/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
writeModuleEnv()
{
module list -t 2>&1 | grep -v alps | grep -v '^- Package' | grep -v '^Currently Loaded' | sed 's/^/module load /g' > $1
}
createModuleCheckPoint()
{
previous_module_tmp=$(mktemp)
writeModuleEnv ${previous_module_tmp}
module purge
}
restoreModuleCheckPoint()
{
module purge
source ${previous_module_tmp}
rm ${previous_module_tmp}
unset previous_module_tmp
}
# 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=(cray claw-cray)
fcompiler_cmds=(ftn)
export BASE_MODULES="craype-haswell"
export NVIDIA_CUDA_ARCH="sm_70"
# BOOST
export BOOST_PATH="/users/jenkins/Code/boost-1.49.0/"
# default options
if [ -z "${target}" ] ; then
target="gpu"
fi
if [ -z "${compiler}" ] ; then
compiler="cray"
fi
if [ -z "${cuda_arch}" ] ; then
cuda_arch="${NVIDIA_CUDA_ARCH}"
fi
# fortran compiler command
if [ -z "${fcompiler_cmd}" ] ; then
if [ "${compiler}" == "gnu" ] ; then
fcompiler_cmd="gfortran"
else
fcompiler_cmd="ftn"
fi
fi
}
get_fcompiler_cmd()
{
local __resultvar=$1
local __compiler=$2
if [ "${compiler}" == "gnu" ] || [ "${compiler}" == "claw-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?
#
setCppEnvironment()
{
createModuleCheckPoint
old_prgenv=`module list -t 2>&1 | grep 'PrgEnv-'`
case "${compiler}" in
gnu )
# Do nothing
;;
* )
echo "Note : ${compiler} is not supported on kesch for c++ compilation, forcing gnu"
;;
esac
export ENVIRONMENT_TEMPFILE=$(mktemp)
cat > $ENVIRONMENT_TEMPFILE <<- EOF
# Generated with the build script
# implicit module purge
module load craype-x86-skylake
module load craype-network-infiniband
module load slurm
# Gnu env
module load PrgEnv-gnu
module switch mvapich2/2.3.1-gcc-7.4.0-2.31.1 mvapich2/2.2-gcc-7.4.0-2.31.1-cuda-9.2
module load cuda92/toolkit/9.2.88 craype-accel-nvidia70
module load cmake
EOF
module purge
source $ENVIRONMENT_TEMPFILE
dycore_gpp='g++'
dycore_gcc='gcc'
cuda_gpp='g++'
boost_path="${BOOST_PATH}/include"
#cudatk_include_path="${cudatk_path}"
use_mpi_compiler=OFF
# 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
export OLD_LD_LIBRARY_PATH=$LD_LIBRARY_PATH
export LD_LIBRARY_PATH=${CRAY_LD_LIBRARY_PATH}:${LD_LIBRARY_PATH}
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()
{
#XL: HACK, unset LD_PRELOAD
unset LD_PRELOAD
rm $ENVIRONMENT_TEMPFILE
unset ENVIRONMENT_TEMPFILE
unset dycore_openmp
unset dycore_gpp
unset dycore_gcc
unset cuda_gpp
unset boost_path
unset use_mpi_compiler
unset old_prgenv
export LD_LIBRARY_PATH=${OLD_LD_LIBRARY_PATH}
unset OLD_LD_LIBRARY_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()
{
createModuleCheckPoint
old_prgenv=`module list -t 2>&1 | grep 'PrgEnv-'`
export ENVIRONMENT_TEMPFILE=$(mktemp)
# Set grib-api version and cosmo ressources
export GRIBAPI_VERSION="libgrib_api_1.20.0p4"
export GRIBAPI_COSMO_RESOURCES_VERSION="v1.20.0.2"
case "${compiler}" in
*cray )
# Provided by CSCS
cat > $ENVIRONMENT_TEMPFILE <<-EOF
# Generated with the build script
# implicit module purge
module load craype-x86-skylake
module load craype-network-infiniband
module load slurm
# Require to see the mvapich2.2rc1
module load PrgEnv-cce/18.12
module switch cray-mvapich2/2.3 cray-mvapich2_cuda92/2.2rc1
module load craype-accel-nvidia70
module load netCDF-Fortran/4.4.4-CrayCCE-18.12
export GRIBAPI_COSMO_RESOURCES_VERSION=${GRIBAPI_COSMO_RESOURCES_VERSION}
EOF
export FC="ftn -D__CRAY_FORTRAN__"
;;
*gnu )
cat > $ENVIRONMENT_TEMPFILE <<-EOF
# Generated with the build script
# implicit module purge
module load craype-x86-skylake
module load craype-network-infiniband
module load slurm
# Require to see the mvapich2.2rc1
module load PrgEnv-gnu/18.12
export GRIBAPI_COSMO_RESOURCES_VERSION=${GRIBAPI_COSMO_RESOURCES_VERSION}
EOF
export FC=gfortran
;;
*pgi )
cat > $ENVIRONMENT_TEMPFILE <<-EOF
# Generated with the build script
# implicit module purge
module load craype-x86-skylake
module load craype-network-infiniband
module load slurm
# Require to see the mvapich2.2rc1
module load PrgEnv-gnu/18.12
export GRIBAPI_COSMO_RESOURCES_VERSION=${GRIBAPI_COSMO_RESOURCES_VERSION}
EOF
export FC=mpif90
;;
* )
echo "ERROR: ${compiler} Unsupported compiler encountered in setFortranEnvironment" 1>&2
exit 1
esac
module purge
source $ENVIRONMENT_TEMPFILE
# Add an explicit linker line for GCC 4.9.3 library to provide C++11 support
export LDFLAGS="-L$EBROOTGCC/lib64 ${LDFLAGS}"
export OLD_LD_LIBRARY_PATH=$LD_LIBRARY_PATH
export LD_LIBRARY_PATH=${CRAY_LD_LIBRARY_PATH}:${LD_LIBRARY_PATH}
# We have gcc for gnu, cray and pgi environments
export CXX=g++
export CC=gcc
# CLAW Compiler using the correct preprocessor
export CLAWFC="${installdir}/claw_v1.2.3/${compiler}/bin/clawfc"
export CLAWXMODSPOOL="${installdir}/../omni-xmod-pool"
}
# 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()
{
rm $ENVIRONMENT_TEMPFILE
unset ENVIRONMENT_TEMPFILE
unset old_prgenv
export LD_LIBRARY_PATH=${OLD_LD_LIBRARY_PATH}
unset OLD_LD_LIBRARY_PATH
unset CXX
unset CC
unset FC
}
export -f setFortranEnvironment
export -f createModuleCheckPoint
export -f writeModuleEnv
export -f setupDefaults
export -f get_fcompiler_cmd
export -f unsetFortranEnvironment
export -f restoreModuleCheckPoint