1 | #!/bin/bash |
---|
2 | # $Id: makelmdz_fcm 1696 2012-12-19 09:30:26Z emillour $ |
---|
3 | # This is a script in Bash. |
---|
4 | |
---|
5 | # FH : on ne crée plus le fichier arch.mk qui est supposé exister par |
---|
6 | # FH : ailleurs. |
---|
7 | # FH : ulterieurement, ce fichier sera pré-existant pour une série |
---|
8 | # FH : de configurations en versions optimisées et debug qui seront |
---|
9 | # FH : liés (ln -s) avec arch.mk en fonction de l'architecture. |
---|
10 | # FH : Pour le moment, cette version est en test et on peut créer les |
---|
11 | # FH : arch.mk en lançant une première fois makegcm. |
---|
12 | # |
---|
13 | ##set -x |
---|
14 | ######################################################################## |
---|
15 | # options par defaut pour la commande make |
---|
16 | ######################################################################## |
---|
17 | |
---|
18 | dim="96x72x19" |
---|
19 | physique=lmd |
---|
20 | filtre=filtrez |
---|
21 | grille=reg |
---|
22 | couple=false |
---|
23 | veget=false |
---|
24 | chimie=false |
---|
25 | parallel=none |
---|
26 | paramem="par" |
---|
27 | compil_mod=prod |
---|
28 | io=ioipsl |
---|
29 | LIBPREFIX="" |
---|
30 | cosp=false |
---|
31 | |
---|
32 | LMDGCM=`/bin/pwd` |
---|
33 | LIBOGCM=$LMDGCM/libo |
---|
34 | LIBFGCM=$LMDGCM/libf |
---|
35 | COSP_PATH=$LMDGCM/.void_dir |
---|
36 | fcm_path=$LMDGCM/tools/fcm/bin |
---|
37 | |
---|
38 | ######################################################################## |
---|
39 | # Quelques initialisations de variables du shell. |
---|
40 | ######################################################################## |
---|
41 | |
---|
42 | CPP_KEY="" |
---|
43 | INCLUDE="" |
---|
44 | LIB="" |
---|
45 | adjnt="" |
---|
46 | COMPIL_FFLAGS="%PROD_FFLAGS" |
---|
47 | PARA_FFLAGS="" |
---|
48 | PARA_LD="" |
---|
49 | EXT_SRC="" |
---|
50 | |
---|
51 | ######################################################################## |
---|
52 | # lecture des options de mymake |
---|
53 | ######################################################################## |
---|
54 | |
---|
55 | while (($# > 0)) |
---|
56 | do |
---|
57 | case $1 in |
---|
58 | "-h") cat <<fin |
---|
59 | manuel complet sur http://... |
---|
60 | Usage : |
---|
61 | makegcm [options] -m arch exec |
---|
62 | [-h] : manuel abrégé |
---|
63 | [-d [[IMx]JMx]LM] : IM, JM, LM sont les dims en x, y, z (def: $dim) |
---|
64 | [-p PHYS] : compilation avec la physique libf/phyPHYS, (def: lmd) |
---|
65 | [-prod / -dev / -debug] : compilation en mode production (default) / developpement / debug . |
---|
66 | [-c false/MPI1/MPI2] : couplé océan : MPI1/MPI2/false (def: false) |
---|
67 | [-v false/true] : avec ou sans végétation (def: false) |
---|
68 | [-chimie INCA/false] : avec ou sans model de chimie INCA (def: false) |
---|
69 | [-parallel none/mpi/omp/mpi_omp] : parallelisation (default: none) : mpi, openmp ou mixte mpi_openmp |
---|
70 | [-g GRI] : conf. grille dans dyn3d/GRI_xy.h (def: reg inclue un zoom) |
---|
71 | [-io IO] : choix d'une librairie I/O, experts (def: ioipsl) |
---|
72 | [-include INCLUDES] : variables supplementaires pour include |
---|
73 | [-cpp CPP_KEY] : cle cpp supplementaires |
---|
74 | [-adjnt] : adjoint, a remettre en route ... |
---|
75 | [-mem] : version memoire reduite (si en mode parallele) |
---|
76 | [-filtre NOMFILTRE] : prend le filtre dans libf/NOMFILTRE (def: filtrez) |
---|
77 | [-link LINKS] : liens optionels avec d'autres librairies |
---|
78 | [-fcm_path path] : chemin pour fcm (def: tools/fcm/bin) |
---|
79 | [-ext_src path] : chemin d'un repertoire source avec des sources externe a compiler avec le modele |
---|
80 | -arch nom_arch : nom de l'architecture cible |
---|
81 | exec : exécutable généré |
---|
82 | fin |
---|
83 | exit;; |
---|
84 | |
---|
85 | "-d") |
---|
86 | dim=$2 ; shift ; shift ;; |
---|
87 | |
---|
88 | "-O") |
---|
89 | echo "option obsolete dans cette version intermediaire de makegcm" |
---|
90 | exit;; |
---|
91 | |
---|
92 | "-p") |
---|
93 | physique="$2" ; shift ; shift ;; |
---|
94 | |
---|
95 | "-g") |
---|
96 | grille="$2" ; shift ; shift ;; |
---|
97 | |
---|
98 | "-c") |
---|
99 | couple="$2" ; shift ; shift ;; |
---|
100 | |
---|
101 | "-prod") |
---|
102 | compil_mod="prod" ; shift ;; |
---|
103 | |
---|
104 | "-dev") |
---|
105 | compil_mod="dev" ; shift ;; |
---|
106 | |
---|
107 | "-debug") |
---|
108 | compil_mod="debug" ; shift ;; |
---|
109 | |
---|
110 | "-io") |
---|
111 | io="$2" ; shift ; shift ;; |
---|
112 | |
---|
113 | "-v") |
---|
114 | veget="$2" ; shift ; shift ;; |
---|
115 | |
---|
116 | "-chimie") |
---|
117 | chimie="$2" ; shift ; shift ;; |
---|
118 | |
---|
119 | "-parallel") |
---|
120 | parallel="$2" ; shift ; shift ;; |
---|
121 | |
---|
122 | "-include") |
---|
123 | INCLUDE="$INCLUDE -I$2" ; shift ; shift ;; |
---|
124 | |
---|
125 | "-cpp") |
---|
126 | CPP_KEY="$CPP_KEY $2" ; shift ; shift ;; |
---|
127 | |
---|
128 | "-adjnt") |
---|
129 | echo "option a reactiver ";exit |
---|
130 | opt_dep="$opt_dep adjnt" ; adjnt="-ladjnt -ldyn3d " |
---|
131 | optim="$optim -Dadj" ; shift ;; |
---|
132 | |
---|
133 | "-cosp") |
---|
134 | cosp="$2" ; shift ; shift ;; |
---|
135 | |
---|
136 | "-mem") |
---|
137 | paramem="mem" ; shift ;; |
---|
138 | |
---|
139 | "-filtre") |
---|
140 | filtre=$2 ; shift ; shift ;; |
---|
141 | |
---|
142 | "-link") |
---|
143 | LIB="$LIB $2" ; shift ; shift ;; |
---|
144 | |
---|
145 | "-fcm_path") |
---|
146 | fcm_path=$2 ; shift ; shift ;; |
---|
147 | |
---|
148 | "-ext_src") |
---|
149 | EXT_SRC=$2 ; shift ; shift ;; |
---|
150 | |
---|
151 | "-arch") |
---|
152 | arch=$2 ; shift ; shift ;; |
---|
153 | |
---|
154 | *) |
---|
155 | code="$1" ; shift ;; |
---|
156 | esac |
---|
157 | done |
---|
158 | |
---|
159 | ############################################################### |
---|
160 | # mettre le chemin du fcm dans le path |
---|
161 | ############################################################### |
---|
162 | export PATH=${fcm_path}:${PATH} |
---|
163 | |
---|
164 | echo "Chemin du fcm utlise :" |
---|
165 | which fcm |
---|
166 | |
---|
167 | ############################################################### |
---|
168 | # lecture des chemins propres à l'architecture de la machine # |
---|
169 | ############################################################### |
---|
170 | rm -f .void_file |
---|
171 | echo > .void_file |
---|
172 | rm -rf .void_dir |
---|
173 | mkdir .void_dir |
---|
174 | rm -f arch.path |
---|
175 | ln -s arch/arch-${arch}.path ./arch.path |
---|
176 | source arch.path |
---|
177 | |
---|
178 | ######################################################################## |
---|
179 | # Definition des clefs CPP, des chemins des includes et modules |
---|
180 | # et des libraries |
---|
181 | ######################################################################## |
---|
182 | |
---|
183 | if [[ "$compil_mod" == "prod" ]] |
---|
184 | then |
---|
185 | COMPIL_FFLAGS="%PROD_FFLAGS" |
---|
186 | elif [[ "$compil_mod" == "dev" ]] |
---|
187 | then |
---|
188 | COMPIL_FFLAGS="%DEV_FFLAGS" |
---|
189 | elif [[ "$compil_mod" == "debug" ]] |
---|
190 | then |
---|
191 | COMPIL_FFLAGS="%DEBUG_FFLAGS" |
---|
192 | fi |
---|
193 | |
---|
194 | if [[ "$physique" != "nophys" ]] |
---|
195 | then |
---|
196 | #We'll use some physics |
---|
197 | CPP_KEY="$CPP_KEY CPP_PHYS" |
---|
198 | if [[ "${physique:0:3}" == "lmd" ]] |
---|
199 | then |
---|
200 | #For lmd physics, default planet type is Earth |
---|
201 | CPP_KEY="$CPP_KEY CPP_EARTH" |
---|
202 | fi |
---|
203 | fi |
---|
204 | |
---|
205 | if [[ "$chimie" == "INCA" ]] |
---|
206 | then |
---|
207 | CPP_KEY="$CPP_KEY INCA" |
---|
208 | INCLUDE="$INCLUDE -I${INCA_INCDIR}" |
---|
209 | LIB="$LIB -L${INCA_LIBDIR} -lchimie" |
---|
210 | fi |
---|
211 | |
---|
212 | if [[ "$couple" != "false" ]] |
---|
213 | then |
---|
214 | CPP_KEY="$CPP_KEY CPP_COUPLE" |
---|
215 | INCLUDE="$INCLUDE -I${OASIS_INCDIR}" |
---|
216 | LIB="$LIB -L${OASIS_LIBDIR} -lpsmile.${couple} -lmpp_io" |
---|
217 | fi |
---|
218 | |
---|
219 | if [[ "$parallel" == "mpi" ]] |
---|
220 | then |
---|
221 | CPP_KEY="$CPP_KEY CPP_PARA CPP_MPI" |
---|
222 | PARA_FFLAGS="%MPI_FFLAGS" |
---|
223 | PARA_LD="%MPI_LD" |
---|
224 | elif [[ "$parallel" == "omp" ]] |
---|
225 | then |
---|
226 | CPP_KEY="$CPP_KEY CPP_PARA CPP_OMP" |
---|
227 | PARA_FFLAGS="%OMP_FFLAGS" |
---|
228 | PARA_LD="%OMP_LD" |
---|
229 | elif [[ "$parallel" == "mpi_omp" ]] |
---|
230 | then |
---|
231 | CPP_KEY="$CPP_KEY CPP_PARA CPP_MPI CPP_OMP" |
---|
232 | PARA_FFLAGS="%MPI_FFLAGS %OMP_FFLAGS" |
---|
233 | PARA_LD="%MPI_LD %OMP_LD" |
---|
234 | fi |
---|
235 | |
---|
236 | if [[ ( "$parallel" == "omp" || "$parallel" == "mpi_omp" ) \ |
---|
237 | && "$compil_mod" == "debug" ]] |
---|
238 | then |
---|
239 | echo "Usually, parallelization with OpenMP requires some optimization." |
---|
240 | echo "We suggest switching to \"-dev\"." |
---|
241 | fi |
---|
242 | |
---|
243 | if [[ "$veget" == "true" ]] |
---|
244 | then |
---|
245 | CPP_KEY="$CPP_KEY CPP_VEGET" |
---|
246 | INCLUDE="${INCLUDE} -I${ORCH_INCDIR}" |
---|
247 | LIB="${LIB} -L${ORCH_LIBDIR} -l${LIBPREFIX}sechiba -l${LIBPREFIX}parameters -l${LIBPREFIX}stomate -l${LIBPREFIX}parallel -l${LIBPREFIX}orglob" |
---|
248 | fi |
---|
249 | |
---|
250 | if [[ $io == ioipsl ]] |
---|
251 | then |
---|
252 | CPP_KEY="$CPP_KEY CPP_IOIPSL" |
---|
253 | INCLUDE="$INCLUDE -I${IOIPSL_INCDIR}" |
---|
254 | LIB="$LIB -L${IOIPSL_LIBDIR} -l${LIBPREFIX}ioipsl" |
---|
255 | fi |
---|
256 | if [[ "$cosp" == "true" ]] |
---|
257 | then |
---|
258 | CPP_KEY="$CPP_KEY CPP_COSP" |
---|
259 | COSP_PATH="$LIBFGCM/cosp" |
---|
260 | # LIB="${LIB} -l${LIBPREFIX}cosp" |
---|
261 | fi |
---|
262 | |
---|
263 | INCLUDE="$INCLUDE ${NETCDF_INCDIR}" |
---|
264 | LIB="$LIB ${NETCDF_LIBDIR}" |
---|
265 | |
---|
266 | ######################################################################## |
---|
267 | # calcul du nombre de dimensions |
---|
268 | ######################################################################## |
---|
269 | |
---|
270 | |
---|
271 | dim_full=$dim |
---|
272 | dim=`echo $dim | sed -e 's/[^0-9]/ /g'` |
---|
273 | set $dim |
---|
274 | dimc=$# |
---|
275 | echo calcul de la dimension |
---|
276 | echo dim $dim |
---|
277 | echo dimc $dimc |
---|
278 | |
---|
279 | |
---|
280 | ######################################################################## |
---|
281 | # Gestion des dimensions du modele. |
---|
282 | # on cree ou remplace le fichier des dimensions |
---|
283 | ######################################################################## |
---|
284 | |
---|
285 | cd $LIBFGCM/grid |
---|
286 | if [[ -f dimensions.h ]] |
---|
287 | then |
---|
288 | echo 'ATTENTION: vous etes sans doute en train de compiler le modele par ailleurs' |
---|
289 | echo "Attendez que la premiere compilation soit terminee pour relancer la suivante." |
---|
290 | echo "Si vous etes sur que vous ne compilez pas le modele par ailleurs," |
---|
291 | echo vous pouvez continuer en repondant oui. |
---|
292 | echo "Voulez-vous vraiment continuer?" |
---|
293 | read reponse |
---|
294 | if [[ $reponse == "oui" ]] |
---|
295 | then |
---|
296 | \rm -f $LIBFGCM/grid/dimensions.h |
---|
297 | else |
---|
298 | exit |
---|
299 | fi |
---|
300 | fi |
---|
301 | |
---|
302 | |
---|
303 | cd $LIBFGCM/grid/dimension |
---|
304 | ./makdim $dim |
---|
305 | cat $LIBFGCM/grid/dimensions.h |
---|
306 | cd $LMDGCM |
---|
307 | |
---|
308 | |
---|
309 | ######################################################################## |
---|
310 | # Differentes dynamiques (3d, 2d, 1d) |
---|
311 | ######################################################################## |
---|
312 | |
---|
313 | dimension=`echo $dim | wc -w` |
---|
314 | echo dimension $dimension |
---|
315 | |
---|
316 | if (( $dimension == 3 )) |
---|
317 | then |
---|
318 | cd $LIBFGCM/grid |
---|
319 | \rm fxyprim.h |
---|
320 | cp -p fxy_${grille}.h fxyprim.h |
---|
321 | else |
---|
322 | echo "Probleme dans les dimensions de la dynamique !!" |
---|
323 | echo "Non reactive pour l'instant !!!" |
---|
324 | fi |
---|
325 | |
---|
326 | ###################################################################### |
---|
327 | # Traitement special pour le nouveau rayonnement de Laurent Li. |
---|
328 | # ---> YM desactive pour le traitemement en parallele |
---|
329 | ###################################################################### |
---|
330 | |
---|
331 | #if [[ -f $libf/phy$physique/raddim.h ]] |
---|
332 | #then |
---|
333 | # if [[ -f $libf/phy$physique/raddim.$dimh.h ]] |
---|
334 | #then |
---|
335 | # \rm -f $libf/phy$physique/raddim.h |
---|
336 | # cp -p $libf/phy$physique/raddim.$dimh.h $libf/phy$physique/raddim.h |
---|
337 | # echo $libf/phy$physique/raddim.$dimh.h |
---|
338 | # cat $libf/phy$physique/raddim.h |
---|
339 | # else |
---|
340 | # echo On peut diminuer la taille de l executable en creant |
---|
341 | # echo le fichier $libf/phy$physique/raddim.$dimh.h |
---|
342 | # \cp -p $libf/phy$physique/raddim.defaut.h $libf/phy$physique/raddim.h |
---|
343 | # fi |
---|
344 | #fi |
---|
345 | |
---|
346 | ###################################################################### |
---|
347 | # Gestion du filtre qui n'existe qu'en 3d. |
---|
348 | ###################################################################### |
---|
349 | |
---|
350 | if (( `expr $dimc \> 2` == 1 )) |
---|
351 | then |
---|
352 | filtre="FILTRE=$filtre" |
---|
353 | else |
---|
354 | filtre="FILTRE= L_FILTRE= " |
---|
355 | fi |
---|
356 | echo MACRO FILTRE $filtre |
---|
357 | |
---|
358 | echo $dimc |
---|
359 | |
---|
360 | |
---|
361 | |
---|
362 | ###################################################################### |
---|
363 | # Creation du suffixe de la configuration |
---|
364 | ###################################################################### |
---|
365 | |
---|
366 | |
---|
367 | SUFF_NAME=_${dim_full} |
---|
368 | SUFF_NAME=${SUFF_NAME}_phy${physique} |
---|
369 | |
---|
370 | if [[ "$parallel" != "none" ]] |
---|
371 | then |
---|
372 | SUFF_NAME=${SUFF_NAME}_para |
---|
373 | DYN=dyn${dimc}d${paramem} |
---|
374 | if [[ "$paramem" == "mem" ]] |
---|
375 | then |
---|
376 | SUFF_NAME=${SUFF_NAME}_${paramem} |
---|
377 | fi |
---|
378 | else |
---|
379 | SUFF_NAME=${SUFF_NAME}_seq |
---|
380 | DYN=dyn${dimc}d |
---|
381 | fi |
---|
382 | |
---|
383 | if [[ $veget == "true" ]] |
---|
384 | then |
---|
385 | SUFF_NAME=${SUFF_NAME}_orch |
---|
386 | fi |
---|
387 | |
---|
388 | if [[ $couple != "false" ]] |
---|
389 | then |
---|
390 | SUFF_NAME=${SUFF_NAME}_couple |
---|
391 | fi |
---|
392 | |
---|
393 | if [[ $chimie == "INCA" ]] |
---|
394 | then |
---|
395 | SUFF_NAME=${SUFF_NAME}_inca |
---|
396 | fi |
---|
397 | |
---|
398 | cd $LMDGCM |
---|
399 | config_fcm="config.fcm" |
---|
400 | rm -f $config_fcm |
---|
401 | touch $config_fcm |
---|
402 | rm -f bin/${code}${SUFF_NAME}.e |
---|
403 | rm -f arch.fcm |
---|
404 | rm -f arch.opt |
---|
405 | |
---|
406 | echo "%ARCH $arch" >> $config_fcm |
---|
407 | echo "%INCDIR $INCLUDE" >> $config_fcm |
---|
408 | echo "%LIB $LIB" >> $config_fcm |
---|
409 | echo "%ROOT_PATH $PWD" >> $config_fcm |
---|
410 | echo "%LIBF $LIBFGCM" >> $config_fcm |
---|
411 | echo "%LIBO $LIBOGCM" >> $config_fcm |
---|
412 | echo "%DYN $DYN" >> $config_fcm |
---|
413 | echo "%PHYS phy${physique}" >> $config_fcm |
---|
414 | echo "%COSP $COSP_PATH" >> $config_fcm |
---|
415 | echo "%CPP_KEY $CPP_KEY" >> $config_fcm |
---|
416 | echo "%EXEC $code" >> $config_fcm |
---|
417 | echo "%SUFF_NAME $SUFF_NAME" >> $config_fcm |
---|
418 | echo "%COMPIL_FFLAGS $COMPIL_FFLAGS" >> $config_fcm |
---|
419 | echo "%PARA_FFLAGS $PARA_FFLAGS" >> $config_fcm |
---|
420 | echo "%PARA_LD $PARA_LD" >> $config_fcm |
---|
421 | echo "%EXT_SRC $EXT_SRC" >> $config_fcm |
---|
422 | |
---|
423 | |
---|
424 | |
---|
425 | ln -s arch/arch-${arch}.fcm arch.fcm |
---|
426 | if test -f arch/arch-${arch}.opt && [ $compil_mod = "prod" ] |
---|
427 | then |
---|
428 | ln -s arch/arch-${arch}.opt arch.opt |
---|
429 | else |
---|
430 | ln -s .void_file arch.opt |
---|
431 | fi |
---|
432 | |
---|
433 | |
---|
434 | rm -f $LIBOGCM/${arch}${SUFF_NAME}/.config/fcm.bld.lock |
---|
435 | ./build_gcm |
---|
436 | |
---|
437 | rm -rf tmp_src |
---|
438 | rm -rf config |
---|
439 | ln -s $LIBOGCM/${arch}${SUFF_NAME}/.config config |
---|
440 | ln -s $LIBOGCM/${arch}${SUFF_NAME}/.config/tmp tmp_src |
---|
441 | |
---|
442 | if [[ -r $LIBFGCM/grid/dimensions.h ]] |
---|
443 | then |
---|
444 | # Cleanup: remove dimension.h file |
---|
445 | \rm -f $LIBFGCM/grid/dimensions.h |
---|
446 | fi |
---|