Statistiques
| Révision :

root / www / HPL_send.html

Historique | Voir | Annoter | Télécharger (1,77 ko)

1
<HTML>
2
<HEAD>
3
<TITLE>HPL_send HPL 2.0 Library Functions September 10, 2008</TITLE> 
4
</HEAD>
5

    
6
<BODY BGCOLOR="WHITE" TEXT = "#000000" LINK = "#0000ff" VLINK = "#000099"
7
      ALINK = "#ffff00">
8

    
9
<H1>Name</H1>
10
<B>HPL_send</B> Send a message.
11

    
12
<H1>Synopsis</H1>
13
<CODE>#include "hpl.h"</CODE><BR><BR>
14
<CODE>int</CODE>
15
<CODE>HPL_send(</CODE>
16
<CODE>double *</CODE>
17
<CODE>SBUF</CODE>,
18
<CODE>int</CODE>
19
<CODE>SCOUNT</CODE>,
20
<CODE>int</CODE>
21
<CODE>DEST</CODE>,
22
<CODE>int</CODE>
23
<CODE>STAG</CODE>,
24
<CODE>MPI_Comm</CODE>
25
<CODE>COMM</CODE>
26
<CODE>);</CODE>
27

    
28
<H1>Description</H1>
29
<B>HPL_send</B>
30
is a simple wrapper around  MPI_Send.  Its  main  purpose is
31
to  allow for some  experimentation / tuning  of this simple routine.
32
Successful  completion  is  indicated  by  the  returned  error  code
33
MPI_SUCCESS.  In the case of messages of length less than or equal to
34
zero, this function returns immediately.
35

    
36
<H1>Arguments</H1>
37
<PRE>
38
SBUF    (local input)                 double *
39
        On entry, SBUF specifies the starting address of buffer to be
40
        sent.
41
</PRE>
42
<PRE>
43
SCOUNT  (local input)                 int
44
        On entry,  SCOUNT  specifies  the number of  double precision
45
        entries in SBUF. SCOUNT must be at least zero.
46
</PRE>
47
<PRE>
48
DEST    (local input)                 int
49
        On entry, DEST specifies the rank of the receiving process in
50
        the communication space defined by COMM.
51
</PRE>
52
<PRE>
53
STAG    (local input)                 int
54
        On entry,  STAG specifies the message tag to be used for this
55
        communication operation.
56
</PRE>
57
<PRE>
58
COMM    (local input)                 MPI_Comm
59
        The MPI communicator identifying the communication space.
60
</PRE>
61

    
62
<H1>See Also</H1>
63
<A HREF="HPL_recv.html">HPL_recv</A>,
64
<A HREF="HPL_sendrecv.html">HPL_sendrecv</A>.
65

    
66
</BODY>
67
</HTML>