File: tcgmsg.c

package info (click to toggle)
netpipe 3.7.2-8
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 1,188 kB
  • sloc: ansic: 7,588; makefile: 279; sh: 63; perl: 45; csh: 25
file content (151 lines) | stat: -rw-r--r-- 3,505 bytes parent folder | download | duplicates (8)
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
/*****************************************************************************/
/* "NetPIPE" -- Network Protocol Independent Performance Evaluator.          */
/* Copyright 1997, 1998 Iowa State University Research Foundation, Inc.      */
/*                                                                           */
/* This program is free software; you can redistribute it and/or modify      */
/* it under the terms of the GNU General Public License as published by      */
/* the Free Software Foundation.  You should have received a copy of the     */
/* GNU General Public License along with this program; if not, write to the  */
/* Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.   */
/*                                                                           */
/*     * mpi.c              ---- MPI calls source                            */
/*****************************************************************************/
#include    "netpipe.h"
#include    <sndrcv.h>

void RCV_(long *type, void *buf, long *lenbuf, long *lenmes, long *nodesel, long *nodefrom, long *sync);
void SND_(long *type, void *buf, long *lenbuf, long *node, long *sync);

void Init(ArgStruct *p, int* pargc, char*** pargv)
{
    PBEGIN_(*pargc, *pargv);
}

void Setup(ArgStruct *p)
{
    long nprocs;

    nprocs      = NNODES_();
    p->prot.nid = NODEID_();
    {
        char s[255];
        gethostname(s,253);
        printf("%d: %s\n",p->prot.nid,s); fflush(stdout);
    }

    if (nprocs < 2)
    {
        printf("Need at least two processes, we have %d\n", nprocs); fflush(stdout);
        exit(-2);
    }

    p->tr = p->rcv = 0;
    if (p->prot.nid == 0) {
        p->tr = 1;
        p->prot.nbor = nprocs-1;
    } else if( p->prot.nid == nprocs-1 ) {
        p->rcv = 1;
        p->prot.nbor = 0;
    }
}

void Sync(ArgStruct *p)
{
    long type = MSGCHR;

    SYNCH_(&type);
}

void PrepareToReceive(ArgStruct *p)
{
        /*
          The TCGMSG interface doesn't have a method to pre-post
          a buffer for reception of data.
        */
}

void SendData(ArgStruct *p)
{
  long type = MSGCHR;
  long sync_snd = 0;
  long lbufflen = p->bufflen;
  
    SND_( &type, p->s_ptr, &lbufflen, &p->prot.nbor, &sync_snd);
}

void RecvData(ArgStruct *p)
{
  long lenmes;
  long nodefrom;
  long type = MSGCHR;
  long sync_rcv = 1;
  long lbufflen = p->bufflen;

    RCV_ ( &type, p->r_ptr, &lbufflen, &lenmes, &p->prot.nbor, &nodefrom, &sync_rcv) ;
}


void SendTime(ArgStruct *p, double *t)
{
   long ttype;
   long lenbuf;
   long sync_snd = 1;

   ttype = MSGDBL;
   lenbuf = sizeof(double);
   SND_( &ttype, t, &lenbuf, &p->prot.nbor, &sync_snd);
}

void RecvTime(ArgStruct *p, double *t)
{
   long lenmes;
   long nodefrom;
   long ttype;
   long lenbuf;
   long sync_rcv = 1;

   ttype = MSGDBL;
   lenbuf = sizeof(double);
   RCV_( &ttype, t, &lenbuf, &lenmes, &p->prot.nbor, &nodefrom, &sync_rcv);
}

void SendRepeat(ArgStruct *p, int n)
{
   long ttype;
   long lenbuf;
   long sync_snd = 1;

   ttype = MSGINT;
   lenbuf = sizeof(int);
   SND_( &ttype, &n, &lenbuf, &p->prot.nbor, &sync_snd);
}

void RecvRepeat(ArgStruct *p, int *n)
{
   long lenmes;
   long nodefrom;
   long ttype;
   long lenbuf;
   long sync_rcv = 1;

   ttype = MSGINT;
   lenbuf = sizeof(int);
   RCV_( &ttype, n, &lenbuf, &lenmes, &p->prot.nbor, &nodefrom, &sync_rcv);
}

void CleanUp(ArgStruct *p)
{
        PEND_();
}


void Reset(ArgStruct *p)
{

}


void AfterAlignmentInit(ArgStruct *p)
{

}