remove tabs

This commit is contained in:
Axel Kohlmeyer
2018-11-24 23:59:43 -05:00
parent 179e84f282
commit 32b3ff6cd7

View File

@ -463,8 +463,8 @@ int MPI_Allreduce(void *sendbuf, void *recvbuf, int count,
/* copy values from data1 to data2 */ /* copy values from data1 to data2 */
int MPI_Reduce(void *sendbuf, void *recvbuf, int count, int MPI_Reduce(void *sendbuf, void *recvbuf, int count,
MPI_Datatype datatype, MPI_Op op, MPI_Datatype datatype, MPI_Op op,
int root, MPI_Comm comm) int root, MPI_Comm comm)
{ {
int n = count * stubtypesize(datatype); int n = count * stubtypesize(datatype);
@ -550,8 +550,8 @@ int MPI_Gather(void *sendbuf, int sendcount, MPI_Datatype sendtype,
/* copy values from data1 to data2 */ /* copy values from data1 to data2 */
int MPI_Gatherv(void *sendbuf, int sendcount, MPI_Datatype sendtype, int MPI_Gatherv(void *sendbuf, int sendcount, MPI_Datatype sendtype,
void *recvbuf, int *recvcounts, int *displs, void *recvbuf, int *recvcounts, int *displs,
MPI_Datatype recvtype, int root, MPI_Comm comm) MPI_Datatype recvtype, int root, MPI_Comm comm)
{ {
int n = sendcount * stubtypesize(sendtype); int n = sendcount * stubtypesize(sendtype);
@ -581,8 +581,8 @@ int MPI_Scatter(void *sendbuf, int sendcount, MPI_Datatype sendtype,
/* copy values from data1 to data2 */ /* copy values from data1 to data2 */
int MPI_Scatterv(void *sendbuf, int *sendcounts, int *displs, int MPI_Scatterv(void *sendbuf, int *sendcounts, int *displs,
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype sendtype, void *recvbuf, int recvcount,
MPI_Datatype recvtype, int root, MPI_Comm comm) MPI_Datatype recvtype, int root, MPI_Comm comm)
{ {
int n = recvcount * stubtypesize(recvtype); int n = recvcount * stubtypesize(recvtype);