Newsgroups: comp.parallel.mpi
From: Anatol Piotrowski <piotrows@scs.carleton.ca>
Subject: Correction: Beginers question about immediate send
Organization: Carleton University
Date: Fri, 21 Jun 1996 14:41:29 -0400
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Message-ID: <31CAECD9.777@scs.carleton.ca>

There is no & before data.
> Would you know if this code looks OK for immediate (async) send ?
> 
> short   data[70000];
> MPI_Request request;
>         MPI_Isend(data,          /* message buffer */
>                   60000,          /* one data item */
>                   MPI_SHORT,      /* data item is an integer */
>                   rank,           /* destination process rank */
>                   WORKTAG,        /* user chosen message tag */
>                   MPI_COMM_WORLD, /* always use this */
>                   &request);      /* I don't care what is stored */

