File: spmd.c

package info (click to toggle)
gridengine 6.2u5-7.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 57,216 kB
  • sloc: ansic: 438,030; java: 66,252; sh: 36,399; jsp: 7,757; xml: 5,850; makefile: 5,520; csh: 4,571; cpp: 2,848; perl: 2,401; tcl: 692; lisp: 669; yacc: 668; ruby: 642; lex: 344
file content (307 lines) | stat: -rw-r--r-- 7,801 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
/*___INFO__MARK_BEGIN__*/
/*************************************************************************
 * 
 *  The Contents of this file are made available subject to the terms of
 *  the Sun Industry Standards Source License Version 1.2
 * 
 *  Sun Microsystems Inc., March, 2001
 * 
 * 
 *  Sun Industry Standards Source License Version 1.2
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.2 (the "License"); You may not use this file
 *  except in compliance with the License. You may obtain a copy of the
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 * 
 *  Software provided under this License is provided on an "AS IS" basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 * 
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 * 
 *   Copyright: 2001 by Sun Microsystems, Inc.
 * 
 *   All Rights Reserved.
 * 
 ************************************************************************/
/*___INFO__MARK_END__*/
/*
*    SPMD example using PVM3
*    also illustrating group functions
*
*    compile with -DSPMD_WORK to generate
*    cpu usage in each pvm task. 
*/

#include <stdio.h>
#include <string.h>
#include <sys/time.h>
#include <sys/types.h>
#include <stdlib.h>
#include <unistd.h>

#define SPMD_WORK
#define SPMD_SLEEP
#if defined(SPMD_WORK)
#include <signal.h>
#endif

#include "pvm3.h"

#if defined(__STDC__) || defined(__cplusplus)
#define __PR__(x) x
#else
#define __PR__(x) ()
#endif

static int dowork __PR__(( int me, int nproc));

#if (SOLARIS)
int gethostname __PR__((char *name, int namelen));
#endif

#if defined(SPMD_WORK)
volatile int should_stop = 0;
void stop_work(int signo);
void stop_work(int signo)
{
   should_stop = 1;
}
#endif

/* linux sleep() is not a system call 
   and is implemented using SIGALRM 
   this causes an endless sleep */
#if (LINUX)
#define sleep sge_sleep
void sge_sleep(int seconds)
{
   struct timeval timeout;

   timeout.tv_usec = 0;
   timeout.tv_sec = seconds;
   select(0, NULL, NULL, NULL, &timeout);
}
#endif


int main __PR__(( int argc, char *argv[]));

int main(argc, argv)
int argc;
char *argv[];
{
   int mytid;                  /* my task id */
   int me;                     /* my process number */
   int ret;
   int nh, na;
   char myhostname[80];
   struct pvmhostinfo *hinfo = NULL;
   int nodes = 1;

   fprintf(stderr, "spmd\n");
   pvm_setopt(PvmAutoErr, 1);

   if (argc>1) 
      nodes = atoi(argv[1]);

   /* enroll in pvm */
   mytid = pvm_mytid();
   if (mytid<0) {
      pvm_perror("pvm_mytid()");
      fprintf(stderr, "spmd: failed enrolling to pvmd\n");
      pvm_exit();
      return 1;
   }
   fprintf(stderr, "spmd mytid = 0x%x\n", mytid);

   /* Join a group and if I am the first instance */
   /* i.e. me=0 spawn more copies of myself       */
   me = pvm_joingroup( "foo" );
   if (me<0) {
      fprintf(stderr, "spmd: failed joining into my group\n");
      pvm_exit();
      return 1;
   }

   if (gethostname(myhostname, sizeof(myhostname)-1)<0) {
      fprintf(stderr, "spmd: failed getting my hostname\n");
      pvm_exit();
      return 1;
   }
   printf("spmd: %s: me = %d mytid = 0x%x\n", myhostname, me, mytid);

   if( me == 0 ) {
      int numt;

      /* report hosts we got */
      if (pvm_config(&nh, &na, &hinfo)) {
         fprintf(stderr, "spmd: failed enrolling to pvmd\n");
         pvm_exit();
         return 1;
      } else {
         int i;
      
         for (i=0; i<nh; i++) 
            printf("spmd: 0x%x %s %s %d\n", 
               hinfo[i].hi_tid, 
               hinfo[i].hi_name,
               hinfo[i].hi_arch,
               hinfo[i].hi_speed);
      }

      if (nodes>1) {
         int *tids;
         tids = (int *)malloc(nodes*sizeof(int));
         /* spawn nodes-1 on other hosts */
         printf("spmd: pvm_spawn(\"%s\", ..)\n", argv[0]);
         numt = pvm_spawn(argv[0], (argc>1)?(&argv[1]):NULL, 
               0, NULL, nodes-1, &tids[1]);

         if (numt!=nodes-1) {
            fprintf(stderr, "spmd: failed spawning %d processes - got only %d\n", nodes-1, numt);
            pvm_exit();
            return 1;
         }
      }
   }

   /* Wait for everyone to startup before proceeding. */
   ret = pvm_barrier( "foo", nodes );
   if (ret)  {
      fprintf(stderr, "spmd: failed at barrier\n");
      pvm_exit();
      return 1;
   }
      
/*--------------------------------------------------------------------------*/
     
   if (dowork( me, nodes )<0) {
      fprintf(stderr, "spmd: failed doing work\n");
      pvm_exit();
      return 1;
   }

/*--------------------------------------------------------------------------*/

   /* Wait for everyone having done his work before shutting down */
   ret = pvm_barrier( "foo", nodes );
   if (ret)  {
      fprintf(stderr, "spmd: failed at barrier\n");
      pvm_exit();
      return 1;
   }

   /* program finished leave group and exit pvm */
   if (pvm_lvgroup( "foo" )<0) {
      fprintf(stderr, "spmd: failed at pvm_lvgroup\n");
      pvm_exit();
      return 1;
   }

   pvm_exit();
   return 0;
}

