[1588] | 1 | #!/bin/bash |
---|
| 2 | |
---|
| 3 | ########################################################################### |
---|
[3044] | 4 | # Author : Laurent Fairhead et Frédéric Hourdin |
---|
| 5 | # Usage : install_lmdz.sh -help |
---|
[1588] | 6 | # |
---|
[1708] | 7 | # bash installation script of the LMDZ model on a Linux PC. |
---|
| 8 | # the model is downloaded in the following direcory tree |
---|
[1588] | 9 | # $MODEL/modipsl/modeles/... |
---|
[1708] | 10 | # using the "modipsl" infrastructure created by the "IPSL" |
---|
| 11 | # for coupled (atmosphere/ocean/vegetation/chemistry) climate modeling |
---|
| 12 | # activities. |
---|
| 13 | # Here we only download atmospheric (LMDZ) and vegetation (ORCHIDEE) |
---|
| 14 | # components. |
---|
[1588] | 15 | # |
---|
[1708] | 16 | # The sources of the models can be found in the "modeles" directory. |
---|
| 17 | # In the present case, LMDZ5, ORCHIDEE and IOIPSL (handling of input-outputs |
---|
| 18 | # using the NetCDF library. |
---|
[1588] | 19 | # |
---|
[1708] | 20 | # The script downloads various source files (including a version of NetCDF) |
---|
| 21 | # and utilities, compiles the model, and runs a test simulation in a |
---|
| 22 | # munimal configuration. |
---|
[1588] | 23 | # |
---|
[3044] | 24 | # Prerequisites : pgf90/gfortran, ksh, wget , gunzip, tar, ... |
---|
[1588] | 25 | # |
---|
[1589] | 26 | # Modif 18/11/2011 |
---|
[1708] | 27 | # changes for option real 8. |
---|
| 28 | # We comopile with -r8 (or equivalent) and -DNC_DOUBLE for the GCM |
---|
| 29 | # but with -r4 for netcdf. Variable real must be set to |
---|
| 30 | # r4 or r8 at the beginning of the script below. |
---|
[1589] | 31 | # |
---|
[1588] | 32 | ########################################################################### |
---|
| 33 | |
---|
[2030] | 34 | echo install.sh DEBUT `date` |
---|
[2031] | 35 | |
---|
[1911] | 36 | set -e |
---|
| 37 | |
---|
[3044] | 38 | ################################################################ |
---|
| 39 | # Choice of installation options |
---|
| 40 | ################################################################ |
---|
[1588] | 41 | |
---|
[3044] | 42 | # A function to fetch files either locally or on the internet |
---|
| 43 | function myget { #1st and only argument should be file name |
---|
| 44 | # Path on local computer where to look for the datafile |
---|
[3076] | 45 | if [ -f /u/lmdz/WWW/LMDZ/pub/$1 ] ; then |
---|
| 46 | \cp -f -p /u/lmdz/WWW/LMDZ/pub/$1 . |
---|
| 47 | elif [ -f ~/LMDZ/pub/$1 ] ; then |
---|
| 48 | \cp -f -p ~/LMDZ/pub/$1 . |
---|
[3044] | 49 | else |
---|
[3375] | 50 | wget -nv http://www.lmd.jussieu.fr/~lmdz/pub/$1 |
---|
[3076] | 51 | #dir=~/LMDZ/pub/`dirname $1` ; mkdir -p $dir ; cp -r `basename $1` $dir |
---|
[3044] | 52 | fi |
---|
| 53 | } |
---|
[1588] | 54 | |
---|
[3044] | 55 | |
---|
[1590] | 56 | #real=r4 |
---|
[1589] | 57 | real=r8 |
---|
| 58 | |
---|
[1708] | 59 | # WARNING !!!! For versions before october 2009, use |
---|
| 60 | # install.v2.sh instead of install.sh |
---|
[1588] | 61 | |
---|
[3044] | 62 | ######################################################################### |
---|
| 63 | # Valeur par défaut des parametres |
---|
| 64 | ######################################################################### |
---|
| 65 | svn="" |
---|
[3076] | 66 | version=trunk |
---|
[1588] | 67 | getlmdzor=1 |
---|
| 68 | netcdf=1 # 1 for automatic installation |
---|
| 69 | # 0 for no installation |
---|
| 70 | # /.../../netcdf-4.0.1 if wanting to link with an already |
---|
| 71 | # compiled netcdf library (implies to check option compatibility) |
---|
| 72 | check_linux=1 |
---|
| 73 | ioipsl=1 |
---|
[3733] | 74 | veget=0 |
---|
[3386] | 75 | orchidee_rev="" # default revision of ORCHIDEE |
---|
[1588] | 76 | bench=1 |
---|
| 77 | pclinux=1 |
---|
[3375] | 78 | pcmac=0 # default: not on a Mac |
---|
[3088] | 79 | compiler=gfortran |
---|
[3044] | 80 | SCM=0 |
---|
| 81 | # use the old orchidee interface without the calculation of z0h |
---|
| 82 | no_z0h_orc=1 |
---|
[3646] | 83 | # orchidee_version: defined to use the CMIP6 version of ORCHIDEE |
---|
| 84 | # (and eventually anyother) |
---|
| 85 | # values=CMIP6 |
---|
| 86 | orchidee_version="" |
---|
[2031] | 87 | # choose the resolution for the bench runs |
---|
[3044] | 88 | # grid_resolution= 32x24x11 or 48x36x19 for tests (test without ORCHIDEE) |
---|
| 89 | # 96x71x19 standard configuration |
---|
| 90 | grid_resolution=144x142x79 |
---|
[3610] | 91 | grid_resolution=96x95x39 |
---|
[2409] | 92 | grid_resolution=48x36x19 |
---|
[3610] | 93 | grid_resolution=32x32x39 |
---|
[3646] | 94 | # choose the physiq version you want to test |
---|
| 95 | #physiq=NPv6.0.14splith |
---|
| 96 | physiq= |
---|
[1693] | 97 | |
---|
[3044] | 98 | ## parallel can take the values none/mpi/omp/mpi_omp |
---|
| 99 | parallel=mpi_omp |
---|
[3783] | 100 | parallel=none |
---|
[3573] | 101 | idris_acct=lmd |
---|
[3044] | 102 | OPT_GPROF="" |
---|
| 103 | OPT_MAKELMDZ="" |
---|
| 104 | MODEL="" |
---|
[2031] | 105 | |
---|
[3056] | 106 | ## also compile XIOS? (and more recent NetCDF/HDF5 libraries) Default=no |
---|
| 107 | with_xios="n" |
---|
| 108 | opt_makelmdz_xios="" |
---|
[3645] | 109 | |
---|
[3375] | 110 | ## compile_with_fcm=1 : use makelmdz_fcm (1) or makelmdz (0) |
---|
| 111 | compile_with_fcm=1 |
---|
[3386] | 112 | cosp=0 ; opt_cosp1="" |
---|
| 113 | cosp=0 ; opt_cosp2="" |
---|
[3735] | 114 | cosp=0 ; opt_cospv2="" |
---|
[3386] | 115 | opt_cosp="" |
---|
[3056] | 116 | |
---|
[3375] | 117 | # Check if on a Mac |
---|
| 118 | if [ `uname` = "Darwin" ] |
---|
| 119 | then |
---|
| 120 | pcmac=1 |
---|
| 121 | export MAKE=make |
---|
| 122 | fi |
---|
| 123 | #echo "pcmac="$pcmac |
---|
| 124 | |
---|
[3645] | 125 | env_file="" |
---|
| 126 | |
---|
[3044] | 127 | ######################################################################### |
---|
| 128 | # Options interactives |
---|
| 129 | ######################################################################### |
---|
| 130 | while (($# > 0)) |
---|
| 131 | do |
---|
| 132 | case $1 in |
---|
| 133 | "-h") cat <<........fin |
---|
| 134 | $0 [ -v version ] [ -r svn_release ] |
---|
| 135 | [ -parallel PARA ] [ -d GRID_RESOLUTION ] [ -bench 0/1 ] |
---|
| 136 | [-name LOCAL_MODEL_NAME] [-gprof] [-opt_makelmdz] |
---|
[2031] | 137 | |
---|
[3044] | 138 | -v "version" like 20150828.trunk |
---|
| 139 | see http://www.lmd.jussieu.fr/~lmdz/Distrib/LISMOI.trunk |
---|
[2404] | 140 | |
---|
[3044] | 141 | -r "svn_release" : either the svn release number or "last" |
---|
[3088] | 142 | |
---|
| 143 | -compiler gfortran|ifort|pgf90 (default: gfortran) |
---|
[2404] | 144 | |
---|
[3044] | 145 | -parallel PARA : can be mpi_omp (mpi with openMP) or none (for sequential) |
---|
[2404] | 146 | |
---|
[3044] | 147 | -d GRID_RESOLUTION should be among the available benchs if -bench 1 |
---|
| 148 | among which : 48x36x19, 48x36x39 |
---|
| 149 | if wanting to run a bench simulation in addition to compilation |
---|
| 150 | default : 48x36x19 |
---|
| 151 | |
---|
| 152 | -bench activating the bench or not (0/1). Default 1 |
---|
| 153 | |
---|
| 154 | -name LOCAL_MODEL_NAME : default = LMDZversion.release |
---|
| 155 | |
---|
[3056] | 156 | -netcdf PATH : full path to an existing installed NetCDF library |
---|
| 157 | (without -netcdf: also download and install the NetCDF library) |
---|
| 158 | |
---|
| 159 | -xios also download and compile the XIOS library |
---|
| 160 | (requires the NetCDF4-HDF5 library, also installed by default) |
---|
| 161 | (requires to also have -parallel mpi_omp) |
---|
| 162 | |
---|
[3044] | 163 | -gprof to compile with -pg to enable profiling with gprof |
---|
[3056] | 164 | |
---|
[3375] | 165 | -orchidee_rev "svn_release" : upgrade included ORCHIDEE model to |
---|
[3386] | 166 | given svn release number (default: $orchidee_rev) |
---|
[3375] | 167 | (only valid for orchidee2.0 and later) |
---|
| 168 | |
---|
[3386] | 169 | -cosp to compile with cosp(v1) |
---|
| 170 | |
---|
[3735] | 171 | -cosp2 to compile with cosp(1v2) |
---|
[3375] | 172 | |
---|
[3735] | 173 | -cospv2 to compile with cosp(v2) |
---|
| 174 | |
---|
[3375] | 175 | -nofcm to compile without fcm |
---|
| 176 | |
---|
[3044] | 177 | -SCM install 1D version automatically |
---|
[3056] | 178 | |
---|
[3610] | 179 | -debug compile everything in debug mode |
---|
| 180 | |
---|
[3044] | 181 | -opt_makelmdz to call makelmdz or makelmdz_fcm with additional options |
---|
[3645] | 182 | |
---|
[3646] | 183 | -physiq to choose which physics package to use |
---|
| 184 | |
---|
[3645] | 185 | -env_file specify an arch.env file to overwrite the existing one |
---|
[3646] | 186 | |
---|
| 187 | -orc_version to chose some tagged ORCHIDEE version (CMIP6 only for the present) |
---|
| 188 | |
---|
[3044] | 189 | ........fin |
---|
| 190 | exit ;; |
---|
| 191 | "-v") version=$2 ; shift ; shift ;; |
---|
| 192 | "-r") svn=$2 ; shift ; shift ;; |
---|
[3088] | 193 | "-compiler") compiler=$2 |
---|
| 194 | case $compiler in |
---|
| 195 | "gfortran"|"ifort"|"pgf90") compiler=$2 ; shift ; shift ;; |
---|
| 196 | *) echo "Only gfortran , ifort or pgf90 for the compiler option" ; exit |
---|
| 197 | esac ;; |
---|
[3044] | 198 | "-d") grid_resolution=$2 ; shift ; shift ;; |
---|
| 199 | "-gprof") OPT_GPROF="-pg" ; shift ;; |
---|
[3386] | 200 | "-cosp") cosp=1 ; opt_cosp1="-cosp true" ; shift ;; |
---|
| 201 | "-cosp2") cosp2=1 ; opt_cosp2="-cosp2 true" ; shift ;; |
---|
[3735] | 202 | "-cospv2") cospv2=1 ; opt_cospv2="-cospv2 true" ; shift ;; |
---|
[3375] | 203 | "-orchidee_rev") orchidee_rev=$2 ; shift ; shift ;; |
---|
| 204 | "-nofcm") compile_with_fcm=0 ; shift ;; |
---|
[3044] | 205 | "-SCM") SCM=1 ; shift ;; |
---|
| 206 | "-opt_makelmdz") OPT_MAKELMDZ="$2" ; shift ; shift ;; |
---|
| 207 | "-parallel") parallel=$2 |
---|
| 208 | case $parallel in |
---|
[3064] | 209 | "none"|"mpi"|"omp"|"mpi_omp") parallel=$2 ; shift ; shift ;; |
---|
| 210 | *) echo Only none mpi omp mpi_omp for the parallel option ; exit |
---|
[3044] | 211 | esac ;; |
---|
| 212 | "-bench") bench=$2 ; shift ; shift ;; |
---|
[3610] | 213 | "-debug") optim=-debug ; shift ;; |
---|
[3044] | 214 | "-name") MODEL=$2 ; shift ; shift ;; |
---|
[3056] | 215 | "-netcdf") netcdf=$2 ; shift ; shift ;; |
---|
[3646] | 216 | "-physiq") physiq=$2 ; shift ; shift ;; |
---|
[3056] | 217 | "-xios") with_xios="y" ; shift ;; |
---|
[3645] | 218 | "-env_file") env_file=$2 ; shift ; shift ;; |
---|
[3646] | 219 | "-orc_version") orchidee_version=$2 ; shift ; shift ;; |
---|
[3044] | 220 | *) ./install_lmdz.sh -h ; exit |
---|
| 221 | esac |
---|
| 222 | done |
---|
| 223 | |
---|
| 224 | if [ $parallel = none ] ; then sequential=1 ; else sequential=0 ; fi |
---|
| 225 | |
---|
| 226 | #Chemin pour placer le modele |
---|
[3610] | 227 | if [ "$MODEL" = "" ] ; then MODEL=./LMDZ$version$svn$optim ; fi |
---|
[3044] | 228 | |
---|
| 229 | |
---|
| 230 | arch=local |
---|
| 231 | |
---|
| 232 | |
---|
[3088] | 233 | if [ $compiler = g95 ] ; then echo g95 is not supported anymore ; exit ; fi |
---|
[3044] | 234 | |
---|
| 235 | ################################################################ |
---|
| 236 | # Specificite des machines |
---|
| 237 | ################################################################ |
---|
| 238 | |
---|
| 239 | hostname=`hostname` |
---|
| 240 | if [ "$pclinux" = 1 ] ; then o_ins_make="-t g95" ; else o_ins_make="" ; fi |
---|
| 241 | |
---|
| 242 | case ${hostname:0:5} in |
---|
| 243 | |
---|
[3573] | 244 | jean-) compiler="mpiifort" ; |
---|
| 245 | par_comp="mpiifort" ; |
---|
| 246 | o_ins_make="-t jeanzay" ; |
---|
| 247 | make=gmake ; |
---|
[3610] | 248 | module purge |
---|
[3573] | 249 | module load intel-compilers/19.0.4 ; |
---|
[3645] | 250 | #module load intel-mpi/19.0.4 ; |
---|
| 251 | #module load intel-mkl/19.0.4 ; |
---|
| 252 | module load hdf5/1.10.5-mpi ; |
---|
| 253 | module load netcdf/4.7.2-mpi ; |
---|
| 254 | module load netcdf-fortran/4.5.2-mpi ; |
---|
| 255 | module load subversion/1.9.7 ; |
---|
[3573] | 256 | export NETCDF_LIBDIR=./ |
---|
| 257 | export NETCDFFORTRAN_INCDIR=./ |
---|
| 258 | export NETCDFFORTRAN_LIBDIR=./ |
---|
| 259 | arch=X64_JEANZAY ;; |
---|
| 260 | |
---|
[3375] | 261 | cicla|camel) compiler="gfortran" ; |
---|
[3056] | 262 | if [ $parallel != none ] ; then |
---|
[3375] | 263 | module load openmpi/1.6.5-gfortran ; |
---|
[3056] | 264 | root_mpi=$MPI_HOME ; |
---|
| 265 | path_mpi=$root_mpi/bin ; |
---|
| 266 | par_comp=${path_mpi}/mpif90 ; |
---|
| 267 | mpirun=${path_mpi}/mpirun ; |
---|
| 268 | fi ; |
---|
| 269 | arch=local ; |
---|
| 270 | make=make ; |
---|
| 271 | o_ins_make="-t g95" ;; |
---|
| 272 | |
---|
[3785] | 273 | *) if [ $parallel = none -o ] ; then |
---|
[3076] | 274 | path_mpi=`which mpif90 | sed -e s:/mpif90::` ; |
---|
[3056] | 275 | if [ -d /usr/lib64/openmpi ] ; then |
---|
| 276 | root_mpi="/usr/lib64/openmpi" |
---|
| 277 | else |
---|
| 278 | root_mpi="/usr" |
---|
| 279 | fi |
---|
[3785] | 280 | # Ehouarn: but why do we need path_mpi and root_mpi |
---|
| 281 | # if not in parallel ? |
---|
[3044] | 282 | else |
---|
[3785] | 283 | path_mpi=`which mpif90 | sed -e s:/mpif90::` ; |
---|
| 284 | root_mpi=`which mpif90 | sed -e s:/bin/mpif90::` ; |
---|
| 285 | if [ ! -x ${path_mpi}/mpif90 ] ; then |
---|
| 286 | echo "Error: cannot find mpif90" ; |
---|
| 287 | exit ; |
---|
| 288 | fi ; |
---|
| 289 | export LD_LIBRARY_PATH=${root_mpi}/lib:$LD_LIBRARY_PATH |
---|
[3044] | 290 | fi ; |
---|
[3056] | 291 | par_comp=${path_mpi}/mpif90 ; |
---|
| 292 | mpirun=${path_mpi}/mpirun ; |
---|
[3044] | 293 | arch=local ; |
---|
| 294 | make=make ; |
---|
| 295 | o_ins_make="-t g95" |
---|
| 296 | esac |
---|
| 297 | |
---|
[3088] | 298 | # Flags for parallelism: |
---|
| 299 | if [ $parallel != none ] ; then |
---|
| 300 | # MPI_LD are the flags needed for linking with MPI |
---|
| 301 | MPI_LD="-L${root_mpi}/lib -lmpi" |
---|
| 302 | if [ "$compiler" = "gfortran" ] ; then |
---|
| 303 | # MPI_FLAGS are the flags needed for compilation with MPI |
---|
| 304 | MPI_FLAGS="-fcray-pointer" |
---|
| 305 | # OMP_FLAGS are the flags needed for compilation with OpenMP |
---|
| 306 | OMP_FLAGS="-fopenmp -fcray-pointer" |
---|
| 307 | # OMP_LD are the flags needed for linking with OpenMP |
---|
| 308 | OMP_LD="-fopenmp" |
---|
| 309 | elif [ "$compiler" = "ifort" ] ; then |
---|
| 310 | MPI_FLAGS="" |
---|
| 311 | OMP_FLAGS="-openmp" |
---|
| 312 | OMP_LD="-openmp" |
---|
| 313 | else # pgf90 |
---|
| 314 | MPI_FLAGS="" |
---|
| 315 | OMP_FLAGS="-mp" |
---|
| 316 | OMP_LD="-mp" |
---|
| 317 | fi |
---|
| 318 | fi |
---|
[3044] | 319 | |
---|
[1693] | 320 | ##################################################################### |
---|
| 321 | # Test for old gfortran compilers |
---|
[2030] | 322 | # If the compiler is too old (older than 4.3.x) we test if the |
---|
| 323 | # temporary gfortran44 patch is available on the computer in which |
---|
| 324 | # case the compiler is changed from gfortran to gfortran44 |
---|
| 325 | # Must be aware than parallelism can not be activated in this case |
---|
| 326 | ##################################################################### |
---|
| 327 | |
---|
[3088] | 328 | if [ "$compiler" = "gfortran" ] ; then |
---|
[2030] | 329 | gfortran=gfortran |
---|
[1693] | 330 | gfortranv=`gfortran --version | \ |
---|
| 331 | head -1 | awk ' { print $NF } ' | awk -F. ' { print $1 * 10 + $2 } '` |
---|
| 332 | if [ $gfortranv -le 43 ] ; then |
---|
[1708] | 333 | echo ERROR : Your gfortran compiler is too old |
---|
[3044] | 334 | echo 'Please choose a new one (ifort) and change the line' |
---|
[3088] | 335 | echo compiler=xxx |
---|
[1693] | 336 | echo in the install.sh script and rerun it |
---|
[2030] | 337 | if [ `which gfortran44 | wc -w` -ne 0 ] ; then |
---|
| 338 | gfortran=gfortran44 |
---|
| 339 | else |
---|
| 340 | echo gfotran trop vieux ; exit |
---|
| 341 | fi |
---|
[1693] | 342 | fi |
---|
[3088] | 343 | compiler=$gfortran |
---|
[1693] | 344 | fi |
---|
| 345 | ##################################################################### |
---|
| 346 | |
---|
[3056] | 347 | ## if also compiling XIOS, parallel must be mpi_omp |
---|
| 348 | if [ "$with_xios" = "y" -a "$parallel" != "mpi_omp" ] ; then |
---|
| 349 | echo "Error, you must set -parallel mpi_omp if you want XIOS" |
---|
| 350 | exit |
---|
| 351 | fi |
---|
[3386] | 352 | |
---|
| 353 | ## We can't compile with -cosp and -cosp2 |
---|
| 354 | if [ "$cosp" = 1 -a "$cosp2" = 1 ] ; then |
---|
| 355 | echo "Error, you can't run with cosp1 and cosp2" |
---|
| 356 | exit |
---|
| 357 | fi |
---|
| 358 | if [ "$cosp" = 1 ] ; then |
---|
| 359 | opt_cosp="$opt_cosp1" |
---|
| 360 | fi |
---|
| 361 | if [ "$cosp2" = 1 ] ; then |
---|
| 362 | opt_cosp="$opt_cosp2" |
---|
| 363 | fi |
---|
[3735] | 364 | if [ "$cospv2" = 1 ] ; then |
---|
| 365 | opt_cosp="$opt_cospv2" |
---|
| 366 | fi |
---|
[3386] | 367 | |
---|
| 368 | ## if also compiling XIOS, cosp must be activate to define axis in *.xml |
---|
[3417] | 369 | if [ "$with_xios" = "y" ] ; then |
---|
[3735] | 370 | if [ "$cosp" = 0 -a "$cosp2" = 0 -a "$cospv2" = 0 ] ; then |
---|
[3386] | 371 | echo "Error, you must use -cosp option when compiling with -xios" |
---|
| 372 | echo "You need to call Cosp in physical first step to define axis variables" |
---|
| 373 | exit |
---|
[3417] | 374 | fi |
---|
[3056] | 375 | opt_makelmdz_xios="-io xios" |
---|
| 376 | fi |
---|
[1693] | 377 | |
---|
[3735] | 378 | if [ "$cospv2" = 1 -a "$with_xios" = "n" ] ; then |
---|
| 379 | echo "Error, Cospv2 cannot run without Xios" |
---|
| 380 | exit |
---|
| 381 | fi |
---|
| 382 | |
---|
[1588] | 383 | echo '################################################################' |
---|
| 384 | echo Choix des options de compilation |
---|
| 385 | echo '################################################################' |
---|
[1589] | 386 | |
---|
[3088] | 387 | export FC=$compiler |
---|
| 388 | export F90=$compiler |
---|
| 389 | export F77=$compiler |
---|
[2031] | 390 | export CPPFLAGS= |
---|
[3044] | 391 | OPTIMNC=$OPTIM |
---|
| 392 | BASE_LD="$OPT_GPROF" |
---|
| 393 | OPTPREC="$OPT_GPROF" |
---|
[3076] | 394 | ARFLAGS="rs" ; if [ -f /etc/issue ] ; then if [ "`grep -i ubuntu /etc/issue`" != "" ] ; then if [ "`grep -i ubuntu /etc/issue | awk ' { print $2 } ' | cut -d. -f1`" -ge 16 ] ; then ARFLAGS="rU" ; fi ; fi ; fi |
---|
[3044] | 395 | |
---|
[3076] | 396 | |
---|
| 397 | |
---|
[3088] | 398 | if [ "$compiler" = "$gfortran" ] ; then |
---|
[2031] | 399 | OPTIM='-O3' |
---|
[3044] | 400 | OPTDEB="-g3 -Wall -fbounds-check -ffpe-trap=invalid,zero,overflow -O0 -fstack-protector-all -fbacktrace -finit-real=nan" |
---|
[2031] | 401 | OPTDEV="-Wall -fbounds-check" |
---|
| 402 | fmod='I ' |
---|
[3044] | 403 | OPTPREC="$OPTPREC -cpp -ffree-line-length-0" |
---|
[2409] | 404 | if [ $real = r8 ] ; then OPTPREC="$OPTPREC -fdefault-real-8 -DNC_DOUBLE" ; fi |
---|
[2031] | 405 | export F90FLAGS=" -ffree-form $OPTIMNC" |
---|
| 406 | export FFLAGS=" $OPTIMNC" |
---|
| 407 | export CC=gcc |
---|
| 408 | export CXX=g++ |
---|
[3044] | 409 | export fpp_flags="-P -C -traditional -ffreestanding" |
---|
| 410 | |
---|
[3088] | 411 | elif [ $compiler = mpif90 ] ; then |
---|
[1589] | 412 | OPTIM='-O3' |
---|
[3044] | 413 | OPTDEB="-g3 -Wall -fbounds-check -ffpe-trap=invalid,zero,overflow -O0 -fstack-protector-all" |
---|
[2031] | 414 | OPTDEV="-Wall -fbounds-check" |
---|
[3044] | 415 | BASE_LD="$BASE_LD -lblas" |
---|
[2031] | 416 | fmod='I ' |
---|
[3044] | 417 | if [ $real = r8 ] ; then OPTPREC="$OPTPREC -fdefault-real-8 -DNC_DOUBLE -fcray-pointer" ; fi |
---|
[2031] | 418 | export F90FLAGS=" -ffree-form $OPTIMNC" |
---|
| 419 | export FFLAGS=" $OPTIMNC" |
---|
| 420 | export CC=gcc |
---|
| 421 | export CXX=g++ |
---|
[3044] | 422 | |
---|
[3088] | 423 | elif [ $compiler = pgf90 ] ; then |
---|
[2203] | 424 | OPTIM='-O2 -Mipa -Munroll -Mnoframe -Mautoinline -Mcache_align' |
---|
| 425 | OPTDEB='-g -Mdclchk -Mbounds -Mchkfpstk -Mchkptr -Minform=inform -Mstandard -Ktrap=fp -traceback' |
---|
| 426 | OPTDEV='-g -Mbounds -Ktrap=fp -traceback' |
---|
[2031] | 427 | fmod='module ' |
---|
[3044] | 428 | if [ $real = r8 ] ; then OPTPREC="$OPTPREC -r8 -DNC_DOUBLE" ; fi |
---|
[2203] | 429 | export CPPFLAGS="-DpgiFortran" |
---|
[2031] | 430 | export CC=pgcc |
---|
[2203] | 431 | export CFLAGS="-O2 -Msignextend" |
---|
[2031] | 432 | export CXX=pgCC |
---|
[2203] | 433 | export CXXFLAGS="-O2 -Msignextend" |
---|
| 434 | export FFLAGS="-O2 $OPTIMNC" |
---|
| 435 | export F90FLAGS="-O2 $OPTIMNC" |
---|
[1590] | 436 | compile_with_fcm=1 |
---|
[3044] | 437 | |
---|
[3088] | 438 | elif [ $compiler = ifort ] ; then |
---|
[2031] | 439 | OPTIM="-O2 -fp-model strict -ip -align all " |
---|
| 440 | OPTDEV="-p -g -O2 -traceback -fp-stack-check -ftrapuv -check" |
---|
| 441 | OPTDEB="-g -no-ftz -traceback -ftrapuv -fp-stack-check -check" |
---|
| 442 | fmod='module ' |
---|
[3044] | 443 | if [ $real = r8 ] ; then OPTPREC="$OPTPREC -real-size 64 -DNC_DOUBLE" ; fi |
---|
[2031] | 444 | export CPP="icc -E" |
---|
| 445 | export FFLAGS="-O2 -ip -fpic -mcmodel=large" |
---|
| 446 | export FCFLAGS="-O2 -ip -fpic -mcmodel=large" |
---|
| 447 | export CC=icc |
---|
| 448 | export CFLAGS="-O2 -ip -fpic -mcmodel=large" |
---|
| 449 | export CXX=icpc |
---|
| 450 | export CXXFLAGS="-O2 -ip -fpic -mcmodel=large" |
---|
[3375] | 451 | export fpp_flags="-P -traditional" |
---|
[3610] | 452 | # Pourquoi forcer la compilation fcm. Marche mieux sans |
---|
| 453 | #compile_with_fcm=1 |
---|
[3044] | 454 | |
---|
[3573] | 455 | elif [ $compiler = mpiifort ] ; then |
---|
[3610] | 456 | echo on ne fait rien la |
---|
| 457 | # Pourquoi forcer la compilation fcm. Marche mieux sans |
---|
| 458 | #compile_with_fcm=1 |
---|
[3573] | 459 | |
---|
[2031] | 460 | else |
---|
[3088] | 461 | echo unexpected compiler $compiler ; exit |
---|
[1588] | 462 | fi |
---|
[2031] | 463 | |
---|
[1589] | 464 | OPTIMGCM="$OPTIM $OPTPREC" |
---|
[1588] | 465 | |
---|
| 466 | hostname=`hostname` |
---|
| 467 | |
---|
| 468 | ########################################################################## |
---|
[1731] | 469 | # If installing on know machines such as IBM x3750 (Ada) |
---|
[1708] | 470 | # at IDRIS, don't check for available software and don"t install netcdf |
---|
[3573] | 471 | if [ ${hostname:0:5} = jean- ] ; then |
---|
| 472 | netcdf=0 # no need to recompile netcdf, alreday available |
---|
| 473 | check_linux=0 |
---|
| 474 | pclinux=0 |
---|
| 475 | ioipsl=0 # no need to recompile ioipsl, already available |
---|
| 476 | #netcdf="/smplocal/pub/NetCDF/4.1.3" |
---|
| 477 | compiler="mpiifort" |
---|
| 478 | fmod='module ' |
---|
| 479 | if [ $real = r8 ] ; then OPTPREC="$OPTPREC -i4 -r8 -DNC_DOUBLE" ; fi |
---|
| 480 | OPTIM="-auto -align all -O2 -fp-model strict -xHost " |
---|
| 481 | OPTIMGCM="$OPTIM $OPTPREC" |
---|
| 482 | fi |
---|
[1588] | 483 | ########################################################################## |
---|
| 484 | |
---|
| 485 | |
---|
[3044] | 486 | |
---|
[1588] | 487 | mkdir -p $MODEL |
---|
| 488 | echo $MODEL |
---|
[1708] | 489 | MODEL=`( cd $MODEL ; pwd )` # to get absolute path, if necessary |
---|
[1588] | 490 | |
---|
| 491 | |
---|
| 492 | |
---|
[1708] | 493 | # Option -fendian=big is only to be used with ARPEGE1D. |
---|
| 494 | # The -r8 should probably be avoided if running on 32 bit machines |
---|
| 495 | # Option r8 is not mandatory and generates larger executables. |
---|
| 496 | # It is however mandatory if using ARPEGE1D |
---|
| 497 | # Better optimization options might be a better choice (e.g. -O3) |
---|
[1588] | 498 | |
---|
| 499 | |
---|
| 500 | echo '################################################################' |
---|
| 501 | if [ "$check_linux" = 1 ] ; then |
---|
[1708] | 502 | echo Check if required software is available |
---|
[1588] | 503 | echo '################################################################' |
---|
| 504 | |
---|
| 505 | #### Ehouarn: test if ksh and/or bash are available |
---|
| 506 | use_shell="ksh" # default: use ksh |
---|
| 507 | if [ "`which ksh`" = "" ] ; then |
---|
[1708] | 508 | echo "no ksh ... we will use bash" |
---|
[1588] | 509 | use_shell="bash" |
---|
| 510 | if [ "`which bash`" = "" ] ; then |
---|
[1708] | 511 | echo "ksh (or bash) needed!! Install it!" |
---|
[1588] | 512 | fi |
---|
| 513 | fi |
---|
| 514 | |
---|
| 515 | |
---|
[3610] | 516 | for logiciel in wget tar gzip make $compiler gcc ; do |
---|
[1588] | 517 | if [ "`which $logiciel`" = "" ] ; then |
---|
[1708] | 518 | echo You must first install $logiciel on your system |
---|
[1588] | 519 | exit |
---|
| 520 | fi |
---|
| 521 | done |
---|
| 522 | |
---|
| 523 | if [ $pclinux = 1 ] ; then |
---|
| 524 | cd $MODEL |
---|
[2030] | 525 | cat <<eod > tt.f90 |
---|
[1588] | 526 | print*,'coucou' |
---|
| 527 | end |
---|
| 528 | eod |
---|
[3088] | 529 | $compiler tt.f90 -o a.out |
---|
[1588] | 530 | ./a.out >| tt |
---|
| 531 | if [ "`cat tt | sed -e 's/ //g' `" != "coucou" ] ; then |
---|
[3088] | 532 | echo problem installing with compiler $compiler ; exit ; fi |
---|
[1588] | 533 | \rm tt a.out tt.f90 |
---|
| 534 | fi |
---|
| 535 | fi |
---|
| 536 | |
---|
| 537 | ########################################################################### |
---|
| 538 | if [ $getlmdzor = 1 ] ; then |
---|
| 539 | echo '##########################################################' |
---|
[1708] | 540 | echo Download a slightly modified version of LMDZ |
---|
[1588] | 541 | echo '##########################################################' |
---|
| 542 | cd $MODEL |
---|
[3076] | 543 | myget src/modipsl.$version.tar.gz |
---|
[3044] | 544 | echo install.sh wget_OK `date` |
---|
| 545 | gunzip modipsl.$version.tar.gz |
---|
| 546 | tar xvf modipsl.$version.tar |
---|
| 547 | \rm modipsl.$version.tar |
---|
[1588] | 548 | |
---|
| 549 | fi |
---|
| 550 | |
---|
| 551 | echo OK1 |
---|
| 552 | |
---|
| 553 | if [ $netcdf = 1 ] ; then |
---|
[3091] | 554 | cd $MODEL |
---|
| 555 | netcdflog=`pwd`/netcdf.log |
---|
[1588] | 556 | echo '##########################################################' |
---|
[1708] | 557 | echo Compiling the Netcdf library |
---|
[1588] | 558 | echo '##########################################################' |
---|
[3091] | 559 | echo log file : $netcdflog |
---|
[3056] | 560 | if [ "$with_xios" = "n" ] ; then |
---|
| 561 | # keep it simple |
---|
| 562 | #wget http://www.lmd.jussieu.fr/~lmdz/Distrib/netcdf-4.0.1.tar.gz |
---|
[3076] | 563 | myget import/netcdf-4.0.1.tar.gz |
---|
[3056] | 564 | gunzip netcdf-4.0.1.tar.gz |
---|
| 565 | tar xvf netcdf-4.0.1.tar |
---|
| 566 | \rm -f netcdf-4.0.1.tar |
---|
[1588] | 567 | |
---|
[3056] | 568 | cd netcdf-4.0.1 |
---|
[1588] | 569 | |
---|
[3056] | 570 | # seds to possibly use gfortran44 obsolete nowdays (Ehouarn: 10/2017) |
---|
| 571 | #sed -e 's/gfortran/'$gfortran'/g' configure >| tmp ; mv -f tmp configure ; chmod +x configure |
---|
| 572 | localdir=`pwd -P` |
---|
| 573 | ./configure --prefix=$localdir --enable-shared --disable-cxx |
---|
| 574 | #sed -e 's/gfortran/'$gfortran'/g' Makefile >| tmp ; mv -f tmp Makefile |
---|
[3091] | 575 | $make check > $netcdflog 2>&1 |
---|
| 576 | $make install >> $netcdflog 2>&1 |
---|
[3056] | 577 | else |
---|
| 578 | # download and compile hdf5 and netcdf, etc. using the install_netcdf4_hdf5.bash script |
---|
| 579 | #wget http://www.lmd.jussieu.fr/~lmdz/Distrib/install_netcdf4_hdf5.bash |
---|
[3076] | 580 | myget import/install_netcdf4_hdf5.bash |
---|
[3056] | 581 | chmod u=rwx install_netcdf4_hdf5.bash |
---|
[3088] | 582 | if [ "$compiler" = "gfortran" ] ; then |
---|
[3560] | 583 | ./install_netcdf4_hdf5.bash -prefix $MODEL/netcdf4_hdf5 -CC gcc -FC gfortran -CXX g++ -MPI $root_mpi > $netcdflog 2>&1 |
---|
[3088] | 584 | elif [ "$compiler" = "ifort" ] ; then |
---|
[3560] | 585 | ./install_netcdf4_hdf5.bash -prefix $MODEL/netcdf4_hdf5 -CC icc -FC ifort -CXX icpc -MPI $root_mpi > $netcdflog 2>&1 |
---|
[3088] | 586 | elif [ "$compiler" = "pgf90" ] ; then |
---|
[3560] | 587 | ./install_netcdf4_hdf5.bash -prefix $MODEL/netcdf4_hdf5 -CC pgcc -FC pgf90 -CXX pgCC -MPI $root_mpi > $netcdflog 2>&1 |
---|
[3056] | 588 | else |
---|
[3088] | 589 | echo "unexpected compiler $compiler" ; exit |
---|
[3056] | 590 | fi |
---|
| 591 | fi # of if [ "$with_xios" = "n" ] |
---|
[2030] | 592 | echo install.sh netcdf_OK `date` |
---|
[1731] | 593 | fi # of if [ $netcdf = 1 ] |
---|
[1588] | 594 | |
---|
[3783] | 595 | #====================================================================================== |
---|
[1588] | 596 | echo OK2 ioipsl=$ioipsl |
---|
| 597 | echo '##########################################################' |
---|
[1731] | 598 | echo 'Installing MODIPSL, the installation package manager for the ' |
---|
| 599 | echo 'IPSL models and tools' |
---|
[1588] | 600 | echo '##########################################################' |
---|
| 601 | |
---|
| 602 | if [ $netcdf = 0 -o $netcdf = 1 ] ; then |
---|
[3056] | 603 | if [ "$with_xios" = "y" ] ; then |
---|
| 604 | ncdfdir=$MODEL/netcdf4_hdf5 |
---|
| 605 | else |
---|
| 606 | ncdfdir=$MODEL/netcdf-4.0.1 |
---|
| 607 | fi |
---|
[1588] | 608 | else |
---|
[3056] | 609 | ncdfdir=$netcdf |
---|
[1588] | 610 | fi |
---|
| 611 | |
---|
| 612 | if [ $ioipsl = 1 ] ; then |
---|
[1731] | 613 | cd $MODEL/modipsl |
---|
[2030] | 614 | \rm -rf lib/* |
---|
[2031] | 615 | |
---|
[1731] | 616 | cd util |
---|
[1588] | 617 | |
---|
[1731] | 618 | cp AA_make.gdef AA_make.orig |
---|
[3088] | 619 | F_C="$compiler -c " ; if [ "$compiler" = "$gfortran" -o "$compiler" = "mpif90" ] ; then F_C="$compiler -c -cpp " ; fi |
---|
| 620 | if [ "$compiler" = "pgf90" ] ; then F_C="$compiler -c -Mpreprocess" ; fi |
---|
[1731] | 621 | sed -e 's/^\#.*.g95.*.\#.*.$/\#/' AA_make.gdef > tmp |
---|
[3088] | 622 | sed -e "s:F_L = g95:F_L = $compiler:" -e "s:F_C = g95 -c -cpp:F_C = $F_C": \ |
---|
[1731] | 623 | -e 's/g95.*.w_w.*.(F_D)/g95 w_w = '"$OPTIMGCM"'/' \ |
---|
| 624 | -e 's:g95.*.NCDF_INC.*.$:g95 NCDF_INC= '"$ncdfdir"'/include:' \ |
---|
[3044] | 625 | -e 's:g95.*.NCDF_LIB.*.$:g95 NCDF_LIB= -L'"$ncdfdir"'/lib -lnetcdff -lnetcdf:' \ |
---|
[3063] | 626 | -e 's:g95 L_O =:g95 L_O = -Wl,-rpath='"$ncdfdir"'/lib:' \ |
---|
[1731] | 627 | -e "s:-fmod=:-$fmod:" -e 's/-fno-second-underscore//' \ |
---|
| 628 | -e 's:#-Q- g95 M_K = gmake:#-Q- g95 M_K = make:' \ |
---|
| 629 | tmp >| AA_make.gdef |
---|
[1588] | 630 | |
---|
[3375] | 631 | if [ $pcmac == 1 ] |
---|
| 632 | then |
---|
| 633 | cp AA_make.gdef tmp |
---|
| 634 | sed -e 's/rpath=/rpath,/g' tmp > AA_make.gdef |
---|
| 635 | fi |
---|
| 636 | |
---|
[1588] | 637 | |
---|
[3044] | 638 | # We use lines for g95 even for the other compilers to run ins_make |
---|
[1731] | 639 | if [ "$use_shell" = "ksh" ] ; then |
---|
[3044] | 640 | ./ins_make $o_ins_make |
---|
[1731] | 641 | else # bash |
---|
| 642 | sed -e s:/bin/ksh:/bin/bash:g ins_make > ins_make.bash |
---|
[3645] | 643 | #if [ "`grep ada AA_make.gdef`" = "" ] ; then # Bidouille pour compiler sur ada des vieux modipsl.tar |
---|
| 644 | # \cp -f ~rdzt401/bin/AA_make.gdef . |
---|
| 645 | #fi |
---|
[3573] | 646 | if [ "`grep jeanzay AA_make.gdef`" = "" ] ; then # Bidouille pour compiler sur ada des vieux modipsl.tar |
---|
| 647 | echo 'Warning jean-zay not in AA_make.gdef' |
---|
| 648 | echo 'Think about updating' |
---|
| 649 | exit 1 |
---|
| 650 | fi |
---|
[3375] | 651 | |
---|
[1731] | 652 | chmod u=rwx ins_make.bash |
---|
[3044] | 653 | ./ins_make.bash $o_ins_make |
---|
[1731] | 654 | fi # of if [ "$use_shell" = "ksh" ] |
---|
| 655 | |
---|
[2031] | 656 | #======================================================================================= |
---|
[3091] | 657 | cd $MODEL/modipsl/modeles/IOIPSL/src |
---|
[3092] | 658 | ioipsllog=`pwd`/ioipsl.log |
---|
[1731] | 659 | echo '##########################################################' |
---|
| 660 | echo 'Compiling IOIPSL, the interface library with Netcdf' |
---|
| 661 | echo '##########################################################' |
---|
[3091] | 662 | echo log file : $ioipsllog |
---|
[1731] | 663 | |
---|
| 664 | if [ "$use_shell" = "bash" ] ; then |
---|
| 665 | cp Makefile Makefile.ksh |
---|
| 666 | sed -e s:/bin/ksh:/bin/bash:g Makefile.ksh > Makefile |
---|
[1588] | 667 | fi |
---|
[3044] | 668 | # if [ "$pclinux" = 1 ] ; then |
---|
[1731] | 669 | # Build IOIPSL modules and library |
---|
[3044] | 670 | $make clean |
---|
[3091] | 671 | $make > $ioipsllog 2>&1 |
---|
[3088] | 672 | if [ "$compiler" = "$gfortran" -o "$compiler" = "mpif90" ] ; then # copy module files to lib |
---|
[1731] | 673 | cp -f *.mod ../../../lib |
---|
| 674 | fi |
---|
| 675 | # Build IOIPSL tools (ie: "rebuild", if present) |
---|
| 676 | if [ -f $MODEL/modipsl/modeles/IOIPSL/tools/rebuild ] ; then |
---|
| 677 | cd $MODEL/modipsl/modeles/IOIPSL/tools |
---|
| 678 | # adapt Makefile & rebuild script if in bash |
---|
| 679 | if [ "$use_shell" = "bash" ] ; then |
---|
| 680 | cp Makefile Makefile.ksh |
---|
| 681 | sed -e s:/bin/ksh:/bin/bash:g Makefile.ksh > Makefile |
---|
| 682 | cp rebuild rebuild.ksh |
---|
| 683 | sed -e 's:/bin/ksh:/bin/bash:g' \ |
---|
| 684 | -e 's:print -u2:echo:g' \ |
---|
| 685 | -e 's:print:echo:g' rebuild.ksh > rebuild |
---|
| 686 | fi |
---|
[3044] | 687 | $make clean |
---|
[3091] | 688 | $make > $ioipsllog 2>&1 |
---|
[1731] | 689 | fi |
---|
[3044] | 690 | # fi # of if [ "$pclinux" = 1 ] |
---|
[1588] | 691 | |
---|
[1731] | 692 | else # of if [ $ioipsl = 1 ] |
---|
[3645] | 693 | if [ ${hostname:0:5} = jean- ] ; then |
---|
[3573] | 694 | cd $MODEL/modipsl |
---|
| 695 | cd util |
---|
[3645] | 696 | if [ "`grep jeanzay AA_make.gdef`" = "" ] ; then |
---|
[3573] | 697 | echo 'Warning jean-zay not in AA_make.gdef' |
---|
| 698 | echo 'Think about updating' |
---|
| 699 | exit 1 |
---|
| 700 | fi |
---|
| 701 | ./ins_make $o_ins_make |
---|
| 702 | # Compile IOIPSL on jean-zay |
---|
| 703 | cd $MODEL/modipsl/modeles/IOIPSL/src |
---|
[3610] | 704 | gmake > ioipsl.log |
---|
| 705 | cd $MODEL/modipsl/modeles/IOIPSL/tools |
---|
| 706 | gmake > ioipsl.log |
---|
[3573] | 707 | |
---|
[3645] | 708 | fi |
---|
[2030] | 709 | echo install.sh ioipsl_OK `date` |
---|
[1731] | 710 | fi # of if [ $ioipsl = 1 ] |
---|
[3044] | 711 | # Saving ioipsl lib for possible parallel compile |
---|
| 712 | cd $MODEL/modipsl |
---|
| 713 | tar cf ioipsl.tar lib/ bin/ |
---|
[1731] | 714 | |
---|
[3056] | 715 | #=========================================================================== |
---|
| 716 | if [ "$with_xios" = "y" ] ; then |
---|
| 717 | echo '##########################################################' |
---|
| 718 | echo 'Compiling XIOS' |
---|
| 719 | echo '##########################################################' |
---|
| 720 | cd $MODEL/modipsl/modeles |
---|
[3375] | 721 | xioslog=`pwd`/xios.log |
---|
| 722 | echo "log file: $xioslog" |
---|
[3056] | 723 | #wget http://www.lmd.jussieu.fr/~lmdz/Distrib/install_xios.bash |
---|
[3076] | 724 | myget import/install_xios.bash |
---|
[3056] | 725 | chmod u=rwx install_xios.bash |
---|
[3645] | 726 | if [ ${hostname:0:5} = jean- ] ; then |
---|
[3736] | 727 | # echo 'Need to work on install_xios implementation for jean-zay' |
---|
| 728 | # exit |
---|
| 729 | svn co http://forge.ipsl.jussieu.fr/ioserver/svn/XIOS/branchs/xios-2.5 XIOS |
---|
| 730 | cd XIOS/arch |
---|
| 731 | svn update |
---|
| 732 | cd .. |
---|
| 733 | ./make_xios --prod --arch $arch --job 4 > xios.log 2>&1 |
---|
[3375] | 734 | else |
---|
| 735 | ./install_xios.bash -prefix $MODEL/modipsl/modeles \ |
---|
[3056] | 736 | -netcdf ${ncdfdir} -hdf5 ${ncdfdir} \ |
---|
[3375] | 737 | -MPI $root_mpi -arch $arch > xios.log 2>&1 |
---|
| 738 | fi |
---|
| 739 | if [ -f XIOS/lib/libxios.a ] ; then |
---|
| 740 | echo "OK, XIOS library successfully generated" |
---|
| 741 | fi |
---|
[3056] | 742 | fi |
---|
| 743 | |
---|
[1800] | 744 | #============================================================================ |
---|
[1837] | 745 | veget_version=false |
---|
[1731] | 746 | if [ "$veget" = 1 ] ; then |
---|
[3091] | 747 | cd $MODEL/modipsl/modeles/ORCHIDEE |
---|
[3646] | 748 | if [ "$orchidee_version" = "CMIP6" ] ; then |
---|
| 749 | set +e |
---|
| 750 | svn upgrade |
---|
| 751 | svn switch -r 5661 --accept theirs-full svn://forge.ipsl.jussieu.fr/orchidee/tags/ORCHIDEE_2_0/ORCHIDEE |
---|
| 752 | orchidee_rev=5661 |
---|
| 753 | veget_version=orchidee2.0 |
---|
| 754 | no_z0h_orc=0 |
---|
| 755 | set -e |
---|
| 756 | fi |
---|
[3610] | 757 | # Correctif suite debug Jean-Zay |
---|
| 758 | sed -i -e 's/9010 FORMAT(A52,F17.14)/9010 FORMAT(A52,F20.14)/' src_stomate/stomate.f90 |
---|
| 759 | opt_orc="-prod" ; if [ "$optim" = "-debug" ] ; then opt_orc="-debug" ; fi |
---|
| 760 | |
---|
[3091] | 761 | orchideelog=`pwd`/orchidee.log |
---|
[1731] | 762 | echo '########################################################' |
---|
| 763 | echo 'Compiling ORCHIDEE, the continental surfaces model ' |
---|
| 764 | echo '########################################################' |
---|
[3091] | 765 | echo log file : $orchideelog |
---|
[2430] | 766 | export ORCHPATH=`pwd` |
---|
| 767 | if [ -d tools ] ; then |
---|
[3386] | 768 | ################################################################### |
---|
| 769 | # Pour les experts qui voudraient changer de version d'orchidee. |
---|
| 770 | # Attention : necessite d'avoir le password pour orchidee |
---|
| 771 | set +e ; svn upgrade ; set -e |
---|
| 772 | if [ "$orchidee_rev" != "" ] ; then |
---|
[3646] | 773 | # test qu'on est sur la bonne branche pour faire le update |
---|
| 774 | set +e |
---|
| 775 | svn log -r $orchidee_rev | grep $orchidee_rev |
---|
| 776 | if [ $? -gt 0 ] ; then |
---|
| 777 | echo 'Cannot update ORCHIDEE as not on the right branch for ORCHIDEE' |
---|
| 778 | exit |
---|
| 779 | fi |
---|
| 780 | set -e |
---|
| 781 | set +e ; svn update -r $orchidee_rev ; set -e |
---|
[3386] | 782 | fi |
---|
[3610] | 783 | # Correctif suite debug Jean-Zay |
---|
| 784 | if [ -f src_global/time.f90 ] ; then sed -i -e 's/CALL tlen2itau/\!CALL tlen2itau/' src_global/time.f90 ; fi |
---|
[3386] | 785 | ################################################################### |
---|
[3646] | 786 | if [ "$veget_version" == "false" ] ; then veget_version=orchidee2.0 ; fi |
---|
[3044] | 787 | cd arch |
---|
[3088] | 788 | sed -e s:"%COMPILER .*.$":"%COMPILER $compiler":1 \ |
---|
| 789 | -e s:"%LINK .*.$":"%LINK $compiler":1 \ |
---|
[2430] | 790 | -e s:"%FPP_FLAGS .*.$":"%FPP_FLAGS $fpp_flags":1 \ |
---|
| 791 | -e s:"%PROD_FFLAGS .*.$":"%PROD_FFLAGS $OPTIM":1 \ |
---|
| 792 | -e s:"%DEV_FFLAGS .*.$":"%DEV_FFLAGS $OPTDEV":1 \ |
---|
| 793 | -e s:"%DEBUG_FFLAGS .*.$":"%DEBUG_FFLAGS $OPTDEB":1 \ |
---|
[3044] | 794 | -e s:"%BASE_FFLAGS .*.$":"%BASE_FFLAGS $OPTPREC":1 \ |
---|
| 795 | -e s:"%BASE_LD .*.$":"%BASE_LD $BASE_LD":1 \ |
---|
[3076] | 796 | -e s:"%ARFLAGS .*.$":"%ARFLAGS $ARFLAGS":1 \ |
---|
[2430] | 797 | arch-gfortran.fcm > arch-local.fcm |
---|
[3044] | 798 | echo "NETCDF_LIBDIR=\"-L${ncdfdir}/lib -lnetcdff -lnetcdf\"" > arch-local.path |
---|
[2430] | 799 | echo "NETCDF_INCDIR=${ncdfdir}/include" >> arch-local.path |
---|
| 800 | echo "IOIPSL_INCDIR=$ORCHPATH/../../lib" >> arch-local.path |
---|
| 801 | echo "IOIPSL_LIBDIR=$ORCHPATH/../../lib" >> arch-local.path |
---|
[3375] | 802 | echo 'XIOS_INCDIR=${ORCHDIR}/../XIOS/inc' >> arch-local.path |
---|
| 803 | echo 'XIOS_LIBDIR="${ORCHDIR}/../XIOS/lib -lxios"' >> arch-local.path |
---|
[3044] | 804 | cd ../ |
---|
[2430] | 805 | # compiling ORCHIDEE sequential mode |
---|
[3610] | 806 | ./makeorchidee_fcm -j 8 -noxios $opt_orc -parallel none -arch $arch > $orchideelog 2>&1 |
---|
| 807 | echo ./makeorchidee_fcm -j 8 -noxios $opt_orc -parallel none -arch $arch |
---|
[3417] | 808 | echo End of the first compilation of orchidee ; pwd |
---|
[1800] | 809 | else |
---|
[2430] | 810 | if [ -d src_parallel ] ; then |
---|
| 811 | liste_src="parallel parameters global stomate sechiba driver" |
---|
[3646] | 812 | if [ "$veget_version" == "false" ] ; then veget_version=orchidee2.0 ; fi |
---|
[2430] | 813 | else |
---|
| 814 | # Obsolete, for ORCHIDEE_beton only |
---|
| 815 | liste_src="parameters stomate sechiba " |
---|
| 816 | # A trick to compile ORCHIDEE depending on if we are using real*4 or real*8 |
---|
| 817 | cd src_parameters ; \cp reqdprec.$real reqdprec.f90 ; cd .. |
---|
[3646] | 818 | if [ "$veget_version" == "false" ] ; then veget_version=orchidee1.9 ; fi |
---|
[2430] | 819 | fi |
---|
| 820 | for d in $liste_src ; do src_d=src_$d |
---|
| 821 | echo src_d $src_d |
---|
| 822 | echo ls ; ls |
---|
| 823 | if [ ! -d $src_d ] ; then echo Problem orchidee : no $src_d ; exit ; fi |
---|
[3044] | 824 | cd $src_d ; \rm -f *.mod make ; $make clean |
---|
[3091] | 825 | $make > $orchideelog 2>&1 ; if [ "$compiler" = "$gfortran" -o "$compiler" = "mpif90" ] ; then cp -f *.mod ../../../lib ; fi |
---|
[2430] | 826 | cd .. |
---|
| 827 | done |
---|
[1800] | 828 | fi |
---|
[2030] | 829 | echo install.sh orchidee_OK `date` |
---|
[1731] | 830 | fi # of if [ "$veget" = 1 ] |
---|
[1588] | 831 | |
---|
[2030] | 832 | |
---|
[1800] | 833 | #============================================================================ |
---|
[1588] | 834 | # Ehouarn: it may be directory LMDZ4 or LMDZ5 depending on tar file... |
---|
[3044] | 835 | if [ -d $MODEL/modipsl/modeles/LMD* ] ; then |
---|
[1588] | 836 | echo '##########################################################' |
---|
[1800] | 837 | echo 'Compiling LMDZ' |
---|
[1588] | 838 | echo '##########################################################' |
---|
[3044] | 839 | cd $MODEL/modipsl/modeles/LMD* |
---|
| 840 | LMDZPATH=`pwd` |
---|
[1588] | 841 | else |
---|
[3044] | 842 | echo "ERROR: No LMD* directory !!!" |
---|
[1800] | 843 | exit |
---|
[1588] | 844 | fi |
---|
| 845 | |
---|
| 846 | ########################################################### |
---|
[1708] | 847 | # For those who want to use fcm to compile via : |
---|
[1588] | 848 | # makelmdz_fcm -arch local ..... |
---|
| 849 | ############################################################ |
---|
| 850 | |
---|
[2031] | 851 | if [ "$pclinux" = "1" ] ; then |
---|
| 852 | |
---|
[1708] | 853 | # create local 'arch' files (if on Linux PC): |
---|
[1588] | 854 | cd arch |
---|
[1708] | 855 | # arch-local.path file |
---|
[3044] | 856 | echo "NETCDF_LIBDIR=\"-L${ncdfdir}/lib -lnetcdff -lnetcdf\"" > arch-local.path |
---|
[1590] | 857 | echo "NETCDF_INCDIR=-I${ncdfdir}/include" >> arch-local.path |
---|
[1588] | 858 | echo 'IOIPSL_INCDIR=$LMDGCM/../../lib' >> arch-local.path |
---|
| 859 | echo 'IOIPSL_LIBDIR=$LMDGCM/../../lib' >> arch-local.path |
---|
[3044] | 860 | echo 'XIOS_INCDIR=$LMDGCM/../XIOS/inc' >> arch-local.path |
---|
| 861 | echo 'XIOS_LIBDIR=$LMDGCM/../XIOS/lib' >> arch-local.path |
---|
[1588] | 862 | echo 'ORCH_INCDIR=$LMDGCM/../../lib' >> arch-local.path |
---|
| 863 | echo 'ORCH_LIBDIR=$LMDGCM/../../lib' >> arch-local.path |
---|
[3044] | 864 | |
---|
[3375] | 865 | if [ $pcmac == 1 ] ; then |
---|
| 866 | BASE_LD="$BASE_LD -Wl,-rpath,${ncdfdir}/lib" |
---|
| 867 | else |
---|
| 868 | BASE_LD="$BASE_LD -Wl,-rpath=${ncdfdir}/lib" |
---|
| 869 | fi |
---|
| 870 | # Arch-local.fcm file (adapted from arch-linux-32bit.fcm) |
---|
[2031] | 871 | |
---|
| 872 | if [ $real = r8 ] ; then FPP_DEF=NC_DOUBLE ; else FPP_DEF="" ; fi |
---|
[3088] | 873 | sed -e s:"%COMPILER .*.$":"%COMPILER $compiler":1 \ |
---|
| 874 | -e s:"%LINK .*.$":"%LINK $compiler":1 \ |
---|
[2031] | 875 | -e s:"%PROD_FFLAGS .*.$":"%PROD_FFLAGS $OPTIM":1 \ |
---|
| 876 | -e s:"%DEV_FFLAGS .*.$":"%DEV_FFLAGS $OPTDEV":1 \ |
---|
| 877 | -e s:"%DEBUG_FFLAGS .*.$":"%DEBUG_FFLAGS $OPTDEB":1 \ |
---|
| 878 | -e s:"%BASE_FFLAGS .*.$":"%BASE_FFLAGS $OPTPREC":1 \ |
---|
[2203] | 879 | -e s:"%FPP_DEF .*.$":"%FPP_DEF $FPP_DEF":1 \ |
---|
[3044] | 880 | -e s:"%BASE_LD .*.$":"%BASE_LD $BASE_LD":1 \ |
---|
[3076] | 881 | -e s:"%ARFLAGS .*.$":"%ARFLAGS $ARFLAGS":1 \ |
---|
[2031] | 882 | arch-linux-32bit.fcm > arch-local.fcm |
---|
| 883 | |
---|
[1588] | 884 | cd .. |
---|
[1708] | 885 | ### Adapt "bld.cfg" (add the shell): |
---|
[1588] | 886 | whereisthatshell=$(which ${use_shell}) |
---|
| 887 | echo "bld::tool::SHELL $whereisthatshell" >> bld.cfg |
---|
| 888 | |
---|
[1731] | 889 | fi # of if [ "$pclinux" = 1 ] |
---|
| 890 | |
---|
| 891 | |
---|
[3056] | 892 | cd $MODEL/modipsl/modeles/LMDZ* |
---|
[3093] | 893 | lmdzlog=`pwd`/lmdz.log |
---|
[1731] | 894 | |
---|
[1588] | 895 | ################################################################## |
---|
[3056] | 896 | # Possibly update LMDZ if a specific svn release is requested |
---|
[3044] | 897 | ################################################################## |
---|
| 898 | |
---|
[3783] | 899 | set +e ; svn upgrade |
---|
[3044] | 900 | if [ "$svn" = "last" ] ; then svnopt="" ; else svnopt="-r $svn" ; fi |
---|
[3783] | 901 | if [ "$svn" != "" ] ; then |
---|
| 902 | svn info | grep -q 'http:' |
---|
| 903 | if [ $? = 0 ] ; then |
---|
| 904 | svn switch --relocate http://svn.lmd.jussieu.fr/LMDZ https://svn.lmd.jussieu.fr/LMDZ |
---|
| 905 | fi |
---|
| 906 | svn update $svnopt |
---|
| 907 | fi |
---|
| 908 | set -e |
---|
[3044] | 909 | |
---|
[3091] | 910 | echo '##################################################################' |
---|
| 911 | echo Compile LMDZ |
---|
| 912 | echo '##################################################################' |
---|
| 913 | echo log file : $lmdzlog |
---|
[3044] | 914 | |
---|
[3645] | 915 | if [ "$env_file" != "" ] ; then mv arch/arch-${arch}.env arch/arch-${arch}.orig ; \cp -f $env_file arch/arch-${arch}.env ; fi |
---|
| 916 | |
---|
[2030] | 917 | echo install.sh avant_compilation `date` |
---|
[3610] | 918 | if [ $compile_with_fcm = 1 ] ; then makelmdz="makelmdz_fcm $optim -arch $arch -j 8 " ; else makelmdz="makelmdz $optim -arch $arch" ; fi |
---|
[2031] | 919 | |
---|
[3044] | 920 | # use the orchidee interface that has no z0h |
---|
| 921 | if [ "$no_z0h_orc" = 1 ] ; then |
---|
| 922 | veget_version="$veget_version -cpp ORCHIDEE_NOZ0H" |
---|
| 923 | fi |
---|
| 924 | |
---|
| 925 | # sequential compilation and bench |
---|
| 926 | if [ "$sequential" = 1 ] ; then |
---|
[3610] | 927 | echo "./$makelmdz $optim $OPT_MAKELMDZ $optim -rrtm true $opt_cosp -d ${grid_resolution} -v $veget_version gcm " >> compile.sh |
---|
[3375] | 928 | chmod +x ./compile.sh |
---|
| 929 | if [ $bench != 0 ] ; then ./compile.sh > $lmdzlog 2>&1 ; fi |
---|
[2030] | 930 | echo install.sh apres_compilation `date` |
---|
[1588] | 931 | |
---|
[2030] | 932 | |
---|
[3044] | 933 | fi # fin sequential |
---|
| 934 | |
---|
| 935 | |
---|
| 936 | |
---|
| 937 | # compiling in parallel mode |
---|
| 938 | if [ $parallel != "none" ] ; then |
---|
[3056] | 939 | echo '##########################################################' |
---|
| 940 | echo ' Parallel compile ' |
---|
| 941 | echo '##########################################################' |
---|
| 942 | # saving the sequential libs and binaries |
---|
| 943 | cd $MODEL/modipsl |
---|
| 944 | tar cf sequential.tar bin/ lib/ |
---|
| 945 | \rm -rf bin/ lib/ |
---|
| 946 | tar xf ioipsl.tar |
---|
| 947 | # |
---|
| 948 | # Orchidee |
---|
| 949 | # |
---|
| 950 | cd $ORCHPATH |
---|
[3386] | 951 | if [ -d src_parallel -a $veget = 1 ] ; then |
---|
[3044] | 952 | cd arch |
---|
| 953 | sed \ |
---|
| 954 | -e s:"%COMPILER.*.$":"%COMPILER $par_comp":1 \ |
---|
| 955 | -e s:"%LINK.*.$":"%LINK $par_comp":1 \ |
---|
| 956 | -e s:"%MPI_FFLAG.*.$":"%MPI_FFLAGS $MPI_FLAGS":1 \ |
---|
| 957 | -e s:"%OMP_FFLAG.*.$":"%OMP_FFLAGS $OMP_FLAGS":1 \ |
---|
| 958 | -e s:"%MPI_LD.*.$":"%MPI_LD $MPI_LD":1 \ |
---|
| 959 | -e s:"%OMP_LD.*.$":"%OMP_LD $OMP_LD":1 \ |
---|
| 960 | arch-local.fcm > tmp.fcm |
---|
| 961 | |
---|
| 962 | mv tmp.fcm arch-local.fcm |
---|
| 963 | cd ../ |
---|
[3091] | 964 | echo compiling ORCHIDEE parallel mode |
---|
| 965 | echo logfile $orchideelog |
---|
[3610] | 966 | ./makeorchidee_fcm -j 8 -clean -noxios $opt_orc -parallel $parallel -arch $arch > $orchideelog 2>&1 |
---|
| 967 | ./makeorchidee_fcm -j 8 -noxios $opt_orc -parallel $parallel -arch $arch >> $orchideelog 2>&1 |
---|
| 968 | echo ./makeorchidee_fcm -j 8 -clean -noxios $opt_orc -parallel $parallel -arch $arch |
---|
| 969 | echo ./makeorchidee_fcm -j 8 -noxios $opt_orc -parallel $parallel -arch $arch |
---|
[3386] | 970 | elif [ $veget = 1 ] ; then |
---|
[3056] | 971 | echo '##########################################################' |
---|
| 972 | echo ' Orchidee version too old ' |
---|
| 973 | echo ' Please update to new version ' |
---|
| 974 | echo '##########################################################' |
---|
| 975 | exit |
---|
| 976 | fi # of if [ -d src_parallel ] |
---|
| 977 | # LMDZ |
---|
| 978 | cd $LMDZPATH |
---|
| 979 | if [ $arch = local ] ; then |
---|
| 980 | cd arch |
---|
| 981 | sed -e s:"%COMPILER.*.$":"%COMPILER $par_comp":1 \ |
---|
| 982 | -e s:"%LINK.*.$":"%LINK $par_comp":1 \ |
---|
| 983 | -e s:"%MPI_FFLAG.*.$":"%MPI_FFLAGS $MPI_FLAGS":1 \ |
---|
| 984 | -e s:"%OMP_FFLAG.*.$":"%OMP_FFLAGS $OMP_FLAGS":1 \ |
---|
[3076] | 985 | -e s:"%ARFLAGS.*.$":"%ARFLAGS $ARFLAGS":1 \ |
---|
[3056] | 986 | -e s@"%BASE_LD.*.$"@"%BASE_LD -Wl,-rpath=${root_mpi}/lib:${ncdfdir}/lib"@1 \ |
---|
| 987 | -e s:"%MPI_LD.*.$":"%MPI_LD $MPI_LD":1 \ |
---|
| 988 | -e s:"%OMP_LD.*.$":"%OMP_LD $OMP_LD":1 \ |
---|
| 989 | arch-local.fcm > tmp.fcm |
---|
| 990 | mv tmp.fcm arch-local.fcm |
---|
| 991 | cd ../ |
---|
| 992 | fi |
---|
| 993 | rm -f compile.sh |
---|
| 994 | echo resol=${grid_resolution} >> compile.sh |
---|
[3736] | 995 | if [ ${hostname:0:5} = jean- -a "$cospv2" = 1 ] ; then |
---|
| 996 | echo ./$makelmdz -dev $optim $OPT_MAKELMDZ -rrtm true $opt_cosp $opt_makelmdz_xios -d \$resol -v $veget_version -mem -parallel $parallel gcm >> compile.sh |
---|
| 997 | echo ./$makelmdz -dev $optim $OPT_MAKELMDZ -rrtm true $opt_cosp $opt_makelmdz_xios -d \$resol -v $veget_version -mem -parallel $parallel gcm |
---|
| 998 | else |
---|
| 999 | echo ./$makelmdz $optim $OPT_MAKELMDZ -rrtm true $opt_cosp $opt_makelmdz_xios -d \$resol -v $veget_version -mem -parallel $parallel gcm >> compile.sh |
---|
| 1000 | echo ./$makelmdz $optim $OPT_MAKELMDZ -rrtm true $opt_cosp $opt_makelmdz_xios -d \$resol -v $veget_version -mem -parallel $parallel gcm |
---|
| 1001 | fi |
---|
[3375] | 1002 | chmod +x ./compile.sh |
---|
| 1003 | if [ $bench != 0 ] ; then ./compile.sh > $lmdzlog 2>&1 ; fi |
---|
[1588] | 1004 | |
---|
[3056] | 1005 | echo "Compilation finished" |
---|
| 1006 | |
---|
| 1007 | fi # of if [ $parallel != "none" ] |
---|
[3044] | 1008 | |
---|
[3417] | 1009 | #echo LLLLLLLLLLLLLLLLLLLLLLLLLLL |
---|
[3044] | 1010 | if [ "$gfortran" = "gfortran44" ] ; then |
---|
| 1011 | echo Your gfortran compiler was too old so that the model was automatically |
---|
| 1012 | echo compiled with gfortran44 instead. It can not be used in parallel mode. |
---|
| 1013 | echo You can change the compiler at the begining of the install.sh |
---|
| 1014 | echo script and reinstall. |
---|
| 1015 | fi |
---|
| 1016 | |
---|
[1588] | 1017 | ################################################################## |
---|
[3044] | 1018 | # Verification du succes de la compilation |
---|
[1588] | 1019 | ################################################################## |
---|
[3044] | 1020 | |
---|
| 1021 | # Recherche de l'executable dont le nom a change au fil du temps ... |
---|
| 1022 | gcm="" |
---|
[3783] | 1023 | for exe in gcm.e bin/gcm_${grid_resolution}_phylmd_seq_orch.e bin/gcm_${grid_resolution}_phylmd_seq.e bin/gcm_${grid_resolution}_phylmd_para_mem_orch.e bin/gcm_${grid_resolution}_phylmd_para_mem.e ; do |
---|
[3044] | 1024 | if [ -f $exe ] ; then gcm=$exe ; fi |
---|
| 1025 | done |
---|
| 1026 | |
---|
| 1027 | if [ "$gcm" = "" ] ; then |
---|
[3573] | 1028 | if [ $bench != 0 ] ; then |
---|
| 1029 | echo 'Compilation failed !! Cannot run the benchmark;' |
---|
| 1030 | exit |
---|
| 1031 | else |
---|
| 1032 | echo 'Compilation not done (only done when bench=1)' |
---|
| 1033 | fi |
---|
[3044] | 1034 | else |
---|
| 1035 | echo '##########################################################' |
---|
| 1036 | echo 'Compilation successfull !! ' |
---|
| 1037 | echo '##########################################################' |
---|
| 1038 | echo The executable is $gcm |
---|
[1588] | 1039 | fi |
---|
| 1040 | |
---|
[3044] | 1041 | ################################################################## |
---|
| 1042 | # Below, we run a benchmark test (if bench=0) |
---|
| 1043 | ################################################################## |
---|
| 1044 | |
---|
| 1045 | if [ $bench != 0 ] ; then |
---|
| 1046 | |
---|
[1588] | 1047 | echo '##########################################################' |
---|
[1731] | 1048 | echo ' Running a test run ' |
---|
[1588] | 1049 | echo '##########################################################' |
---|
| 1050 | |
---|
[2030] | 1051 | \rm -rf BENCH${grid_resolution} |
---|
[1588] | 1052 | bench=bench_lmdz_${grid_resolution} |
---|
[3417] | 1053 | echo install.sh before bench download `date` |
---|
[3044] | 1054 | #wget http://www.lmd.jussieu.fr/~lmdz/Distrib/$bench.tar.gz |
---|
[3076] | 1055 | myget 3DBenchs/$bench.tar.gz |
---|
[3044] | 1056 | echo install.sh after bench download `date` |
---|
| 1057 | tar xvf $bench.tar.gz |
---|
[1588] | 1058 | |
---|
[3735] | 1059 | if [ "$cosp" = 1 -o "$cosp2" = 1 -o "$cospv2" = 1 ] ; then |
---|
[3386] | 1060 | cd BENCH${grid_resolution} |
---|
| 1061 | # copier les fichiers namelist input et output our COSP |
---|
[3735] | 1062 | cp ../DefLists/cosp*_input_nl.txt . |
---|
| 1063 | cp ../DefLists/cosp*_output_nl.txt . |
---|
[3386] | 1064 | # Activer la cles ok_cosp pour tourner avec COSP |
---|
| 1065 | sed -e 's@ok_cosp=n@ok_cosp=y@' config.def > tmp |
---|
| 1066 | \mv -f tmp config.def |
---|
| 1067 | cd .. |
---|
| 1068 | fi |
---|
| 1069 | |
---|
[3646] | 1070 | if [ -n "$physiq" ]; then |
---|
| 1071 | cd BENCH${grid_resolution} |
---|
| 1072 | if [ -f physiq.def_${physiq} ]; then |
---|
| 1073 | cp physiq.def_${physiq} physiq.def |
---|
| 1074 | echo using physiq.def_${physiq} |
---|
| 1075 | else |
---|
| 1076 | echo using standard physiq.def |
---|
| 1077 | fi |
---|
| 1078 | cd .. |
---|
| 1079 | else |
---|
| 1080 | echo using standard physiq.def |
---|
| 1081 | fi |
---|
| 1082 | |
---|
[3056] | 1083 | if [ "$with_xios" = "y" ] ; then |
---|
| 1084 | cd BENCH${grid_resolution} |
---|
| 1085 | cp ../DefLists/iodef.xml . |
---|
| 1086 | cp ../DefLists/context_lmdz.xml . |
---|
| 1087 | cp ../DefLists/field_def_lmdz.xml . |
---|
[3733] | 1088 | cp ../DefLists/field_def_cosp*.xml . |
---|
[3056] | 1089 | cp ../DefLists/file_def_hist*xml . |
---|
| 1090 | # adapt iodef.xml to use attached mode |
---|
| 1091 | sed -e 's@"using_server" type="bool">true@"using_server" type="bool">false@' iodef.xml > tmp |
---|
| 1092 | \mv -f tmp iodef.xml |
---|
[3386] | 1093 | |
---|
[3056] | 1094 | # and convert all the enabled="_AUTO_" (for libIGCM) to enabled=.FALSE. |
---|
| 1095 | # except for histday |
---|
| 1096 | for histfile in file_def_hist*xml |
---|
| 1097 | do |
---|
| 1098 | if [ "$histfile" = "file_def_histday_lmdz.xml" ] ; then |
---|
| 1099 | sed -e 's@enabled="_AUTO_"@type="one_file" enabled=".TRUE."@' $histfile > tmp ; \mv -f tmp $histfile |
---|
[3560] | 1100 | sed -e 's@output_level="_AUTO_"@output_level="5"@' $histfile > tmp ; \mv -f tmp $histfile |
---|
| 1101 | sed -e 's@compression_level="2"@compression_level="0"@' $histfile > tmp ; \mv -f tmp $histfile |
---|
[3056] | 1102 | else |
---|
| 1103 | sed -e 's@enabled="_AUTO_"@type="one_file" enabled=".FALSE."@' $histfile > tmp ; \mv -f tmp $histfile |
---|
| 1104 | fi |
---|
| 1105 | done |
---|
| 1106 | # and add option "ok_all_xml=y" in config.def |
---|
| 1107 | echo "### XIOS outputs" >> config.def |
---|
| 1108 | echo 'ok_all_xml=.true.' >> config.def |
---|
[3733] | 1109 | |
---|
| 1110 | #activer les sorties pour Cosp |
---|
[3735] | 1111 | if [ "$cosp" = 1 -o "$cosp2" = 1 ] ; then |
---|
[3733] | 1112 | histfile=file_def_histdayCOSP_lmdz.xml |
---|
| 1113 | sed -e 's@enabled=".FALSE."@enabled=".TRUE."@' $histfile > tmp ; \mv -f tmp $histfile |
---|
| 1114 | sed -e 's@output_level="_AUTO_"@output_level="5"@' $histfile > tmp ; \mv -f tmp $histfile |
---|
| 1115 | sed -e 's@compression_level="2"@compression_level="0"@' $histfile > tmp ; \mv -f tmp $histfile |
---|
| 1116 | fi |
---|
[3735] | 1117 | if [ "$cospv2" = 1 ] ; then |
---|
| 1118 | histfile=file_def_histdayCOSPv2_lmdz.xml |
---|
| 1119 | sed -e 's@compression_level="2"@compression_level="0"@' $histfile > tmp ; \mv -f tmp $histfile |
---|
| 1120 | contextfile=context_lmdz.xml |
---|
| 1121 | sed -e 's@src="./file_def_histdayCOSP_lmdz.xml"@src="./file_def_histdayCOSPv2_lmdz.xml"@' $contextfile > tmp ; \mv -f tmp $contextfile |
---|
| 1122 | fieldfile=field_def_lmdz.xml |
---|
| 1123 | sed -e 's@field_def_cosp1.xml@field_def_cospv2.xml@' $fieldfile > tmp ; \mv -f tmp $fieldfile |
---|
| 1124 | fi |
---|
| 1125 | |
---|
[3056] | 1126 | cd .. |
---|
| 1127 | fi |
---|
| 1128 | |
---|
[3044] | 1129 | cp $gcm BENCH${grid_resolution}/gcm.e |
---|
[1588] | 1130 | |
---|
| 1131 | cd BENCH${grid_resolution} |
---|
[3044] | 1132 | # On cree le fichier bench.sh au besoin |
---|
| 1133 | # Dans le cas 48x36x39 le bench.sh existe deja en parallele |
---|
[1588] | 1134 | |
---|
[3044] | 1135 | if [ "$grid_resolution" = "48x36x39" ] ; then |
---|
| 1136 | echo On ne touche pas au bench.sh |
---|
| 1137 | # But we have to adapt "run_local.sh" for $mpirun |
---|
| 1138 | sed -e "s@mpirun@$mpirun@g" run_local.sh > tmp |
---|
| 1139 | mv -f tmp run_local.sh |
---|
| 1140 | chmod u=rwx run_local.sh |
---|
| 1141 | elif [ "${parallel:0:3}" = "mpi" ] ; then |
---|
| 1142 | # Lancement avec deux procs mpi et 2 openMP |
---|
| 1143 | echo "export OMP_STACKSIZE=800M" > bench.sh |
---|
| 1144 | if [ "${parallel:4:3}" = "omp" ] ; then |
---|
| 1145 | echo "export OMP_NUM_THREADS=2" >> bench.sh |
---|
| 1146 | fi |
---|
[3735] | 1147 | if [ "$cospv2" = 1 -o "$cosp" = 1 -o "$cosp2" = 1 ] ; then |
---|
[3736] | 1148 | if [ ${hostname:0:5} = jean- ] ; then |
---|
| 1149 | chmod +x ../arch.env |
---|
| 1150 | ../arch.env |
---|
| 1151 | echo "ulimit -s 2000000" >> bench.sh |
---|
| 1152 | else |
---|
| 1153 | echo "ulimit -s 200000" >> bench.sh |
---|
| 1154 | fi |
---|
[3735] | 1155 | else |
---|
| 1156 | echo "ulimit -s unlimited" >> bench.sh |
---|
| 1157 | fi |
---|
[3573] | 1158 | if [ ${hostname:0:5} = jean- ] ; then |
---|
| 1159 | echo "srun -n 2 -A $idris_acct@cpu gcm.e > listing 2>&1" >> bench.sh |
---|
| 1160 | else |
---|
| 1161 | echo "$mpirun -np 2 gcm.e > listing 2>&1" >> bench.sh |
---|
| 1162 | fi |
---|
[3044] | 1163 | else |
---|
| 1164 | echo "./gcm.e > listing 2>&1" > bench.sh |
---|
| 1165 | fi |
---|
| 1166 | echo EXECUTION DU BENCH |
---|
[3076] | 1167 | set +e |
---|
[3044] | 1168 | date ; ./bench.sh > out.bench 2>&1 ; date |
---|
[3076] | 1169 | set -e |
---|
[3044] | 1170 | tail listing |
---|
[2030] | 1171 | |
---|
[1588] | 1172 | |
---|
| 1173 | echo '##########################################################' |
---|
[1708] | 1174 | echo 'Simulation finished in' `pwd` |
---|
[3044] | 1175 | echo 'You have compiled with:' |
---|
| 1176 | cat ../compile.sh |
---|
| 1177 | if [ $parallel = "none" ] ; then |
---|
| 1178 | echo 'You may re-run it with : cd ' `pwd` ' ; gcm.e' |
---|
| 1179 | echo 'or ./bench.sh' |
---|
| 1180 | else |
---|
| 1181 | echo 'You may re-run it with : ' |
---|
| 1182 | echo 'cd ' `pwd` '; ./bench.sh' |
---|
[3573] | 1183 | # echo 'ulimit -s unlimited' |
---|
| 1184 | # echo 'export OMP_NUM_THREADS=2' |
---|
| 1185 | # echo 'export OMP_STACKSIZE=800M' |
---|
| 1186 | # echo "$mpirun -np 2 gcm.e " |
---|
[3044] | 1187 | fi |
---|
[1588] | 1188 | echo '##########################################################' |
---|
[2030] | 1189 | |
---|
| 1190 | fi |
---|
[3044] | 1191 | |
---|
| 1192 | |
---|
| 1193 | ################################################################# |
---|
| 1194 | # Installation eventuelle du 1D |
---|
| 1195 | ################################################################# |
---|
| 1196 | |
---|
| 1197 | if [ $SCM = 1 ] ; then |
---|
| 1198 | cd $MODEL |
---|
| 1199 | #wget http://www.lmd.jussieu.fr/~lmdz/Distrib/1D.tar.gz |
---|
[3076] | 1200 | myget 1D/1D.tar.gz |
---|
[3044] | 1201 | tar xvf 1D.tar.gz |
---|
| 1202 | cd 1D |
---|
| 1203 | ./run.sh |
---|
| 1204 | fi |
---|