mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-08 03:07:03 +00:00
27 lines
1.1 KiB
C
27 lines
1.1 KiB
C
/*****************************************************************************
|
|
* CVS File Information :
|
|
* $RCSfile$
|
|
* Author: patmiller $
|
|
* Date: 2007/06/11 14:12:50 $
|
|
* Revision: 1.2 $
|
|
****************************************************************************/
|
|
/* FILE ****************** MPI_Gather.c ************************/
|
|
/****************************************************************************/
|
|
/* Author : Lisa Alano July 16 2002 */
|
|
/* Copyright (c) 2002 University of California Regents */
|
|
/****************************************************************************/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include "mpi.h"
|
|
|
|
/*==========================================================================*/
|
|
int MPI_Gather (void *sendbuf, int sendcnt, MPI_Datatype sendtype, void *recvbuf,
|
|
int recvcnt, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
{
|
|
_MPI_COVERAGE();
|
|
return PMPI_Gather(sendbuf, sendcnt, sendtype, recvbuf, recvcnt, recvtype, root, comm);
|
|
}
|
|
/*==========================================================================*/
|