@@ -92,7 +92,7 @@ protected CartComm(long[] commRequest)
92
92
* Duplicates this communicator.
93
93
* <p>Java binding of {@code MPI_COMM_DUP}.
94
94
* @return copy of this communicator
95
- * @throws MPIException Signals that an MPI exception of some sort has occurred.
95
+ * @throws MPIException Signals that an MPI error of some sort has occurred.
96
96
*/
97
97
@ Override public CartComm dup () throws MPIException
98
98
{
@@ -106,7 +106,7 @@ protected CartComm(long[] commRequest)
106
106
* <p>The new communicator can't be used before the operation completes.
107
107
* The request object must be obtained calling {@link #getRequest}.
108
108
* @return copy of this communicator
109
- * @throws MPIException Signals that an MPI exception of some sort has occurred. Signals that an MPI exception of some sort has occurred.
109
+ * @throws MPIException Signals that an MPI error of some sort has occurred. Signals that an MPI exception of some sort has occurred.
110
110
*/
111
111
@ Override public CartComm iDup () throws MPIException
112
112
{
@@ -119,7 +119,7 @@ protected CartComm(long[] commRequest)
119
119
* <p>Java binding of {@code MPI_COMM_DUP_WITH_INFO}.
120
120
* @param info info object to associate with the new communicator
121
121
* @return copy of this communicator
122
- * @throws MPIException Signals that an MPI exception of some sort has occurred.
122
+ * @throws MPIException Signals that an MPI error of some sort has occurred.
123
123
*/
124
124
@ Override public CartComm dupWithInfo (Info info ) throws MPIException
125
125
{
@@ -134,7 +134,7 @@ protected CartComm(long[] commRequest)
134
134
* <p>The number of dimensions can be obtained from the size of (eg)
135
135
* {@code dims} field of the returned object.
136
136
* @return object containing dimensions, periods and local coordinates
137
- * @throws MPIException Signals that an MPI exception of some sort has occurred.
137
+ * @throws MPIException Signals that an MPI error of some sort has occurred.
138
138
*/
139
139
public CartParms getTopo () throws MPIException
140
140
{
@@ -149,7 +149,7 @@ public CartParms getTopo() throws MPIException
149
149
* <p>Java binding of the MPI operation {@code MPI_CART_RANK}.
150
150
* @param coords Cartesian coordinates of a process
151
151
* @return rank of the specified process
152
- * @throws MPIException Signals that an MPI exception of some sort has occurred.
152
+ * @throws MPIException Signals that an MPI error of some sort has occurred.
153
153
*/
154
154
public int getRank (int [] coords ) throws MPIException
155
155
{
@@ -164,7 +164,7 @@ public int getRank(int[] coords) throws MPIException
164
164
* <p>Java binding of the MPI operation {@code MPI_CART_COORDS}.
165
165
* @param rank rank of a process
166
166
* @return Cartesian coordinates of the specified process
167
- * @throws MPIException Signals that an MPI exception of some sort has occurred.
167
+ * @throws MPIException Signals that an MPI error of some sort has occurred.
168
168
*/
169
169
public int [] getCoords (int rank ) throws MPIException
170
170
{
@@ -180,7 +180,7 @@ public int[] getCoords(int rank) throws MPIException
180
180
* @param direction coordinate dimension of shift
181
181
* @param disp displacement
182
182
* @return object containing ranks of source and destination processes
183
- * @throws MPIException Signals that an MPI exception of some sort has occurred.
183
+ * @throws MPIException Signals that an MPI error of some sort has occurred.
184
184
*/
185
185
public ShiftParms shift (int direction , int disp ) throws MPIException
186
186
{
@@ -197,7 +197,7 @@ private native ShiftParms shift(long comm, int direction, int disp)
197
197
* @param remainDims by dimension, {@code true} if dimension is to be kept,
198
198
* {@code false} otherwise
199
199
* @return communicator containing subgrid including this process
200
- * @throws MPIException Signals that an MPI exception of some sort has occurred.
200
+ * @throws MPIException Signals that an MPI error of some sort has occurred.
201
201
*/
202
202
public CartComm sub (boolean [] remainDims ) throws MPIException
203
203
{
@@ -215,7 +215,7 @@ public CartComm sub(boolean[] remainDims) throws MPIException
215
215
* @param periods {@code true} if grid is periodic,
216
216
* {@code false} if not, in each dimension
217
217
* @return reordered rank of calling process
218
- * @throws MPIException Signals that an MPI exception of some sort has occurred.
218
+ * @throws MPIException Signals that an MPI error of some sort has occurred.
219
219
*/
220
220
public int map (int [] dims , boolean [] periods ) throws MPIException
221
221
{
@@ -231,7 +231,7 @@ private native int map(long comm, int[] dims, boolean[] periods)
231
231
* <p>Java binding of the MPI operation {@code MPI_DIMS_CREATE}.
232
232
* @param nnodes number of nodes in a grid
233
233
* @param dims array specifying the number of nodes in each dimension
234
- * @throws MPIException Signals that an MPI exception of some sort has occurred.
234
+ * @throws MPIException Signals that an MPI error of some sort has occurred.
235
235
*/
236
236
public static void createDims (int nnodes , int [] dims ) throws MPIException
237
237
{
0 commit comments