Changeset 544 for palm/trunk/SCRIPTS


Ignore:
Timestamp:
Aug 17, 2010 10:44:58 AM (14 years ago)
Author:
maronga
Message:

adjustments for lcxt4

Location:
palm/trunk/SCRIPTS
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SCRIPTS/mbuild

    r508 r544  
    109109     #                    parallel make for utility programs
    110110     # 12/03/10 - Siggi - bugfix: remode_md was given a wrong value
     111     # 16/08/10 - BjornM- bugfix: call of modules on local host, new workaround
     112     #                    for lcxt4
    111113
    112114
     
    12251227    else
    12261228
     1229          # workaround for lcxt4
     1230       if [[ $remote_host = lcxt4 ]]
     1231       then
     1232          . /opt/modules/default/init/ksh
     1233       fi
     1234
     1235       # first load modules, if given
     1236       if [[ "$modules" != "" ]]
     1237       then
     1238          module load ${modules}
     1239       fi
     1240
     1241
    12271242       if [[ $compile_utility_programs = false ]]
    12281243       then
     
    12551270          echo " "
    12561271          echo "  *** execute \"make\" on local host"
    1257 
    1258              # first load modules, if given
    1259           if [[ "$modules" != "" ]]
    1260           then
    1261              module load ${modules}
    1262           fi
    12631272
    12641273          make  $make_options  PROG=$mainprog  F90=$compiler_name  COPT="$cpp_options"  F90FLAGS="$compiler_options"  LDFLAGS="$loader_options"  2>&1 | tee ${remote_host}_last_make_protokoll
  • palm/trunk/SCRIPTS/mrun

    r540 r544  
    208208     #                     lcsgih/lcsgib is done using the names
    209209     #                     hicegate0/bicegate0 instead of the IP addresses
     210     # 17/08/10 - BjornM - adjustments for interactive runs on lcxt4
    210211
    211212
     
    25342535       else
    25352536          [[ $localhost = lctit ]]  &&  export LM_LICENSE_FILE=27050@tggls
     2537          [[ $localhost = lcxt4 ]]  &&  . /opt/modules/default/init/ksh
    25362538          [[ "$module_calls" != "" ]]  &&  eval $module_calls
    25372539          make $mopts -f Makefile PROG=a.out  F90=$compiler_name  COPT="$cpp_options"  F90FLAGS="$fopts"  LDFLAGS="$lopts"
     
    33133315                elif [[ $host = lcxt4  ||  $host = lcxt5m ]]
    33143316                then
    3315                    aprun  -n $ii  -N $tasks_per_node  a.out  $ROPTS  < runfile_atmos
     3317                    aprun  -n $ii  -N $tasks_per_node  a.out  $ROPTS  < runfile_atmos
    33163318                else
    33173319                   mpiexec  -machinefile hostfile  -n $ii  a.out  < runfile_atmos  $ROPTS
  • palm/trunk/SCRIPTS/subjob

    r540 r544  
    117117     # 01/03/10 - Siggi - loading of modules controlled by environment variable
    118118     #                    module_calls
     119     # 17/08/10 - BjörnM- re-adjustments for lcxt4 (location of qsub)
    119120
    120121
     
    360361        (lck)     remote_addres=165.132.26.61; submcom=/usr/torque/bin/qsub;;
    361362        (lctit)   queue=lctit; remote_addres=172.17.75.161; submcom=/n1ge/TITECH_GRID/tools/bin/n1ge;;
    362         (lcxt4)   remote_addres=129.177.20.113; submcom=/opt/torque/2.3.0/bin/qsub;;
     363        (lcxt4)   remote_addres=129.177.20.113; submcom=/opt/torque/2.4.9-snap.201005191035/bin/qsub;;
    363364        (lcxt5m)  remote_addres=193.166.211.144; submcom=/opt/pbs/10.1.0.91350/bin/qsub;;
    364365        (nech)    qsubmem=memsz_job; qsubtime=cputim_job; remote_addres=136.172.44.147; submcom="/usr/local/bin/qsub";;
Note: See TracChangeset for help on using the changeset viewer.