source: LMDZ5/trunk/makelmdz_fcm @ 2265

Last change on this file since 2265 was 2250, checked in by Ehouarn Millour, 10 years ago

Improving the makelmdz* utilities:
Directory phy* in dynlonlat_phylonlat is assumed to be the same "root" as provided by the name of the physics package (e.g. "phylmd" for "phylmd_bis" or "phylmdmine" or "phylmd.2", etc.) to ease things for those who work with multiple copies of a physics directory.
FH

  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 17.2 KB
Line 
1#!/bin/bash
2# $Id: makelmdz_fcm 2250 2015-03-26 15:28:42Z jyg $
3# This is a script in Bash.
4
5# FH : on ne cr\'ee plus le fichier arch.mk qui est suppos\'e exister par
6# FH : ailleurs.
7# FH : ulterieurement, ce fichier sera pr\'e-existant pour une s\'erie
8# FH : de configurations en versions optimis\'ees et debug qui seront
9# FH : li\'es (ln -s) avec arch.mk en fonction de l'architecture.
10# FH : Pour le moment, cette version est en test et on peut cr\'eer les
11# FH : arch.mk en lan\c{}cant une premi\`ere fois makegcm.
12#
13##set -x
14set -e
15########################################################################
16# options par defaut pour la commande make
17########################################################################
18
19dim="96x72x19"
20physique=lmd
21filtre=filtrez
22grille=reg
23couple=false
24veget=false
25sisvat=false
26rrtm=false
27chimie=false
28parallel=none
29paramem="par"
30compil_mod=prod
31io=ioipsl
32LIBPREFIX=""
33cosp=false
34job=1
35full=''
36
37LMDGCM=`/bin/pwd`
38LIBOGCM=$LMDGCM/libo
39LIBFGCM=$LMDGCM/libf
40DYN_COMMON_PATH=$LIBFGCM/dyn3d_common
41# path for optional packages, but default set to ".void_dir"
42FILTRE_PATH=$LMDGCM/.void_dir
43DYN_PHYS_PATH=$LMDGCM/.void_dir
44DYN_PHYS_SUB_PATH=$LMDGCM/.void_dir
45RRTM_PATH=$LMDGCM/.void_dir
46SISVAT_PATH=$LMDGCM/.void_dir
47COSP_PATH=$LMDGCM/.void_dir
48fcm_path=$LMDGCM/tools/fcm/bin
49
50########################################################################
51#  Quelques initialisations de variables du shell.
52########################################################################
53
54CPP_KEY="" 
55INCLUDE=""
56LIB=""
57adjnt=""
58COMPIL_FFLAGS="%PROD_FFLAGS"
59PARA_FFLAGS=""
60PARA_LD=""
61EXT_SRC=""
62
63########################################################################
64# lecture des options de mymake
65########################################################################
66
67while (($# > 0))
68  do
69  case $1 in
70      "-h") cat <<fin
71Usage :
72makelmdz_fcm [options] -arch nom_arch exec
73[-h]                       : brief help
74[-d [[IMx]JMx]LM]          : IM, JM, LM are the dimensions in x, y, z (default: $dim)
75[-p PHYS]                  : set of physical parametrizations (in libf/phyPHYS), (default: lmd)
76[-prod / -dev / -debug]    : compilation mode production (default) / developement / debug
77[-c false/MPI1/OMCT]       : coupling with ocean model : MPI1/OMCT/false (default: false)
78[-v false/orchidee2.0/orchidee1.9/true] : version of the vegetation model to include (default: false)
79          false       : no vegetation model
80          orchidee2.0 : compile using ORCHIDEE 2.0 (or more recent version)
81          orchidee1.9 : compile using ORCHIDEE up to the version including OpenMP in ORCHIDEE : tag 1.9-1.9.5(version AR5)-1.9.6
82          true        : (obsolete; for backward compatibility) use ORCHIDEE tag 1.9-1.9.6
83[-chimie INCA/false]       : with INCA chemistry model or without (default: false)
84[-cosp true/false]    : compile with/without cosp package (default: false)
85[-sisvat true/false]  : compile with/without sisvat package (default: false)
86[-rrtm true/false]    : compile with/without rrtm package (default: false)
87[-parallel none/mpi/omp/mpi_omp] : parallelism (default: none) : mpi, openmp or mixted mpi_openmp
88[-g GRI]                   : grid configuration in dyn3d/GRI_xy.h  (default: reg, inclues a zoom)
89[-io ioipsl/mix/xios]                   : Input/Output library (default: ioipsl)
90[-include INCLUDES]        : extra include path to add
91[-cpp CPP_KEY]             : additional preprocessing definitions
92[-adjnt]                   : adjoint model, not operational ...
93[-mem]                     : reduced memory dynamics (if in parallel mode)
94[-filtre NOMFILTRE]        : use filtre from libf/NOMFILTRE (default: filtrez)
95[-link LINKS]              : additional links with other libraries
96[-j n]                     : active parallel compiling on ntask
97[-full]                    : full recompiling
98[-fcm_path path]           : path to the fcm tool (default: tools/fcm/bin)
99[-ext_src path]            : path to an additional set of routines to compile with the model
100 -arch nom_arch            : target architecture
101 exec                      : executable to build
102fin
103          exit;;
104
105      "-d")
106          dim=$2 ; shift ; shift ;;
107     
108      "-p")
109          physique="$2" ;  shift ; shift ;;
110
111      "-g")
112          grille="$2" ; shift ; shift ;;
113
114      "-c")
115          couple="$2" ; shift ; shift ;;
116
117      "-prod")
118          compil_mod="prod" ; shift ;;
119
120      "-dev")
121          compil_mod="dev" ; shift ;;
122
123      "-debug")
124          compil_mod="debug" ; shift ;;
125
126      "-io")
127          io="$2" ; shift ; shift ;;
128
129      "-v")
130          veget="$2" ; shift ; shift ;;
131
132      "-sisvat")
133          sisvat="$2" ; shift ; shift ;;
134
135      "-rrtm")
136          rrtm="$2" ; shift ; shift ;;
137
138      "-chimie")
139          chimie="$2" ; shift ; shift ;;
140
141      "-parallel")
142          parallel="$2" ; shift ; shift ;;
143     
144      "-include")
145          INCLUDE="$INCLUDE -I$2" ; shift ; shift ;;
146
147      "-cpp")
148          CPP_KEY="$CPP_KEY $2" ; shift ; shift ;;
149
150      "-adjnt")
151          echo "not operational ... work to be done here ";exit
152          opt_dep="$opt_dep adjnt" ; adjnt="-ladjnt -ldyn3d "
153          optim="$optim -Dadj" ; shift ;;
154
155      "-cosp")
156          cosp="$2" ; shift ; shift ;;
157     
158      "-mem")
159          paramem="mem" ; shift ;;
160
161      "-filtre")
162          filtre=$2 ; shift ; shift ;;
163
164      "-link")
165          LIB="$LIB $2" ; shift ; shift ;;
166
167      "-fcm_path")
168          fcm_path=$2 ; shift ; shift ;;
169
170      "-ext_src")
171          EXT_SRC=$2 ; shift ; shift ;;
172      "-j")
173          job=$2 ; shift ; shift ;;
174      "-full")
175          full="-full" ; shift ;;
176
177      "-arch")
178          arch=$2 ; shift ; shift ;;
179
180      *)
181          code="$1" ; shift ;;
182  esac
183done
184
185###############################################################
186# path to fcm
187###############################################################
188# handle case when provided path to fcm was given as a relative
189# path (from makelmdz_fcm script directory) and not an absolute path
190if [[ ${fcm_path:0:1} != "/" ]] ; then
191  # prepend with makelmdz_fcm location
192  fcm_path=$(cd $(dirname $0) ; pwd)"/"${fcm_path}
193fi
194
195# add fcm_path to PATH
196export PATH=${fcm_path}:${PATH}
197
198echo "Path to fcm:"
199echo ${fcm_path}
200
201###############################################################
202# lecture des chemins propres \`a l'architecture de la machine #
203###############################################################
204rm -f .void_file
205echo > .void_file
206rm -rf .void_dir
207mkdir .void_dir
208rm -f arch.path
209ln -s arch/arch-${arch}.path ./arch.path
210source arch.path
211
212########################################################################
213# Definition des clefs CPP, des chemins des includes et modules
214#  et des libraries
215########################################################################
216
217if [[ "$compil_mod" == "prod" ]]
218then
219  COMPIL_FFLAGS="%PROD_FFLAGS"
220elif [[ "$compil_mod" == "dev" ]]
221then
222  COMPIL_FFLAGS="%DEV_FFLAGS"
223elif [[ "$compil_mod" == "debug" ]]
224then
225  COMPIL_FFLAGS="%DEBUG_FFLAGS"
226fi
227
228phys_root=$physique
229if [[ "${physique:0:3}" == "lmd" ]] ; then phys_root=lmd ; fi
230if [[ "${physique:0:4}" == "mars" ]] ; then phys_root=mars ; fi
231if [[ "${physique:0:3}" == "std" ]] ; then phys_root=std ; fi
232if [[ "${physique:0:5}" == "venus" ]] ; then phys_root=venus ; fi
233if [[ "${physique:0:5}" == "titan" ]] ; then phys_root=titan ; fi
234if [[ "${physique:0:3}" == "mar" ]] ; then phys_root=mar ; fi
235if [[ "${physique:0:3}" == "dev" ]] ; then phys_root=dev ; fi
236
237if [[ "$physique" != "nophys" ]]
238then
239   #We'll use some physics
240   CPP_KEY="$CPP_KEY CPP_PHYS"
241   if [[ "${phys_root}" == "lmd" ]]
242   then
243   #For lmd physics, default planet type is Earth
244   CPP_KEY="$CPP_KEY CPP_EARTH"
245   fi
246   # set the dyn/phys interface path
247   DYN_PHYS_PATH="${LIBFGCM}/dynlonlat_phylonlat"
248   DYN_PHYS_SUB_PATH="${LIBFGCM}/dynlonlat_phylonlat/phy${phys_root}"
249fi
250
251if [[ "$filtre" == "filtrez" ]]
252then
253   FILTRE_PATH=${LIBFGCM}/$filtre
254fi
255
256if [[ "$chimie" == "INCA" ]]
257then
258   CPP_KEY="$CPP_KEY INCA"
259   INCLUDE="$INCLUDE -I${INCA_INCDIR}"
260   LIB="$LIB -L${INCA_LIBDIR} -lchimie"
261fi
262
263if [[ "$couple" != "false" ]]
264then
265    if [[ "$couple" == "MPI1" ]]
266    then
267        CPP_KEY="$CPP_KEY CPP_COUPLE"
268        export OASIS_INCDIR=$LMDGCM/../../prism/X64/build/lib/psmile.MPI1
269        export OASIS_LIBDIR=$LMDGCM/../../prism/X64/lib
270        INCLUDE="$INCLUDE -I${OASIS_INCDIR}"
271        LIB="$LIB -L${OASIS_LIBDIR} -lpsmile.MPI1 -lmpp_io"
272    else
273        CPP_KEY="$CPP_KEY CPP_COUPLE CPP_OMCT"
274        INCLUDE="$INCLUDE -I${OASIS_INCDIR}"
275        LIB="$LIB -L${OASIS_LIBDIR} -lpsmile.MPI1 -lscrip -lmct -lmpeu"
276    fi
277fi
278
279if [[ "$parallel" == "mpi" ]]
280then
281   CPP_KEY="$CPP_KEY CPP_PARA CPP_MPI"
282   PARA_FFLAGS="%MPI_FFLAGS"
283   PARA_LD="%MPI_LD"
284elif [[ "$parallel" == "omp" ]]
285then
286   CPP_KEY="$CPP_KEY CPP_PARA CPP_OMP"
287   PARA_FFLAGS="%OMP_FFLAGS"
288   PARA_LD="%OMP_LD"
289elif [[ "$parallel" == "mpi_omp" ]]
290then
291   CPP_KEY="$CPP_KEY CPP_PARA CPP_MPI CPP_OMP"
292   PARA_FFLAGS="%MPI_FFLAGS %OMP_FFLAGS"
293   PARA_LD="%MPI_LD %OMP_LD"
294fi
295
296if [[ ( "$parallel" == "omp" || "$parallel" == "mpi_omp" ) \
297   && "$compil_mod" == "debug" ]]
298then
299    echo "Usually, parallelization with OpenMP requires some optimization."
300    echo "We suggest switching to \"-dev\"."
301fi
302
303if [ "$veget" = "true" -o "$veget" = "orchidee1.9" -o "$veget" = "orchidee2.0" ]
304then
305#NB: option 'true': for backward compatibility. To be used with ORCHIDEE tag 1.9-1.9.6
306#    For this case, cpp flag ORCHIDEE_NOOPENMP must be added to the makelmdz_fcm arguments
307#    option orchidee1.9 : Compile with ORCHIDEE version up to the inclusion of OpenMP in ORCHIDEE : tag 1.9-1.9.5(version AR5)-1.9.6
308   INCLUDE="${INCLUDE} -I${ORCH_INCDIR}"
309   CPP_KEY="$CPP_KEY CPP_VEGET"
310# temporary, for Orchidee versions 1.9.* (before openmp activation)
311   if [[ "$veget" == "orchidee1.9" ]] ; then
312      CPP_KEY="$CPP_KEY ORCHIDEE_NOOPENMP"
313   fi
314   if [[ "$veget" == "orchidee2.0" ]] ; then
315      orch_libs="sechiba parameters stomate parallel orglob orchidee"
316   else
317      orch_libs="sechiba parameters stomate parallel orglob"
318   fi
319   LIB="${LIB} -L${ORCH_LIBDIR}"
320   for lib in ${orch_libs} ; do
321      if [ -f ${ORCH_LIBDIR}/lib${LIBPREFIX}$lib.a ] ; then
322         LIB="${LIB} -l${LIBPREFIX}$lib "
323      fi
324   done
325elif [[ "$veget" != "false" ]] ; then
326   echo "Option -v $veget does not exist"
327   echo "Use ./makelmdz_fcm -h for more information"
328   exit 
329fi
330
331if [[ "$sisvat" == "true" ]]
332then
333   CPP_KEY="$CPP_KEY CPP_SISVAT"
334   SISVAT_PATH="$LIBFGCM/%PHYS/sisvat"
335fi
336
337if [[ "$rrtm" == "true" ]]
338then
339   CPP_KEY="$CPP_KEY CPP_RRTM"
340   RRTM_PATH="$LIBFGCM/%PHYS/rrtm"
341fi
342
343if [[ $io == ioipsl ]]
344then
345   CPP_KEY="$CPP_KEY CPP_IOIPSL"
346   INCLUDE="$INCLUDE -I${IOIPSL_INCDIR}"
347   LIB="$LIB -L${IOIPSL_LIBDIR} -l${LIBPREFIX}ioipsl"
348elif [[ $io == mix ]]
349then
350   # For now, xios implies also using ioipsl
351   CPP_KEY="$CPP_KEY CPP_IOIPSL CPP_XIOS"
352   INCLUDE="$INCLUDE -I${IOIPSL_INCDIR} -I${XIOS_INCDIR}"
353   LIB="$LIB -L${IOIPSL_LIBDIR} -l${LIBPREFIX}ioipsl -L${XIOS_LIBDIR} -l${LIBPREFIX}stdc++ -l${LIBPREFIX}xios"
354elif [[ $io == xios ]]
355then
356   # For now, xios implies also using ioipsl
357   CPP_KEY="$CPP_KEY CPP_IOIPSL CPP_XIOS CPP_IOIPSL_NO_OUTPUT"
358   INCLUDE="$INCLUDE -I${IOIPSL_INCDIR} -I${XIOS_INCDIR}"
359   LIB="$LIB -L${IOIPSL_LIBDIR} -l${LIBPREFIX}ioipsl -L${XIOS_LIBDIR} -l${LIBPREFIX}stdc++ -l${LIBPREFIX}xios"
360fi
361
362if [[ "$cosp" == "true" ]]
363then
364   CPP_KEY="$CPP_KEY CPP_COSP"
365   COSP_PATH="$LIBFGCM/phylmd/cosp"
366#   LIB="${LIB} -l${LIBPREFIX}cosp"
367fi
368
369INCLUDE="$INCLUDE ${NETCDF_INCDIR}"
370LIB="$LIB ${NETCDF_LIBDIR}"
371
372########################################################################
373# calcul du nombre de dimensions
374########################################################################
375
376
377dim_full=$dim
378dim=`echo $dim | sed -e 's/[^0-9]/ /g'` 
379set $dim
380dimc=$#
381echo calcul de la dimension
382echo dim $dim
383echo dimc $dimc
384
385
386########################################################################
387# Gestion des dimensions du modele.
388# on cree ou remplace le fichier des dimensions
389########################################################################
390
391cd $LIBFGCM/grid
392if [[ -f dimensions.h ]]
393then
394  echo 'ATTENTION: vous etes sans doute en train de compiler le modele par ailleurs'
395  echo "Attendez que la premiere compilation soit terminee pour relancer la suivante."
396  echo "Si vous etes sur que vous ne compilez pas le modele par ailleurs,"
397  echo  vous pouvez continuer en repondant oui.
398  echo "Voulez-vous vraiment continuer?"
399  echo ""
400  echo "WARNING: you are probably already compiling the model somewhere else."
401  echo "Wait until the first compilation is finished before launching this one."
402  echo "If you are sure that you are not compiling elsewhere, just answer "
403  echo "yes (or 'oui') to the question below to proceed."
404  echo "Do you wish to continue?"
405  read reponse
406  if [[ $reponse == "oui" || $reponse == "yes" ]]
407  then
408    \rm -f $LIBFGCM/grid/dimensions.h
409  else
410    exit
411  fi
412fi
413
414
415cd $LIBFGCM/grid/dimension
416./makdim $dim
417cat $LIBFGCM/grid/dimensions.h
418cd $LMDGCM
419
420
421########################################################################
422# Differentes dynamiques (3d, 2d, 1d)
423########################################################################
424
425dimension=`echo $dim | wc -w`
426echo dimension $dimension
427
428if (( $dimension == 3 ))
429then
430  cd $LIBFGCM/grid
431  \rm fxyprim.h
432  cp -p fxy_${grille}.h fxyprim.h
433#else
434#  echo "Probleme dans les dimensions de la dynamique !!"
435#  echo "Non reactive pour l'instant !!!"
436fi
437
438if (( $dimension == 1 ))
439then
440  CPP_KEY="$CPP_KEY CPP_1D"
441##in 1D, add dyn3d to include path (because main prog is in physics)
442  INCLUDE="$INCLUDE -Ilibf/dyn3d -Ilibf/dyn3d_common"
443## no filtre in 1d:
444  FILTRE_PATH=$LMDGCM/.void_dir
445## no need to compile all routines in dyn3d_common either:
446  DYN_COMMON_PATH=$LMDGCM/.void_dir
447## no need to compile all routines in dynlmdz_phy... ;
448## (because key ones are included in 1D main program)
449  DYN_PHYS_PATH=$LMDGCM/.void_dir
450  DYN_PHYS_SUB_PATH=$LMDGCM/.void_dir
451fi
452
453######################################################################
454#   Traitement special pour le nouveau rayonnement de Laurent Li.
455#   ---> YM desactive pour le traitemement en parallele
456######################################################################
457
458#if [[ -f $libf/phy$physique/raddim.h ]]
459#then
460# if [[ -f $libf/phy$physique/raddim.$dimh.h ]]
461#then
462#  \rm -f $libf/phy$physique/raddim.h
463#  cp -p $libf/phy$physique/raddim.$dimh.h $libf/phy$physique/raddim.h
464#  echo $libf/phy$physique/raddim.$dimh.h
465#  cat $libf/phy$physique/raddim.h
466# else
467#  echo On peut diminuer la taille de l executable en creant
468#  echo le fichier $libf/phy$physique/raddim.$dimh.h
469#  \cp -p $libf/phy$physique/raddim.defaut.h $libf/phy$physique/raddim.h
470# fi
471#fi
472
473######################################################################
474# Gestion du filtre qui n'existe qu'en 3d.
475######################################################################
476
477if (( `expr $dimc \> 2` == 1 ))
478then
479   filtre="FILTRE=$filtre"
480else
481   filtre="FILTRE= L_FILTRE= "
482fi
483echo MACRO FILTRE $filtre
484
485echo $dimc
486
487
488
489######################################################################
490# Creation du suffixe de la configuration
491######################################################################
492
493
494SUFF_NAME=_${dim_full}
495SUFF_NAME=${SUFF_NAME}_phy${physique}
496
497if [[ "$parallel" != "none" ]]
498then
499  SUFF_NAME=${SUFF_NAME}_para
500  DYN=dyn${dimc}d${paramem}
501  if [[ "$paramem" == "mem" ]]
502  then
503      SUFF_NAME=${SUFF_NAME}_${paramem}
504  else
505      echo "The version of the dynamics in dyn3dpar is no longer updated."
506      echo "You should use option \"-mem\"."
507      exit 1
508  fi
509else
510  SUFF_NAME=${SUFF_NAME}_seq
511  if (( $dimension == 1 ))
512  then
513    # dynamics-related routines in"dyn1d" subdirectory of phy${physique}
514    DYN=phy${physique}/dyn1d
515  else
516    DYN=dyn${dimc}d
517  fi
518fi
519
520if [[ $veget != "false" ]]
521then
522  SUFF_NAME=${SUFF_NAME}_orch
523fi
524
525if [[ $couple != "false" ]]
526then
527  SUFF_NAME=${SUFF_NAME}_couple
528fi
529
530if [[ $chimie == "INCA" ]]
531then
532  SUFF_NAME=${SUFF_NAME}_inca
533fi
534
535cd $LMDGCM
536config_fcm="config.fcm"
537rm -f $config_fcm
538touch $config_fcm
539rm -f bin/${code}${SUFF_NAME}.e
540rm -f arch.fcm
541rm -f arch.opt
542
543echo "%ARCH          $arch"          >> $config_fcm
544echo "%INCDIR        $INCLUDE"       >> $config_fcm 
545echo "%LIB           $LIB"           >> $config_fcm
546echo "%ROOT_PATH     $PWD"           >> $config_fcm
547echo "%LIBF          $LIBFGCM"       >> $config_fcm
548echo "%LIBO          $LIBOGCM"       >> $config_fcm
549echo "%DYN           $DYN"           >> $config_fcm
550echo "%DYN_COMMON    $DYN_COMMON_PATH" >> $config_fcm
551echo "%FILTRE        $FILTRE_PATH"   >> $config_fcm
552echo "%PHYS          phy${physique}" >> $config_fcm
553echo "%DYN_PHYS      $DYN_PHYS_PATH" >> $config_fcm
554echo "%DYN_PHYS_SUB  $DYN_PHYS_SUB_PATH" >> $config_fcm
555echo "%RRTM          $RRTM_PATH"     >> $config_fcm
556echo "%SISVAT        $SISVAT_PATH"   >> $config_fcm
557echo "%COSP          $COSP_PATH"     >> $config_fcm
558echo "%CPP_KEY       $CPP_KEY"       >> $config_fcm
559echo "%EXEC          $code"          >> $config_fcm
560echo "%SUFF_NAME     $SUFF_NAME"     >> $config_fcm
561echo "%COMPIL_FFLAGS $COMPIL_FFLAGS" >> $config_fcm
562echo "%PARA_FFLAGS   $PARA_FFLAGS"   >> $config_fcm
563echo "%PARA_LD       $PARA_LD"       >> $config_fcm
564echo "%EXT_SRC       $EXT_SRC"       >> $config_fcm
565
566
567
568ln -s arch/arch-${arch}.fcm arch.fcm
569if test -f arch/arch-${arch}.opt &&  [ $compil_mod = "prod" ]
570  then
571  ln -s arch/arch-${arch}.opt arch.opt
572else
573  ln -s .void_file arch.opt
574fi
575
576rm -f $LIBOGCM/${arch}${SUFF_NAME}/.config/fcm.bld.lock
577./build_gcm ${fcm_path} -j $job $full
578
579rm -rf tmp_src
580rm -rf config
581ln -s $LIBOGCM/${arch}${SUFF_NAME}/.config config
582ln -s $LIBOGCM/${arch}${SUFF_NAME}/.config/tmp tmp_src
583
584
585if [[ -r $LIBFGCM/grid/dimensions.h ]]
586then
587  # Cleanup: remove dimension.h file
588  \rm -f $LIBFGCM/grid/dimensions.h
589fi
Note: See TracBrowser for help on using the repository browser.