/[MITgcm]/MITgcm/tools/genmake2
ViewVC logotype

Diff of /MITgcm/tools/genmake2

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.183 by utke, Wed Jan 14 20:08:40 2009 UTC revision 1.190 by utke, Wed Apr 22 18:35:00 2009 UTC
# Line 611  Usage: "$0" [OPTIONS] Line 611  Usage: "$0" [OPTIONS]
611            set to PATH. i.e. Include files from \$PATH/include, link to libraries            set to PATH. i.e. Include files from \$PATH/include, link to libraries
612            from \$PATH/lib and use binaries from \$PATH/bin.            from \$PATH/lib and use binaries from \$PATH/bin.
613    
614        -omp | --omp
615              Activate OpenMP code + use Compiler option OMPFLAG
616        -omp=OMPFLAG | --omp=OMPFLAG
617              Activate OpenMP code + use Compiler option OMPFLAG
618    
619      -es | --es | -embed-source | --embed-source      -es | --es | -embed-source | --embed-source
620            Embed a tarball containing the full source code            Embed a tarball containing the full source code
621            (including the Makefile, etc.) used to build the            (including the Makefile, etc.) used to build the
# Line 1058  NOOPTFILES= Line 1063  NOOPTFILES=
1063  NOOPTFLAGS=  NOOPTFLAGS=
1064  MPI=  MPI=
1065  MPIPATH=  MPIPATH=
1066    OMP=
1067    OMPFLAG=
1068  TS=  TS=
1069  PAPIS=  PAPIS=
1070  PCLS=  PCLS=
# Line 1125  TAMC_EXTRA= Line 1132  TAMC_EXTRA=
1132    
1133  #  The following state can be set directly by command-line switches  #  The following state can be set directly by command-line switches
1134  gm_s1="OPTFILE PDEPEND PDEFAULT MAKEFILE PLATFORM ROOTDIR MODS DISABLE ENABLE"  gm_s1="OPTFILE PDEPEND PDEFAULT MAKEFILE PLATFORM ROOTDIR MODS DISABLE ENABLE"
1135  gm_s2="FC CPP IEEE TS PAPIS PCLS PAPI PCL HPMT GSL DEVEL MPI JAM DUMPSTATE STANDARDDIRS"  gm_s2="FC CPP IEEE TS PAPIS PCLS PAPI PCL HPMT GSL DEVEL MPI OMP DUMPSTATE STANDARDDIRS"
1136    
1137  #  The following state is not directly set by command-line switches  #  The following state is not directly set by command-line switches
1138  gm_s3="LN S64 KPP LINK PACKAGES MAKEDEPEND PDEPEND PDEFAULT INCLUDES FFLAGS FOPTIM FEXTRAFLAGS"  gm_s3="LN S64 KPP LINK PACKAGES MAKEDEPEND PDEPEND PDEFAULT INCLUDES FFLAGS FOPTIM FEXTRAFLAGS"
# Line 1326  for ac_option in "$@" ; do Line 1333  for ac_option in "$@" ; do
1333              MPIPATH=$ac_optarg              MPIPATH=$ac_optarg
1334              MPI=true ;;              MPI=true ;;
1335                    
1336  #       -jam | --jam)          -omp | --omp)
1337  #           JAM=1 ;;              OMP=true ;;
1338  #       -nojam | --nojam)          -omp=* | --omp=*)
1339  #           JAM=0 ;;              OMPFLAG=$ac_optarg
1340                OMP=true ;;
1341                    
1342          -ds | --ds)          -ds | --ds)
1343              DUMPSTATE=t ;;              DUMPSTATE=t ;;
# Line 1567  if test ! "x$MPI" = x ; then Line 1575  if test ! "x$MPI" = x ; then
1575        echo "  Turning on MPI cpp macros"        echo "  Turning on MPI cpp macros"
1576        DEFINES="$DEFINES -DALLOW_USE_MPI -DALWAYS_USE_MPI"        DEFINES="$DEFINES -DALLOW_USE_MPI -DALWAYS_USE_MPI"
1577  fi  fi
1578    if test ! "x$OMP" = x ; then
1579          echo "  Add OMPFLAG and turn on OpenMP cpp macros"
1580          FFLAGS="$FFLAGS $OMPFLAG"
1581          F90FLAGS="$F90FLAGS $OMPFLAG"
1582          DEFINES="$DEFINES -DUSE_OMP_THREADING"
1583    fi
1584    
1585  if test ! "x$TS" = x ; then  if test ! "x$TS" = x ; then
1586        echo "  Turning on timing per timestep"        echo "  Turning on timing per timestep"
# Line 1775  fi Line 1789  fi
1789    
1790    
1791  printf "\n===  Setting defaults  ===\n"  printf "\n===  Setting defaults  ===\n"
1792  printf "  Adding MODS directories:  "  printf "  Adding MODS directories: "
1793    MPI_LNKF=
1794  for d in $MODS ; do  for d in $MODS ; do
1795      if test ! -d $d ; then      if test ! -d $d ; then
1796          echo          echo
1797          echo "Error: MODS directory \"$d\" not found!"          echo "Error: MODS directory \"$d\" not found!"
1798          exit 1          exit 1
1799      else      else
1800          printf " $d"          printf "$d "
1801          SOURCEDIRS="$SOURCEDIRS $d"          SOURCEDIRS="$SOURCEDIRS $d"
1802          INCLUDEDIRS="$INCLUDEDIRS $d"          INCLUDEDIRS="$INCLUDEDIRS $d"
1803            #-------------------------------------------------------
1804            # Put special links so that MPI specific files are used
1805            MPI_FILES=`(cd $d ; find . -name "*_mpi" -print)`
1806            for i in $MPI_FILES ; do
1807              ii=`echo $i | sed 's:^\./::'`
1808              name=`echo $ii | sed 's:_mpi::' `
1809              if test "x$MPI" = x ; then
1810              # NO: We undo an _mpi symbolically linked file
1811                if test -L $name ; then
1812                  cmp $name "$d/$ii" > /dev/null 2>&1
1813                  RETVAL=$?
1814                  if test "x$RETVAL" = x0 ; then
1815                    printf "Un-linking $name ; "
1816                    rm -f $name
1817                  fi
1818                fi
1819              else
1820              # YES: We symbolically link this file (with conditions if already there)
1821                if test -L $name ; then
1822                  cmp $d/$ii $name > /dev/null 2>&1
1823                  RETVAL=$?
1824                  yy=0 ;
1825                  for xx in $MPI_LNKF ; do if test $xx = $name ; then yy=1 ; fi ; done
1826                  if test "x$RETVAL" != x0 -a $yy = 0 ; then
1827                  # remove sym-link if different and has not just been linked
1828                    printf "Un-link + "
1829                    rm -f $name
1830                  fi
1831                  if test "x$RETVAL" = x0 ; then
1832                  # if identical, keep sym-link and keep record of it
1833                    MPI_LNKF="$MPI_LNKF $name"
1834                  fi
1835                fi
1836                if ! test -f $name ; then
1837                  # make sym-link and keep record of it
1838                    printf "Linking $ii to $name ; "
1839                    ln -sf $d/$ii $name
1840                    MPI_LNKF="$MPI_LNKF $name"
1841                fi
1842              fi
1843            done
1844            #-------------------------------------------------------
1845      fi      fi
1846  done  done
1847  echo  echo
1848    #echo "MPI_LNKF='$MPI_LNKF'"
1849    
1850  if test "x${PLATFORM}" = x ; then  if test "x${PLATFORM}" = x ; then
1851      PLATFORM=$p_PLATFORM      PLATFORM=$p_PLATFORM
# Line 2528  else Line 2586  else
2586      echo "EMBEDDED_FILES = " >>$MAKEFILE      echo "EMBEDDED_FILES = " >>$MAKEFILE
2587  fi  fi
2588    
 #  Note: figure out some way to add Hyades JAM libraries here  
