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