1
1

javadoc: remove old references to offset

This commit was SVN r30102.
Этот коммит содержится в:
Oscar Vega-Gisbert 2014-01-01 21:40:27 +00:00
родитель cb90891d47
Коммит 795131fc59

Просмотреть файл

@ -227,18 +227,7 @@ private native long createIntercomm(
/** /**
* Blocking send operation. * Blocking send operation.
* <p> * <p>Java binding of the MPI operation {@code MPI_SEND}.
* Java binding of the MPI operation {@code MPI_SEND}.
* <p>
* The actual argument associated with {@code buf} must be
* one-dimensional array. The value {@code offset} is a subscript in
* this array, defining the position of the first item of the message.
* <p>
* If the {@code datatype} argument represents an MPI basic type, its
* value must agree with the element type of {@code buf}---either
* a primitive type or a reference (object) type. If the
* {@code datatype} argument represents an MPI derived type, its
* <em>base type</em> must agree with the element type of {@code buf}.
* @param buf send buffer array * @param buf send buffer array
* @param count number of items to send * @param count number of items to send
* @param type datatype of each item in send buffer * @param type datatype of each item in send buffer
@ -267,19 +256,7 @@ private native void send(Object buf, int offset, int count,
/** /**
* Blocking receive operation. * Blocking receive operation.
* <p> * <p>Java binding of the MPI operation {@code MPI_RECV}.
* Java binding of the MPI operation {@code MPI_RECV}.
* <p>
* The actual argument associated with {@code buf} must be
* one-dimensional array. The value {@code offset} is a subscript in
* this array, defining the position into which the first item of the
* incoming message will be copied.
* <p>
* If the {@code datatype} argument represents an MPI basic type, its
* value must agree with the element type of {@code buf}---either
* a primitive type or a reference (object) type. If the
* {@code datatype} argument represents an MPI derived type, its
* <em>base type</em> must agree with the element type of {@code buf}
* @param buf receive buffer array * @param buf receive buffer array
* @param count number of items in receive buffer * @param count number of items in receive buffer
* @param type datatype of each item in receive buffer * @param type datatype of each item in receive buffer
@ -1272,13 +1249,7 @@ private native long iGather(
/** /**
* Extends functionality of {@code gather} by allowing varying * Extends functionality of {@code gather} by allowing varying
* counts of data from each process. * counts of data from each process.
* <p> * <p>Java binding of the MPI operation {@code MPI_GATHERV}.
* Java binding of the MPI operation {@code MPI_GATHERV}.
* <p>
* The sizes of arrays {@code recvcounts} and {@code displs} should be the
* size of the group. Entry <em>i</em> of {@code displs} specifies the
* displacement relative to element {@code recvoffset} of {@code recvbuf}
* at which to place incoming data.
* @param sendbuf send buffer array * @param sendbuf send buffer array
* @param sendcount number of items to send * @param sendcount number of items to send
* @param sendtype datatype of each item in send buffer * @param sendtype datatype of each item in send buffer
@ -1318,15 +1289,9 @@ public final void gatherv(Object sendbuf, int sendcount, Datatype sendtype,
/** /**
* Extends functionality of {@code gather} by allowing varying * Extends functionality of {@code gather} by allowing varying
* counts of data from each process. * counts of data from each process.
* <p> * <p>Java binding of the MPI operation {@code MPI_GATHERV} using
* Java binding of the MPI operation {@code MPI_GATHERV} using
* {@code MPI_IN_PLACE} instead of the send buffer in the root process. * {@code MPI_IN_PLACE} instead of the send buffer in the root process.
* This method must be used in the root process. * This method must be used in the root process.
* <p>
* The sizes of arrays {@code recvcounts} and {@code displs} should be the
* size of the group. Entry <em>i</em> of {@code displs} specifies the
* displacement relative to element {@code recvoffset} of {@code recvbuf}
* at which to place incoming data.
* @param recvbuf receive buffer array * @param recvbuf receive buffer array
* @param recvcount number of elements received from each process * @param recvcount number of elements received from each process
* @param displs displacements at which to place incoming data * @param displs displacements at which to place incoming data
@ -1388,13 +1353,7 @@ private native void gatherv(
/** /**
* Extends functionality of {@code gather} by allowing varying * Extends functionality of {@code gather} by allowing varying
* counts of data from each process. * counts of data from each process.
* <p> * <p>Java binding of the MPI operation {@code MPI_IGATHERV}.
* Java binding of the MPI operation {@code MPI_IGATHERV}.
* <p>
* The sizes of arrays {@code recvcounts} and {@code displs} should be the
* size of the group. Entry <em>i</em> of {@code displs} specifies the
* displacement relative to element {@code recvoffset} of {@code recvbuf}
* at which to place incoming data.
* @param sendbuf send buffer array * @param sendbuf send buffer array
* @param sendcount number of items to send * @param sendcount number of items to send
* @param sendtype datatype of each item in send buffer * @param sendtype datatype of each item in send buffer
@ -1422,15 +1381,9 @@ public final Request iGatherv(
/** /**
* Extends functionality of {@code gather} by allowing varying * Extends functionality of {@code gather} by allowing varying
* counts of data from each process. * counts of data from each process.
* <p> * <p>Java binding of the MPI operation {@code MPI_IGATHERV} using
* Java binding of the MPI operation {@code MPI_IGATHERV} using
* {@code MPI_IN_PLACE} instead of the send buffer in the root process. * {@code MPI_IN_PLACE} instead of the send buffer in the root process.
* This method must be used in the root process. * This method must be used in the root process.
* <p>
* The sizes of arrays {@code recvcounts} and {@code displs} should be the
* size of the group. Entry <em>i</em> of {@code displs} specifies the
* displacement relative to element {@code recvoffset} of {@code recvbuf}
* at which to place incoming data.
* @param recvbuf receive buffer array * @param recvbuf receive buffer array
* @param recvcount number of elements received from each process * @param recvcount number of elements received from each process
* @param displs displacements at which to place incoming data * @param displs displacements at which to place incoming data