/* Simple example passes a token around a ring */
static int dowork( me, nodes )
int me;
int nodes;
{
   int token;
   int src, dest;
   int count  = 1;
   int stride = 1;
   int msgtag = 4;
   int in;
   
   /* Determine neighbors in the ring */
   in = (me==0)?nodes-1:me-1; 
   src = pvm_gettid("foo", in);
   if (src<0) {
      pvm_perror("pvm_gettid(src)");
      fprintf(stderr, "spmd: failed getting src tid of %d (got 0x%x)\n", in, src);
      pvm_exit();
      return -1;
   }
   printf("spmd: src_tid = 0x%x\n", src);

   in = (me==nodes-1)?0:me+1;
   dest= pvm_gettid("foo", in);
   if (dest<0) {
      pvm_perror("pvm_gettid(dst)");
      fprintf(stderr, "spmd: failed getting dest tid of instance %d\n", in);
      pvm_exit();
      return -1;
   }
   printf("spmd: dest_tid = 0x%x\n", dest);

   if( me == 0 ) { 
      token = dest;
      if (pvm_initsend( PvmDataDefault )<0) {
         fprintf(stderr, "spmd: failed initializing pack buffer\n");
         pvm_exit();
         return -1;
      }

      pvm_pkint( &token, count, stride );

      if (pvm_send( dest, msgtag)<0) {
         fprintf(stderr, "spmd: failed sending message\n");
         pvm_exit();
         return -1;
      }
      printf("spmd: (%d) succeed sending token\n", me);

      if (pvm_recv( src, msgtag )<0) {
         fprintf(stderr, "spmd: failed getting message\n");
         pvm_exit();
         return -1;
      }
      printf("spmd: (%d) got token\n", me);
      printf("spmd: (%d) token ring done\n", me); 

   } else {
      if (pvm_recv( src, msgtag )<0) {
         fprintf(stderr, "spmd: failed getting message\n");
         pvm_exit();
         return -1;
      }
      printf("spmd: (%d) got token\n", me);

      pvm_upkint( &token, count, stride );
      if (pvm_initsend( PvmDataDefault )<0) {
         fprintf(stderr, "spmd: failed initializing pack buffer\n");
         pvm_exit();
         return -1;
      }
      pvm_pkint( &token, count, stride );

      if (pvm_send( dest, msgtag )<0) {
         fprintf(stderr, "spmd: failed sending message\n");
         pvm_exit();
         return -1;
      }
      printf("spmd: (%d) succeed sending token\n", me);
   }

#if defined(SPMD_WORK)
   signal(SIGALRM, stop_work);
   alarm(120);

   {
      float a, b = 0.1;

      while (!should_stop) {
        a += b;
      }
   }


#endif
   return 0;
}