2589  cat >>$MAKEFILE <<EOF  cat >>$MAKEFILE <<EOF
2590  # Unix ln (link)  # Unix ln (link)
2591  LN = ${LN}  LN = ${LN}
# Line 2727  EOF Line 2784  EOF
2784  #===  Automatic Differentiation Rules  ===  #===  Automatic Differentiation Rules  ===
2785  #===  for TAMC/TAF  ======================  #===  for TAMC/TAF  ======================
2786    
2787  if test "x$OPENAD" == x ; then  if test "x$OPENAD" = x ; then
2788    
2789  cat >>$MAKEFILE <<EOF  cat >>$MAKEFILE <<EOF
2790    
# Line 2768  adall: \$(EXE_AD) Line 2825  adall: \$(EXE_AD)
2825  adtaf: ad_taf_output.$FS  adtaf: ad_taf_output.$FS
2826  adtamc: ad_tamc_output.$FS  adtamc: ad_tamc_output.$FS
2827    
2828  ad_input_code.$FS: \$(AD_FILES) \$(H_SRC_FILES)  ad_input_code.$FS: \$(AD_FILES) \$(H_SRC_FILES) \$(AD_FLOW_FILES)
2829          @$BASH\$(TOOLSDIR)/convert_cpp_cmd2defines "Warning - this file is automatically generated - do NOT edit" -DALLOW_ADJOINT_RUN -UALLOW_TANGENTLINEAR_RUN -UALLOW_ECCO_OPTIMIZATION > ad_config.template          @$BASH\$(TOOLSDIR)/convert_cpp_cmd2defines "Warning - this file is automatically generated - do NOT edit" -DALLOW_ADJOINT_RUN -UALLOW_TANGENTLINEAR_RUN -UALLOW_ECCO_OPTIMIZATION > ad_config.template
2830          cmp ad_config.template AD_CONFIG.h || cat ad_config.template > AD_CONFIG.h          cmp ad_config.template AD_CONFIG.h || cat ad_config.template > AD_CONFIG.h
2831          -rm -f ad_config.template          -rm -f ad_config.template
# Line 3044  ad_input_code_sf.w2f.pre.xb.x2w.w2f.f$FS Line 3101  ad_input_code_sf.w2f.pre.xb.x2w.w2f.f$FS
3101  ad_input_code_sf.w2f.pre.xb.x2w.w2f.td.f$FS90: ad_input_code_sf.w2f.pre.xb.x2w.w2f.f$FS90 ../OAD_support/insertTemplateDir.bash  ad_input_code_sf.w2f.pre.xb.x2w.w2f.td.f$FS90: ad_input_code_sf.w2f.pre.xb.x2w.w2f.f$FS90 ../OAD_support/insertTemplateDir.bash
3102          ../OAD_support/insertTemplateDir.bash \$< \$@          ../OAD_support/insertTemplateDir.bash \$< \$@
3103    
3104    PPEXTRAS=\$(wildcard ../OAD_support/ad_template.*.F) ../OAD_support/ad_inline.F
3105  # postprocess F'  # postprocess F'
3106  ad_input_code_sf.w2f.pre.xb.x2w.w2f.td.pp.f$FS90: ad_input_code_sf.w2f.pre.xb.x2w.w2f.td.f$FS90 multi-pp.pl ../OAD_support/ad_inline.f \$(wildcard ../OAD_support/ad_template.*.f)  ad_input_code_sf.w2f.pre.xb.x2w.w2f.td.pp.f$FS90: ad_input_code_sf.w2f.pre.xb.x2w.w2f.td.f$FS90 postProcess.py \$(PPEXTRAS:.F=.f)
3107          perl multi-pp.pl -inline=../OAD_support/ad_inline.f \$<          ./postProcess.py -m r -i ../OAD_support/ad_inline.f -o \$@ \$<
         # the postprocessor still gets the name wrong  
         cat \$<.pp | sed 's/RETURN//' > \$@  
