Changes in / [98f09d2:652286a] in flex_extract.git


Ignore:
Files:
1 added
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • Source/Fortran/calc_etadot.f90

    rdfa7dbd rd90a529  
    486486  END IF ! MGAUSS
    487487
    488 !! CREATE FILE VERTICAL.EC NEEDED BY POP MODEL 
    489 
    490   OPEN(21,FILE='VERTICAL.EC')
    491   WRITE(21,'(A)')
    492   WRITE(21,'(A)') 'VERTICAL DISCRETIZATION OF POP MODEL'
    493   WRITE(21,'(A)')
    494   write(21,'(i3,a)') MLEVEL,'   number of layers'
    495   WRITE(21,'(A)')
    496   WRITE(21,'(A)') '* A(NLEV+1)'
    497   WRITE(21,'(A)')
    498   DO 205 I=1,MLEVEL+1
    499 205 WRITE(21,'(F18.12)') AK(I)
    500   WRITE(21,'(A)')
    501   WRITE(21,'(A)') '* B(NLEV+1)'
    502   WRITE(21,'(A)')
    503   DO 210 I=1,MLEVEL+1
    504 210 WRITE(21,'(F18.12)') BK(I)
    505   CLOSE(21)
     488! CREATE FILE VERTICAL.EC NEEDED BY POP MODEL 
     489! 2020-06-25 Commented out by PS - not needed anymore
     490
     491!  OPEN(21,FILE='VERTICAL.EC')
     492!  WRITE(21,'(A)')
     493!  WRITE(21,'(A)') 'VERTICAL DISCRETIZATION OF POP MODEL'
     494!  WRITE(21,'(A)')
     495!  write(21,'(i3,a)') MLEVEL,'   number of layers'
     496!  WRITE(21,'(A)')
     497!  WRITE(21,'(A)') '* A(NLEV+1)'
     498!  WRITE(21,'(A)')
     499!  DO 205 I=1,MLEVEL+1
     500!205 WRITE(21,'(F18.12)') AK(I)
     501!  WRITE(21,'(A)')
     502!  WRITE(21,'(A)') '* B(NLEV+1)'
     503!  WRITE(21,'(A)')
     504!  DO 210 I=1,MLEVEL+1
     505!210 WRITE(21,'(F18.12)') BK(I)
     506!  CLOSE(21)
    506507
    507508!------------------------------------------------------------------
  • Source/Fortran/makefile_debug

    r5868d74 rd2d6cf9  
    1515EXE      =  calc_etadot_debug.out
    1616
    17 ECCODES_LIB=  -Bstatic -leccodes_f90 -leccodes -Bdynamic -lm -ljasper
     17ECCODES_LIB=  -Bstatic -leccodes_f90 -leccodes -Bdynamic -lm
    1818EMOSLIB=-lemosR64
    1919LIB =  $(ECCODES_LIB) $(EMOSLIB)
  • Source/Fortran/makefile_fast

    r5f67883 r14d9618  
    1515EXE      =  calc_etadot_fast.out
    1616
    17 ECCODES_LIB =  -Bstatic -leccodes_f90 -leccodes -Bdynamic -lm -ljasper
     17ECCODES_LIB =  -Bstatic -leccodes_f90 -leccodes -Bdynamic -lm
    1818EMOSLIB=-lemosR64
    1919LIB =  $(ECCODES_LIB) $(EMOSLIB)
    2020
    21 ECCODES_INCLUDE_DIR=/usr/local/include/
    22 #/usr/lib/x86_64-linux-gnu/fortran/gfortran-mod-15
     21ECCODES_INCLUDE_DIR=/usr/lib/x86_64-linux-gnu/fortran/gfortran-mod-15
     22#/usr/local/include/ #oldstable
     23
    2324INC = -I. -I$(ECCODES_INCLUDE_DIR)
    2425
    2526FC = gfortran
    26 OPT = -O3 -march=native
     27OPT = -O3 # -O3 -march=native
    2728FFLAGS =   $(OPT) $(LIB) $(INC) -fdefault-real-8 -fopenmp -fconvert=big-endian
    2829LDFLAGS =  $(OPT) $(LIB) -fopenmp
  • Testing/Regression/FortranEtadot/run_ref.sh

    r6bc4b42 r14d9618  
    1414exefast=calc_etadot_fast.out
    1515hash=$(git log --abbrev-commit --pretty=oneline -n 1  --pretty=format:'%h')
     16csvfile='runtimes_'${HOST}'.csv'
    1617exitonfail=true
    1718rm -f log.run_ref failed
     
    1920# loop over all reference runs
    2021rm -f log.run_ref
     22rm -f Work/*
    2123
    2224if [ "$1" = omithigh ]; then # for fast testing, not for production
     
    5153      if [ "${exitonfail}" = true ]; then exit; fi
    5254    fi
    53     for outfile in 'fort.15' 'VERTICAL.EC'; do
     55    for outfile in 'fort.15' ; do
    5456      if [ -e $outfile ]; then
    5557        mv ${outfile} ../${outdir}
     
    6870  # compare debug and fast
    6971  # omega case also produces fort.25 - need to add this
    70   for outfile in 'fort.15' 'VERTICAL.EC'; do
     72  for outfile in 'fort.15' ; do
    7173    outdebug='Outputs/Output_ref_'${ref}'_debug/'$outfile
    7274    outfast='Outputs/Output_ref_'${ref}'_fast/'$outfile
    73     test=$(cmp  $outdebug $outfast)
    74     if $test; then
     75    test=$()
     76    if cmp -s $outdebug $outfast >/dev/null; then
    7577      echo $outfile '    equal for debug and fast' >> log.run_ref
    7678    else
     
    8890    user=$(echo $times | grep user | awk '{print $4}')
    8991    sys=$( echo $times | grep sys  | awk '{print $6}')
    90     echo $hash, "'"reference"'", "'"${ref}'_'${exe}"'", ${real}, ${user}, ${sys} >> runtimes.csv
     92    echo $hash, "'"reference"'", "'"${ref}'_'${exe}"'", ${real}, ${user}, ${sys} >> ${csvfile}
    9193    tail -1 runtimes.csv >> log.run_ref
    9294  done
  • Testing/Regression/FortranEtadot/run_regrtest.sh

    rdfa7dbd r14d9618  
    1717exefast=calc_etadot_fast.out
    1818hash=$(git log --abbrev-commit --pretty=oneline -n 1  --pretty=format:'%h')
     19csvfile='runtimes_'${HOST}'.csv'
    1920exitonfail=true
    2021numtest=0
     
    3233for ref in $inputs; do
    3334
    34   echo 'Working on test case =' $ref
     35  echo 'Working on test case =' $ref | tee -a ../log.run_regr
    3536
    3637  # loop over debug and fast runs
     
    6263        # omega case also produces fort.25 - need to add this
    6364        outref='../Outputs/Output_ref_'${ref}'_'${exe}'/'$outfile
    64         test=$(cmp  $outfile $outref)
    65         if $test; then
     65        if cmp -s $outfile $outref >/dev/null; then
    6666          echo '    '$outfile '    test passed' | tee -a ../log.run_regr
    6767        else
     
    8585    user=$(echo $times | grep user | awk '{print $4}')
    8686    sys=$( echo $times | grep sys  | awk '{print $6}')
    87     echo $hash, "'"reference"'", "'"${ref}'_'${exe}"'", ${real}, ${user}, ${sys} >> ../runtimes.csv
    88     tail -1 ../runtimes.csv >> log.run_regr
     87    echo $hash, "'"reference"'", "'"${ref}'_'${exe}"'", ${real}, ${user}, ${sys} >> ../${csvfile}
     88    tail -1 ../${csvfile} >> log.run_regr
    8989
    9090    cd ..
    91     rm Work/* # this is for being more safe
     91    rm -f Work/* # this is for being more safe
    9292
    9393  done # end of exe loop
     
    100100  | tee -a ../log.run_regr
    101101echo ' More information may be found in log.run_regr'
    102 echo ' Runtimes were added to runtimes.csv under '$hash | tee -a ../log.run_regr
     102echo ' Runtimes were added to '${csvfile}' under '$hash | tee -a ../log.run_regr
    103103
    104104# the following code is executed only if exitonfail is not set to 'true'.
Note: See TracChangeset for help on using the changeset viewer.
hosted by ZAMG