Changeset 399 for palm/trunk
- Timestamp:
- Oct 20, 2009 1:23:02 PM (15 years ago)
- Location:
- palm/trunk/SCRIPTS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/mrun
r397 r399 192 192 # 29/09/09 - Siggi - default value for archiving is false, option "-A" 193 193 # switches on archiving, archiving on SGI-ICE enabled 194 # 16/10/09 - Carolin - adjustments for archiving on SGI-ICE of binary files; 195 # adjustment for special1q 194 196 195 197 … … 2640 2642 if [[ $files_for_pes = false ]] 2641 2643 then 2642 if [[ $localhost = ibmh ]]2644 if [[ $localhost = lcsgih ]] 2643 2645 then 2644 ssh $usern@h data.hlrn.de "cp $PERM/${frelin[$i]} $PWD"2646 ssh $usern@hicedata.hlrn.de "cp $PERM/${frelin[$i]} $PWD" 2645 2647 else 2646 ssh $usern@b data.hlrn.de "cp $PERM/${frelin[$i]} $PWD"2648 ssh $usern@bicedata.hlrn.de "cp $PERM/${frelin[$i]} $PWD" 2647 2649 fi 2648 2650 else … … 2650 2652 while (( inode < nodes )) 2651 2653 do 2652 if [[ $localhost = ibmh ]]2654 if [[ $localhost = lcsgih ]] 2653 2655 then 2654 ssh $usern@h data.hlrn.de "cd $PWD; tar xf $PERM/${frelin[$i]}/${frelin[$i]}.node_$inode.tar"2656 ssh $usern@hicedata.hlrn.de "cd $PWD; tar xf $PERM/${frelin[$i]}/${frelin[$i]}.node_$inode.tar" 2655 2657 else 2656 ssh $usern@b data.hlrn.de "cd $PWD; tar xf $PERM/${frelin[$i]}/${frelin[$i]}.node_$inode.tar"2658 ssh $usern@bicedata.hlrn.de "cd $PWD; tar xf $PERM/${frelin[$i]}/${frelin[$i]}.node_$inode.tar" 2657 2659 fi 2658 2660 (( inode = inode + 1 )) … … 3767 3769 if [[ $archive_system != none ]] 3768 3770 then 3769 if [[ $localhost = ibmh || $localhost = ibmb ]]3771 if [[ $localhost = lcsgih || $localhost = lcsgib ]] 3770 3772 then 3771 3773 # subjob -d -v -q cdata -X 0 -m 1000 -t 43200 -c $job_catalog archive_${frelout[$i]} 3772 subjob -v -q cdata -X 0 -m 1000 -t 43200 -c $job_catalog archive_${frelout[$i]}3774 subjob -v -q dataq -X 1 -T 1 -m 1000 -t 10800 -c $job_catalog archive_${frelout[$i]} 3773 3775 elif [[ $localhost = nech ]] 3774 3776 then … … 3778 3780 fi 3779 3781 else 3780 printf " +++ caution: option -A is switched o n. No archiving on $archive_system!\n"3782 printf " +++ caution: option -A is switched off. No archiving on $archive_system!\n" 3781 3783 fi 3782 3784 … … 4090 4092 # WARTEN, DAMIT SICH RESTART JOB IN QUEUE EINREIHEN KANN, BEVOR 4091 4093 # DER AKTUELLE JOB ENDET 4092 sleep 30 4094 if [[ $queue = special1q ]] 4095 then 4096 sleep 120 4097 else 4098 sleep 30 4099 fi 4093 4100 4094 4101 else -
palm/trunk/SCRIPTS/subjob
r377 r399 107 107 # 03/09/09 - Siggi - PBS sgi feature directive only used if explicitly 108 108 # set in the config file by the user 109 # 16/10/09 - Carolin - adjustments for archiving on SGI-ICE of binary files; 110 # adding special1q 109 111 110 112 # VARIABLENVEREINBARUNGEN + DEFAULTWERTE … … 375 377 esac;; 376 378 (lcsgib|lcsgih) case $ndq in 377 (testq|serialq|smallq|bigq|workq ) error=false;;379 (testq|serialq|smallq|bigq|workq|dataq|special1q) error=false;; 378 380 (*) error=true;; 379 381 esac;; … … 757 759 feature_directive="" 758 760 fi 759 760 if [[ $queue = testq || $queue = workq ]] 761 762 if [[ $queue = dataq ]] 763 then 764 feature_directive="#PBS -l feature=data" 765 fi 766 767 if [[ $queue = testq || $queue = workq || $queue = dataq || $queue = special1q ]] 761 768 then 762 769 queue_directive="#PBS -q $queue"
Note: See TracChangeset
for help on using the changeset viewer.