3108    
3109  # extract all transformed modules  # extract all transformed modules
3110  all_mods.xb.x2w.w2f.pp.f$FS90: ad_input_code_sf.w2f.pre.xb.x2w.w2f.td.pp.f$FS90  all_mods.xb.x2w.w2f.pp.f$FS90: ad_input_code_sf.w2f.pre.xb.x2w.w2f.td.pp.f$FS90
# Line 3075  mfef90: Line 3131  mfef90:
3131  whirl2xaif xaif2whirl:  whirl2xaif xaif2whirl:
3132          \$(LN) \${OPENADFORTTK}/bin/\$@ .          \$(LN) \${OPENADFORTTK}/bin/\$@ .
3133    
3134  %.pl:  preProcess.py postProcess.py:
         \$(LN) \${OPENADFORTTK}/bin/\$@ .  
   
 preProcess.py:  
3135          \$(LN) \${OPENADFORTTK_BASE}/tools/SourceProcessing/\$@ .          \$(LN) \${OPENADFORTTK_BASE}/tools/SourceProcessing/\$@ .
3136    
3137  whirl2f whirl2f_be:  whirl2f whirl2f_be:

Legend:
Removed from v.1.183  
changed lines
  Added in v.1.190

  ViewVC Help
Powered by ViewVC 1.1.22