We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7548e34 commit 11e1f09Copy full SHA for 11e1f09
ompi/mpi/java/c/mpiJava.h
@@ -97,7 +97,7 @@ void ompi_java_releaseReadPtr(
97
/* Gets a buffer pointer for writing. */
98
void ompi_java_getWritePtr(
99
void **ptr, ompi_java_buffer_t **item, JNIEnv *env,
100
- jobject buf, jboolean db, int count, MPI_Datatype type);
+ jobject buf, jboolean db, int count, MPI_Datatype type);
101
102
/* Gets a buffer pointer for writing.
103
* 'size' is the number of processes. */
ompi/mpi/java/c/mpi_Comm.c
@@ -1605,8 +1605,8 @@ JNIEXPORT void JNICALL Java_mpi_Comm_allToAllw(
1605
*rPtr = ompi_java_getDirectBufferAddress(env, recvBuf);
1606
1607
int rc = MPI_Alltoallw(
1608
- sPtr, cSCount, cSDispls, cSTypes,
1609
- rPtr, cRCount, cRDispls, cRTypes, comm);
+ sPtr, cSCount, cSDispls, cSTypes,
+ rPtr, cRCount, cRDispls, cRTypes, comm);
1610
1611
ompi_java_exceptionCheck(env, rc);
1612
ompi_java_forgetIntArray(env, sCount, jSCount, cSCount);
@@ -1643,8 +1643,8 @@ JNIEXPORT jlong JNICALL Java_mpi_Comm_iAllToAllw(
1643
MPI_Request request;
1644
1645
int rc = MPI_Ialltoallw(
1646
1647
- rPtr, cRCount, cRDispls, cRTypes, comm, &request);
+ rPtr, cRCount, cRDispls, cRTypes, comm, &request);
1648
1649
1650
ompi/mpi/java/java/Comm.java
@@ -2336,7 +2336,7 @@ public final void allToAllw(
2336
2337
allToAllw(handle, sendBuf, sendCount, sDispls,
2338
sendHandles, recvBuf, recvCount, rDispls,
2339
- recvHandles);
+ recvHandles);
2340
}
2341
2342
private native void allToAllw(long comm,
0 commit comments