Changeset 179 for palm/trunk/SCRIPTS/subjob
- Timestamp:
- Jul 16, 2008 11:47:48 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/subjob
r169 r179 92 92 # 15/05/08 - Siggi - adjustments for lcxt4 (Bergen Center for Computational 93 93 # Science) 94 # 14/07/08 - Siggi - adjustments for lcsgih 94 95 95 96 … … 171 172 (hexagon.bccs.uib.no) local_addres=129.177.20.113; local_host=lcxt4;; 172 173 (hreg*-en0|hanni*-en0) local_addres=130.75.4.10; local_host=ibmh;; 174 (h01*) local_addres=10.152.0.7; local_host=lcsgih;; 173 175 (irifi) local_addres=130.75.105.104; local_host=lcmuk;; 174 176 (levanto) local_addres=130.75.105.45; local_host=lcmuk;; … … 180 182 (quanero) local_addres=130.75.105.107; local_host=lcmuk;; 181 183 (scirocco) local_addres=172.20.25.41; local_host=lcmuk;; 184 (service100) local_addres=10.152.0.7; local_host=lcsgih;; 182 185 (sun1|sun2) local_addres=130.75.6.1; local_host=unics;; 186 (r1*) local_addres=10.152.0.7; local_host=lcsgih;; 183 187 (tgg*) local_addres=172.17.75.161; local_host=lctit;; 184 188 (vorias) local_addres=172.20.25.43; local_host=lcmuk;; … … 306 310 (ibmy) queue=parallel; remote_addres=165.132.26.58; submcom=/usr/lpp/LoadL/full/bin/llsubmit;; 307 311 (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;; 308 313 (lctit) queue=lctit; remote_addres=172.17.75.161; submcom=/n1ge/TITECH_GRID/tools/bin/n1ge;; 309 314 (lcxt4) remote_addres=129.177.20.113; submcom=/opt/torque/2.3.0/bin/qsub;; … … 661 666 fi 662 667 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 683 module load mvapich/mvapich-0.9.9-intel 684 module load netcdf 685 export LD_LIBRARY_PATH=/sw/intel/fce/10.1.015/lib:/sw/dataformats/netcdf/3.6.2/lib:$LD_LIBRARY_PATH 686 687 echo 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 663 704 elif [[ $remote_host = lcxt4 ]] 664 705 then
Note: See TracChangeset
for help on using the changeset viewer.