~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/dist/pvm/pvm_nogs.sh

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
3
#
 
4
#___INFO__MARK_BEGIN__
 
5
##########################################################################
 
6
#
 
7
#  The Contents of this file are made available subject to the terms of
 
8
#  the Sun Industry Standards Source License Version 1.2
 
9
#
 
10
#  Sun Microsystems Inc., March, 2001
 
11
#
 
12
#
 
13
#  Sun Industry Standards Source License Version 1.2
 
14
#  =================================================
 
15
#  The contents of this file are subject to the Sun Industry Standards
 
16
#  Source License Version 1.2 (the "License"); You may not use this file
 
17
#  except in compliance with the License. You may obtain a copy of the
 
18
#  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
19
#
 
20
#  Software provided under this License is provided on an "AS IS" basis,
 
21
#  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
22
#  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
23
#  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
24
#  See the License for the specific provisions governing your rights and
 
25
#  obligations concerning the Software.
 
26
#
 
27
#  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
28
#
 
29
#  Copyright: 2001 by Sun Microsystems, Inc.
 
30
#
 
31
#  All Rights Reserved.
 
32
#
 
33
##########################################################################
 
34
#___INFO__MARK_END__
 
35
 
 
36
# sample pvm job 
 
37
#
 
38
# This script starts a pvm sample with master-slave 
 
39
# communication. No group communication is needed.
 
40
#
 
41
# our name 
 
42
#$ -N PVM_NOGS
 
43
# pe request
 
44
#$ -pe pvm 16-1
 
45
#$ -S /bin/sh
 
46
#$ -v SGE_QMASTER_PORT,DISPLAY
 
47
# ---------------------------
 
48
 
 
49
echo "Got $NSLOTS slots."
 
50
 
 
51
/bin/echo Here I am on a $ARC called `hostname`.
 
52
 
 
53
trace=
 
54
if [ "$1" = "-debug" ]; then
 
55
   case "$ARC" in 
 
56
   sun4) trace=/usr/bin/trace ;;
 
57
   solaris) trace=/usr/bin/truss ;;
 
58
   linux) trace=/usr/bin/strace ;;
 
59
   *) echo cannot run in debug mode; exit 1 ;;
 
60
   esac
 
61
   echo using $trace to trace system calls
 
62
fi
 
63
 
 
64
if [ x$SGE_CKPT_ENV = x ]; then
 
65
   /bin/echo Running without checkpoint environment
 
66
   bin_name=master
 
67
else
 
68
   /bin/echo Running under checkpoint environment $COD_CKPT_ENV
 
69
   bin_name=master_ckpt
 
70
fi 
 
71
 
 
72
# master starts slave n-1 times 
 
73
NSLOTS=`expr $NSLOTS - 1`
 
74
echo I will start $NSLOTS slaves.
 
75
 
 
76
$trace $SGE_ROOT/pvm/bin/$ARC/$bin_name $NSLOTS