[783] | 1 | #!/bin/csh |
---|
| 2 | # |
---|
| 3 | # $Header$ |
---|
| 4 | # |
---|
[1002] | 5 | # FH : on ne cr�e plus le fichier arch.mk qui est suppos� exister par |
---|
[783] | 6 | # FH : ailleurs. |
---|
[1002] | 7 | # FH : ult�rieurement, 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 makegcm7. |
---|
[783] | 12 | # |
---|
| 13 | set verbose echo |
---|
| 14 | ######################################################################## |
---|
| 15 | # options par defaut pour la commande make |
---|
| 16 | ######################################################################## |
---|
| 17 | |
---|
| 18 | set dim="96x72x19" |
---|
| 19 | set physique=lmd |
---|
| 20 | set ntrac = 4 |
---|
| 21 | set filtre=filtrez |
---|
| 22 | set grille=reg |
---|
| 23 | set couple=false |
---|
| 24 | set veget=false |
---|
| 25 | set chimie=false |
---|
[1002] | 26 | set parallel=none |
---|
| 27 | set compil_mod=prod |
---|
[783] | 28 | set io=ioipsl |
---|
[875] | 29 | set LIBPREFIX="" |
---|
[1136] | 30 | set fcm_path=none |
---|
[783] | 31 | |
---|
[823] | 32 | set LMDGCM=`/bin/pwd` |
---|
[783] | 33 | set LIBOGCM=$LMDGCM/libo |
---|
| 34 | set LIBFGCM=$LMDGCM/libf |
---|
| 35 | |
---|
| 36 | ######################################################################## |
---|
| 37 | # Quelques initialisations de variables du shell. |
---|
| 38 | ######################################################################## |
---|
| 39 | |
---|
| 40 | set CPP_KEY="" |
---|
| 41 | set INCLUDE="" |
---|
| 42 | set LIB="" |
---|
| 43 | set adjnt="" |
---|
[1002] | 44 | set COMPIL_FFLAGS="%PROD_FFLAGS" |
---|
| 45 | set PARA_FFLAGS="" |
---|
| 46 | set PARA_LD="" |
---|
[783] | 47 | |
---|
| 48 | ######################################################################## |
---|
| 49 | # lecture des options de mymake |
---|
| 50 | ######################################################################## |
---|
| 51 | |
---|
| 52 | top: |
---|
| 53 | if ($#argv > 0) then |
---|
| 54 | switch ($1:q) |
---|
| 55 | |
---|
| 56 | case -h: |
---|
| 57 | cat <<fin |
---|
| 58 | manuel complet sur http://... |
---|
| 59 | Usage : |
---|
[1002] | 60 | makegcm [options] -m arch exec |
---|
| 61 | [-h] : manuel abrégé |
---|
| 62 | [-d [[IMx]JMx]LM] : IM, JM, LM sont les dims en x, y, z (def: $dim) |
---|
| 63 | [-t NTRAC] : nombre de traceurs (def: 4) |
---|
| 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) |
---|
[1018] | 68 | [-chimie INCA/false] : avec ou sans model de chimie INCA (def: false) |
---|
[1002] | 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 cpp, experts. |
---|
| 73 | [-adjnt] : adjoint, a remettre en route ... |
---|
| 74 | [-filtre NOMFILTRE] : prend le filtre dans libf/NOMFILTRE (def: filtrez) |
---|
| 75 | [-link LINKS] : liens optionels avec d'autres librairies |
---|
[1136] | 76 | [-fcm_path path] : chemin pour fcm (def: le chemin est suppose deja exister dans le PATH) |
---|
[1002] | 77 | -m arch : nom de l'architecture cible |
---|
| 78 | exec : exécutable généré |
---|
[783] | 79 | fin |
---|
| 80 | exit |
---|
| 81 | |
---|
| 82 | case -d: |
---|
| 83 | set dim=$2 ; shift ; shift ; goto top |
---|
| 84 | |
---|
| 85 | case -O: |
---|
| 86 | echo "option obsolete dans cette version intermediaire de makegcm" |
---|
| 87 | exit |
---|
| 88 | |
---|
| 89 | case -p |
---|
| 90 | set physique="$2" ; shift ; shift ; goto top |
---|
| 91 | |
---|
| 92 | case -g |
---|
| 93 | set grille="$2" ; shift ; shift ; goto top |
---|
| 94 | |
---|
| 95 | case -c |
---|
| 96 | set couple="$2" ; shift ; shift ; goto top |
---|
| 97 | |
---|
[1002] | 98 | case -prod |
---|
| 99 | set compil_mod="prod" ; shift ; goto top |
---|
| 100 | |
---|
| 101 | case -dev |
---|
| 102 | set compil_mod="dev" ; shift ; goto top |
---|
| 103 | |
---|
| 104 | case -debug |
---|
| 105 | set compil_mod="debug" ; shift ; goto top |
---|
| 106 | |
---|
[783] | 107 | case -io |
---|
| 108 | set io="$2" ; shift ; shift ; goto top |
---|
| 109 | |
---|
| 110 | case -v |
---|
| 111 | set veget="$2" ; shift ; shift ; goto top |
---|
| 112 | |
---|
| 113 | case -chimie |
---|
| 114 | set chimie="$2" ; shift ; shift ; goto top |
---|
| 115 | |
---|
| 116 | case -parallel |
---|
| 117 | set parallel="$2" ; shift ; shift ; goto top |
---|
| 118 | |
---|
| 119 | case -t |
---|
| 120 | set ntrac=$2 ; shift ; shift ; goto top |
---|
| 121 | |
---|
| 122 | case -include |
---|
| 123 | set INCLUDE="$INCLUDE -I$2" ; shift ; shift ; goto top |
---|
| 124 | |
---|
| 125 | case -adjnt |
---|
| 126 | echo 'otpion a reactiver ';exit |
---|
| 127 | set opt_dep="$opt_dep adjnt" ; set adjnt="-ladjnt -ldyn3d " |
---|
| 128 | set optim="$optim -Dadj" ; shift ; goto top |
---|
| 129 | |
---|
| 130 | |
---|
| 131 | case -filtre |
---|
| 132 | set filtre=$2 ; shift ; shift ; goto top |
---|
| 133 | |
---|
| 134 | case -link |
---|
| 135 | set LIB="$LIB $2" ; shift ; shift ; goto top |
---|
| 136 | |
---|
[1136] | 137 | case -fcm_path |
---|
| 138 | set fcm_path=$2 ; shift ; shift ; goto top |
---|
| 139 | |
---|
[783] | 140 | case -m |
---|
| 141 | set arch=$2 ; shift ; shift ; goto top |
---|
| 142 | |
---|
| 143 | default |
---|
| 144 | set code="$1" ; shift ; goto top |
---|
| 145 | |
---|
| 146 | endsw |
---|
| 147 | endif |
---|
| 148 | |
---|
[1136] | 149 | ############################################################### |
---|
| 150 | # mettre le chemin du fcm dans le path |
---|
| 151 | ############################################################### |
---|
| 152 | if ( "$fcm_path" != 'none' ) then |
---|
| 153 | setenv PATH ${fcm_path}:${PATH} |
---|
| 154 | endif |
---|
[783] | 155 | |
---|
[1136] | 156 | echo "Chemin du fcm utlise :" |
---|
| 157 | which fcm |
---|
| 158 | |
---|
[783] | 159 | ############################################################### |
---|
[1002] | 160 | # lecture des chemins propres � l'architecture de la machine # |
---|
[783] | 161 | ############################################################### |
---|
| 162 | |
---|
| 163 | rm -f ./arch.path |
---|
| 164 | ln -s ./machine/arch-${arch}.path ./arch.path |
---|
| 165 | source arch.path |
---|
| 166 | |
---|
| 167 | ######################################################################## |
---|
| 168 | # Definition des clefs CPP, des chemins des includes et modules |
---|
| 169 | # et des libraries |
---|
| 170 | ######################################################################## |
---|
| 171 | |
---|
[1002] | 172 | if ( "$compil_mod" == 'prod' ) then |
---|
| 173 | set COMPIL_FFLAGS="%PROD_FFLAGS" |
---|
| 174 | else if ( "$compil_mod" == 'dev' ) then |
---|
| 175 | set COMPIL_FFLAGS="%DEV_FFLAGS" |
---|
| 176 | else if ( "$compil_mod" == 'debug' ) then |
---|
| 177 | set COMPIL_FFLAGS="%DEBUG_FFLAGS" |
---|
| 178 | endif |
---|
[783] | 179 | |
---|
| 180 | if ( "$physique" == 'nophys' ) then |
---|
| 181 | |
---|
| 182 | else |
---|
| 183 | set CPP_KEY="$CPP_KEY CPP_PHYS" |
---|
| 184 | endif |
---|
| 185 | |
---|
[1018] | 186 | if ( "$chimie" == 'INCA' ) then |
---|
| 187 | set CPP_KEY="$CPP_KEY INCA" |
---|
| 188 | set INCLUDE="$INCLUDE -I${INCA_INCDIR}" |
---|
| 189 | set LIB="$LIB -L${INCA_LIBDIR} -lchimie" |
---|
[783] | 190 | endif |
---|
| 191 | |
---|
| 192 | if ( "$couple" != 'false' ) then |
---|
| 193 | set CPP_KEY="$CPP_KEY CPP_COUPLE" |
---|
[816] | 194 | set INCLUDE="$INCLUDE -I${OASIS_INCDIR}" |
---|
| 195 | set LIB="$LIB -L${OASIS_LIBDIR} -lpsmile.${couple} -lmpp_io" |
---|
[783] | 196 | endif |
---|
| 197 | |
---|
[1002] | 198 | if ( "$parallel" == 'mpi' ) then |
---|
| 199 | set CPP_KEY="$CPP_KEY CPP_PARA CPP_MPI" |
---|
| 200 | set PARA_FFLAGS="%MPI_FFLAGS" |
---|
| 201 | set PARA_LD="%MPI_LD" |
---|
| 202 | else if ("$parallel" == 'omp' ) then |
---|
| 203 | set CPP_KEY="$CPP_KEY CPP_PARA CPP_OMP" |
---|
| 204 | set PARA_FFLAGS="%OMP_FFLAGS" |
---|
| 205 | set PARA_LD="%OMP_LD" |
---|
| 206 | else if ("$parallel" == 'mpi_omp' ) then |
---|
| 207 | set CPP_KEY="$CPP_KEY CPP_PARA CPP_MPI CPP_OMP" |
---|
| 208 | set PARA_FFLAGS="%MPI_FFLAGS %OMP_FFLAGS" |
---|
| 209 | set PARA_LD="%MPI_LD %OMP_LD" |
---|
[783] | 210 | endif |
---|
| 211 | |
---|
| 212 | if ( "$veget" == 'true' ) then |
---|
| 213 | set CPP_KEY="$CPP_KEY CPP_VEGET" |
---|
| 214 | set INCLUDE="${INCLUDE} -I${ORCH_INCDIR}" |
---|
[875] | 215 | set LIB="${LIB} -L${ORCH_LIBDIR} -l${LIBPREFIX}sechiba -l${LIBPREFIX}parameters -l${LIBPREFIX}stomate -l${LIBPREFIX}parallel -l${LIBPREFIX}orglob" |
---|
[783] | 216 | endif |
---|
| 217 | |
---|
| 218 | if ( $io == ioipsl ) then |
---|
| 219 | set CPP_KEY="$CPP_KEY CPP_IOIPSL" |
---|
| 220 | set INCLUDE="$INCLUDE -I${IOIPSL_INCDIR}" |
---|
[875] | 221 | set LIB="$LIB -L${IOIPSL_LIBDIR} -l${LIBPREFIX}ioipsl" |
---|
[783] | 222 | endif |
---|
| 223 | |
---|
| 224 | set INCLUDE="$INCLUDE -I${NETCDF_INCDIR}" |
---|
| 225 | set LIB="$LIB -L${NETCDF_LIBDIR} -lnetcdf" |
---|
| 226 | |
---|
| 227 | |
---|
| 228 | ######################################################################## |
---|
| 229 | # choix du nombre de traceur par defaut si il n'a pas ete choisi, |
---|
| 230 | # suivant la physique |
---|
| 231 | ######################################################################## |
---|
| 232 | |
---|
| 233 | if ( $ntrac == 0 ) then |
---|
| 234 | if ( "$physique" == 'nophys' ) then |
---|
| 235 | set ntrac=1 |
---|
| 236 | else if ( "$physique" == 'lmd' ) then |
---|
| 237 | set ntrac=2 |
---|
| 238 | else if ( "$physique" == 'lmd_test_li' ) then |
---|
| 239 | set ntrac=2 |
---|
| 240 | else if ( "$physique" == 'ec' ) then |
---|
| 241 | set ntrac=1 |
---|
| 242 | else |
---|
| 243 | set ntrac = 1 |
---|
| 244 | endif |
---|
| 245 | endif |
---|
| 246 | |
---|
| 247 | |
---|
| 248 | ######################################################################## |
---|
| 249 | # calcul du nombre de dimensions |
---|
| 250 | ######################################################################## |
---|
| 251 | |
---|
| 252 | |
---|
| 253 | set dim_full=$dim |
---|
| 254 | set dim=`echo $dim | sed -e 's/[^0-9]/ /g'` |
---|
| 255 | set dimc=`echo $dim | wc -w` |
---|
| 256 | |
---|
| 257 | echo calcul de la dimension |
---|
| 258 | echo dim $dim |
---|
| 259 | echo dimc $dimc |
---|
| 260 | |
---|
| 261 | |
---|
| 262 | ######################################################################## |
---|
| 263 | # Gestion des dimensions du modele. |
---|
| 264 | # on cree ou remplace le fichier des dimensions/nombre de traceur |
---|
| 265 | ######################################################################## |
---|
| 266 | |
---|
| 267 | cd $LIBFGCM/grid/dimension |
---|
| 268 | ./makdim $ntrac $dim |
---|
| 269 | cat $LIBFGCM/grid/dimensions.h |
---|
| 270 | cd $LMDGCM |
---|
| 271 | |
---|
| 272 | |
---|
| 273 | ######################################################################## |
---|
| 274 | # Differentes dynamiques (3d, 2d, 1d) |
---|
| 275 | ######################################################################## |
---|
| 276 | |
---|
| 277 | set dimension=`echo $dim | wc -w` |
---|
| 278 | echo dimension $dimension |
---|
| 279 | |
---|
| 280 | if ( $dimension != 3 ) then |
---|
| 281 | echo "Probleme dans les dimensions de la dynamique !!" |
---|
| 282 | echo "Non reactive pour l'instant !!!" |
---|
| 283 | endif |
---|
| 284 | |
---|
| 285 | if ( $dimension == 3 ) then |
---|
| 286 | cd $LIBFGCM/grid |
---|
| 287 | \rm fxyprim.h |
---|
| 288 | cp -p fxy_${grille}.h fxyprim.h |
---|
| 289 | endif |
---|
| 290 | |
---|
| 291 | ###################################################################### |
---|
| 292 | # Traitement special pour le nouveau rayonnement de Laurent Li. |
---|
| 293 | # ---> YM desactive pour le traitemement en parallele |
---|
| 294 | ###################################################################### |
---|
| 295 | |
---|
| 296 | #if ( -f $libf/phy$physique/raddim.h ) then |
---|
| 297 | # if ( -f $libf/phy$physique/raddim.$dimh.h ) then |
---|
| 298 | # \rm -f $libf/phy$physique/raddim.h |
---|
| 299 | # cp -p $libf/phy$physique/raddim.$dimh.h $libf/phy$physique/raddim.h |
---|
| 300 | # echo $libf/phy$physique/raddim.$dimh.h |
---|
| 301 | # cat $libf/phy$physique/raddim.h |
---|
| 302 | # else |
---|
| 303 | # echo On peut diminuer la taille de l executable en creant |
---|
| 304 | # echo le fichier $libf/phy$physique/raddim.$dimh.h |
---|
| 305 | # \cp -p $libf/phy$physique/raddim.defaut.h $libf/phy$physique/raddim.h |
---|
| 306 | # endif |
---|
| 307 | #endif |
---|
| 308 | |
---|
| 309 | ###################################################################### |
---|
| 310 | # Gestion du filtre qui n'existe qu'en 3d. |
---|
| 311 | ###################################################################### |
---|
| 312 | |
---|
| 313 | if ( `expr $dimc \> 2` == 1 ) then |
---|
| 314 | set filtre="FILTRE=$filtre" |
---|
| 315 | else |
---|
| 316 | set filtre="FILTRE= L_FILTRE= " |
---|
| 317 | endif |
---|
| 318 | echo MACRO FILTRE $filtre |
---|
| 319 | |
---|
| 320 | echo $dimc |
---|
| 321 | |
---|
| 322 | |
---|
| 323 | |
---|
| 324 | ###################################################################### |
---|
| 325 | # Creation du suffixe de la configuration |
---|
| 326 | ###################################################################### |
---|
| 327 | |
---|
| 328 | |
---|
| 329 | set SUFF_NAME=_${dim_full} |
---|
[842] | 330 | set SUFF_NAME=${SUFF_NAME}_t${ntrac}_phy${physique} |
---|
[783] | 331 | |
---|
[1002] | 332 | if ( "$parallel" != 'none' ) then |
---|
[783] | 333 | set SUFF_NAME=${SUFF_NAME}_para |
---|
| 334 | set DYN=dyn${dimc}dpar |
---|
| 335 | else |
---|
| 336 | set SUFF_NAME=${SUFF_NAME}_seq |
---|
| 337 | set DYN=dyn${dimc}d |
---|
| 338 | endif |
---|
| 339 | |
---|
| 340 | if ( $veget == "true" ) then |
---|
| 341 | set SUFF_NAME=${SUFF_NAME}_orch |
---|
| 342 | endif |
---|
| 343 | |
---|
| 344 | if ( $couple != "false" ) then |
---|
| 345 | set SUFF_NAME=${SUFF_NAME}_couple |
---|
| 346 | endif |
---|
| 347 | |
---|
[1039] | 348 | if ( $chimie == 'INCA' ) then |
---|
[783] | 349 | set SUFF_NAME=${SUFF_NAME}_inca |
---|
| 350 | endif |
---|
| 351 | |
---|
| 352 | cd $LMDGCM |
---|
| 353 | set config_fcm="config.fcm" |
---|
| 354 | rm -f $config_fcm |
---|
| 355 | touch $config_fcm |
---|
| 356 | rm -f bin/${code}${SUFF_NAME}.e |
---|
| 357 | rm -f arch.fcm |
---|
| 358 | |
---|
| 359 | echo "%ARCH $arch" >> $config_fcm |
---|
| 360 | echo "%INCDIR $INCLUDE" >> $config_fcm |
---|
| 361 | echo "%LIB $LIB" >> $config_fcm |
---|
| 362 | echo "%ROOT_PATH $PWD" >> $config_fcm |
---|
| 363 | echo "%LIBF $LIBFGCM" >> $config_fcm |
---|
| 364 | echo "%LIBO $LIBOGCM" >> $config_fcm |
---|
| 365 | echo "%DYN $DYN" >> $config_fcm |
---|
| 366 | echo "%PHYS phy${physique}" >> $config_fcm |
---|
| 367 | echo "%CPP_KEY $CPP_KEY" >> $config_fcm |
---|
| 368 | echo "%EXEC $code" >> $config_fcm |
---|
| 369 | echo "%SUFF_NAME $SUFF_NAME" >> $config_fcm |
---|
[1002] | 370 | echo "%COMPIL_FFLAGS $COMPIL_FFLAGS" >> $config_fcm |
---|
| 371 | echo "%PARA_FFLAGS $PARA_FFLAGS" >> $config_fcm |
---|
| 372 | echo "%PARA_LD $PARA_LD" >> $config_fcm |
---|
[783] | 373 | |
---|
[1002] | 374 | |
---|
| 375 | |
---|
[783] | 376 | ln -s machine/arch-${arch}.fcm arch.fcm |
---|
[1002] | 377 | rm -f $LIBOGCM/${arch}${SUFF_NAME}/.config/fcm.bld.lock |
---|
[783] | 378 | ./build_gcm |
---|
| 379 | |
---|
| 380 | rm -f tmp_src |
---|
| 381 | rm -f config |
---|
| 382 | ln -s $LIBOGCM/${arch}${SUFF_NAME}/.config config |
---|
| 383 | ln -s $LIBOGCM/${arch}${SUFF_NAME}/.config/tmp tmp_src |
---|
| 384 | #\rm -f $libf/grid/dimensions.h |
---|