Ignore:
Timestamp:
Jul 16, 2008 11:47:48 AM (16 years ago)
Author:
raasch
Message:

preliminary adjustments for HLRN-2 system

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SCRIPTS/subjob

    r169 r179  
    9292     # 15/05/08 - Siggi - adjustments for lcxt4 (Bergen Center for Computational
    9393     #                    Science)
     94     # 14/07/08 - Siggi - adjustments for lcsgih
    9495
    9596
     
    171172     (hexagon.bccs.uib.no)   local_addres=129.177.20.113; local_host=lcxt4;;
    172173     (hreg*-en0|hanni*-en0)  local_addres=130.75.4.10;    local_host=ibmh;;
     174     (h01*)                  local_addres=10.152.0.7;     local_host=lcsgih;;
    173175     (irifi)                 local_addres=130.75.105.104; local_host=lcmuk;;
    174176     (levanto)               local_addres=130.75.105.45;  local_host=lcmuk;;
     
    180182     (quanero)               local_addres=130.75.105.107; local_host=lcmuk;;
    181183     (scirocco)              local_addres=172.20.25.41;   local_host=lcmuk;;
     184     (service100)            local_addres=10.152.0.7;     local_host=lcsgih;;
    182185     (sun1|sun2)             local_addres=130.75.6.1;     local_host=unics;;
     186     (r1*)                   local_addres=10.152.0.7;     local_host=lcsgih;;
    183187     (tgg*)                  local_addres=172.17.75.161;  local_host=lctit;;
    184188     (vorias)                local_addres=172.20.25.43;   local_host=lcmuk;;
     
    306310        (ibmy)   queue=parallel; remote_addres=165.132.26.58; submcom=/usr/lpp/LoadL/full/bin/llsubmit;;
    307311        (lcfimm) remote_addres=172.20.4.2; submcom=/opt/torque/bin/qsub;;
     312        (lcsgih) remote_addres=10.152.0.7; submcom=/opt/moab/bin/msub;;
    308313        (lctit)  queue=lctit; remote_addres=172.17.75.161; submcom=/n1ge/TITECH_GRID/tools/bin/n1ge;;
    309314        (lcxt4)  remote_addres=129.177.20.113; submcom=/opt/torque/2.3.0/bin/qsub;;
     
    661666    fi
    662667
     668 elif [[ $remote_host = lcsgih ]]
     669 then
     670
     671    if [[ $numprocs != 0 ]]
     672    then
     673       cat > $job_to_send << %%END%%
     674#PBS -S /bin/bash
     675#PBS -N $job_name
     676#PBS -l walltime=$timestring
     677#PBS -l nodes=$nodes:ppn=${tasks_per_node}:xe
     678#PBS -l naccesspolicy=singlejob
     679#PBS -o $remote_dayfile
     680#PBS -j oe
     681
     682. /usr/share/modules/init/bash
     683module load mvapich/mvapich-0.9.9-intel
     684module load netcdf
     685export LD_LIBRARY_PATH=/sw/intel/fce/10.1.015/lib:/sw/dataformats/netcdf/3.6.2/lib:$LD_LIBRARY_PATH
     686
     687echo ld_library_path=$LD_LIBRARY_PATH
     688
     689%%END%%
     690
     691    else
     692       cat > $job_to_send << %%END%%
     693#PBS -S /bin/bash
     694#PBS -N $job_name
     695#PBS -l walltime=$timestring
     696#PBS -l ncpus=1
     697#PBS -o $remote_dayfile
     698#PBS -e $remote_dayfile
     699
     700%%END%%
     701
     702    fi
     703
    663704 elif [[ $remote_host = lcxt4 ]]
    664705 then
Note: See TracChangeset for help on using the changeset viewer.