Changeset 755


Ignore:
Timestamp:
Aug 29, 2011 9:55:16 AM (13 years ago)
Author:
witha
Message:

adapted for lcflow (ForWind? cluster in Oldenburg)

Location:
palm/trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SCRIPTS/mrun

    r746 r755  
    228228     # 18/08/11 - Marcus - support for Linux OS with German locale
    229229     #                   - properly report hosts on general Linux clusters
    230 
     230     # 29/08/11 - BjornW - adapted for lcflow (ForWind cluster in Oldenburg)
    231231
    232232 
     
    25602560          [[ ! -f a.out ]]  &&  compile_error=true
    25612561          continue   # ANDERENFALLS IST STATUS=1, FALLS A.OUT VORHANDEN
     2562       elif [[ $localhost = lcflow ]]
     2563       then
     2564          printf "      compiler is called via ssh on \"flow\" \n"
     2565          ssh  flow02.hpc.uni-oldenburg.de -l $usern ". /cm/local/apps/environment-modules/3.2.6/Modules/3.2.6/init/bash; echo $MODULEPATH; echo $MODULESHOME; MODULEPATH=/cm/shared/modulefiles/; module load netcdf/intel/64/4.1.3 intel/ics/64/2011.0.013 intel/impi/64/4.0.1.007 hdf5/intel/64/1.8.7; cd $TEMPDIR; make $mopts -f Makefile PROG=a.out F90=$compiler_name COPT=\"$cpp_options\" F90FLAGS=\"$fopts\" LDFLAGS=\"$lopts\" "
     2566          [[ ! -f a.out ]]  &&  compile_error=true
     2567          continue   # ANDERENFALLS IST STATUS=1, FALLS A.OUT VORHANDEN
    25622568       else
    25632569          [[ $localhost = lcxt4 ]]  &&  . /opt/modules/default/init/ksh
     
    33983404                then
    33993405                    aprun  -n $ii  -N $tasks_per_node  a.out  $ROPTS  < runfile_atmos
     3406                elif [[ $host = lcflow ]]
     3407                then
     3408                   mpiexec  -machinefile $TMPDIR/machines  -n $ii  -env I_MPI_FABRICS shm:ofa a.out  < runfile_atmos  $ROPTS
    34003409                else
    34013410                   mpiexec  -machinefile hostfile  -n $ii  a.out  < runfile_atmos  $ROPTS
  • palm/trunk/SCRIPTS/palm_simple_run

    r515 r755  
    1212
    1313     # Last changes:
    14      # 25/01/10 - Siggi - Generating the first version
    15      # 18/03/10 - Siggi - Some comments changed
     14     # 25/01/10 - Siggi  - Generating the first version
     15     # 18/03/10 - Siggi  - Some comments changed
     16     # 29/08/11 - BjornW - Adapted for lcflow (ForWind cluster in Oldenburg)
    1617
    1718
     
    128129 mpiexec  -machinefile hostfile  -n $mpi_procs  ./palm  < runfile_atmos
    129130
    130 # SGI-MPT HLRN
     131# SGI-MPT HLRN:
    131132# mpiexec_mpt  -np $mpi_procs  ./palm  < runfile_atmos
     133
     134# HPC-FLOW (ForWind):
     135# mpiexec  -machinefile $TMPDIR/machines -n $mpi_procs  -env I_MPI_FABRICS shm:ofa ./palm  < runfile_atmos
    132136
    133137
  • palm/trunk/SOURCE/init_pegrid.f90

    r723 r755  
    55! -----------------
    66!
     7! 2d-decomposition is default for lcflow (ForWind cluster in Oldenburg)
    78!
    89! ATTENTION: nnz_x undefined problem still has to be solved!!!!!!!!
     
    140141       IF ( host(1:3) == 'ibm'  .OR.  host(1:3) == 'nec'      .OR. &
    141142            ( host(1:2) == 'lc'  .AND.  host(3:5) /= 'sgi'  .AND.  &
    142               host(3:4) /= 'xt'  .AND.  host(3:5) /= 'tit' )  .OR. &
    143              host(1:3) == 'dec' )  THEN
     143              host(3:4) /= 'xt'  .AND.  host(3:5) /= 'tit'  .AND. &
     144              host(3:6) /= 'flow' )  .OR.  host(1:3) == 'dec' )  THEN
    144145
    145146          pdims(1) = numprocs
Note: See TracChangeset for help on using the changeset viewer.