1
1
Signed-off-by: Kurita, Takehiro <fj6370fp@aa.jp.fujitsu.com>
Этот коммит содержится в:
Kurita, Takehiro 2018-09-19 14:45:17 +09:00
родитель cf2880cae6
Коммит fb8311d331
5 изменённых файлов: 13 добавлений и 9 удалений

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

@ -1228,7 +1228,7 @@ public class Comm implements Freeable, Cloneable
private native void barrier(long comm) throws MPIException; private native void barrier(long comm) throws MPIException;
/** /**
* Nonblocking barrier sinchronization. * Nonblocking barrier synchronization.
* <p>Java binding of the MPI operation {@code MPI_IBARRIER}. * <p>Java binding of the MPI operation {@code MPI_IBARRIER}.
* @return communication request * @return communication request
* @throws MPIException Signals that an MPI exception of some sort has occurred. * @throws MPIException Signals that an MPI exception of some sort has occurred.

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

@ -11,6 +11,7 @@
* All rights reserved. * All rights reserved.
* Copyright (c) 2015 Los Alamos National Security, LLC. All rights * Copyright (c) 2015 Los Alamos National Security, LLC. All rights
* reserved. * reserved.
* Copyright (c) 2018 FUJITSU LIMITED. All rights reserved.
* $COPYRIGHT$ * $COPYRIGHT$
* *
* Additional copyrights may follow * Additional copyrights may follow
@ -67,9 +68,9 @@ public final class DistGraphNeighbors
} }
/** /**
* Gets a process for which the calling processs is a destination. * Gets a process for which the calling process is a destination.
* @param i source index * @param i source index
* @return process for which the calling processs is a destination * @return process for which the calling process is a destination
*/ */
public int getSource(int i) public int getSource(int i)
{ {

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

@ -11,6 +11,7 @@
* All rights reserved. * All rights reserved.
* Copyright (c) 2015 Los Alamos National Security, LLC. All rights * Copyright (c) 2015 Los Alamos National Security, LLC. All rights
* reserved. * reserved.
* Copyright (c) 2018 FUJITSU LIMITED. All rights reserved.
* $COPYRIGHT$ * $COPYRIGHT$
* *
* Additional copyrights may follow * Additional copyrights may follow
@ -151,7 +152,7 @@ public final class GraphComm extends Intracomm
* and {@code MPI_GRAPH_NEIGHBORS}. * and {@code MPI_GRAPH_NEIGHBORS}.
* <p>The number of neighbors can be extracted from the size of the result. * <p>The number of neighbors can be extracted from the size of the result.
* @param rank rank of a process in the group of this communicator * @param rank rank of a process in the group of this communicator
* @return array of ranks of neighbouring processes to one specified * @return array of ranks of neighboring processes to one specified
* @throws MPIException Signals that an MPI exception of some sort has occurred. * @throws MPIException Signals that an MPI exception of some sort has occurred.
*/ */
public int[] getNeighbors(int rank) throws MPIException public int[] getNeighbors(int rank) throws MPIException

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

@ -11,6 +11,7 @@
* All rights reserved. * All rights reserved.
* Copyright (c) 2015 Los Alamos National Security, LLC. All rights * Copyright (c) 2015 Los Alamos National Security, LLC. All rights
* reserved. * reserved.
* Copyright (c) 2018 FUJITSU LIMITED. All rights reserved.
* $COPYRIGHT$ * $COPYRIGHT$
* *
* Additional copyrights may follow * Additional copyrights may follow
@ -805,7 +806,7 @@ public class Intracomm extends Comm
/** /**
* Java binding of {@code MPI_LOOKUP_NAME}. * Java binding of {@code MPI_LOOKUP_NAME}.
* @param service service name * @param service service name
* @param info mplementation-specific information * @param info implementation-specific information
* @return port name * @return port name
* @throws MPIException Signals that an MPI exception of some sort has occurred. * @throws MPIException Signals that an MPI exception of some sort has occurred.
*/ */

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

@ -11,6 +11,7 @@
* All rights reserved. * All rights reserved.
* Copyright (c) 2015 Los Alamos National Security, LLC. All rights * Copyright (c) 2015 Los Alamos National Security, LLC. All rights
* reserved. * reserved.
* Copyright (c) 2018 FUJITSU LIMITED. All rights reserved.
* $COPYRIGHT$ * $COPYRIGHT$
* *
* Additional copyrights may follow * Additional copyrights may follow
@ -120,7 +121,7 @@ public class Request implements Freeable
* Adds a receive buffer to this Request object. This method * Adds a receive buffer to this Request object. This method
* should be called by the internal api whenever a persistent * should be called by the internal api whenever a persistent
* request is created and any time a request object, that has * request is created and any time a request object, that has
* an associated buffer, is returned from an opperation to protect * an associated buffer, is returned from an operation to protect
* the buffer from getting prematurely garbage collected. * the buffer from getting prematurely garbage collected.
* @param buf buffer to add to the array list * @param buf buffer to add to the array list
*/ */
@ -133,7 +134,7 @@ public class Request implements Freeable
* Adds a send buffer to this Request object. This method * Adds a send buffer to this Request object. This method
* should be called by the internal api whenever a persistent * should be called by the internal api whenever a persistent
* request is created and any time a request object, that has * request is created and any time a request object, that has
* an associated buffer, is returned from an opperation to protect * an associated buffer, is returned from an operation to protect
* the buffer from getting prematurely garbage collected. * the buffer from getting prematurely garbage collected.
* @param buf buffer to add to the array list * @param buf buffer to add to the array list
*/ */
@ -287,7 +288,7 @@ public class Request implements Freeable
* <p>If some request completed, the index in array of {@code requests} * <p>If some request completed, the index in array of {@code requests}
* for that request can be obtained from the returned status object. * for that request can be obtained from the returned status object.
* The corresponding element in array of {@code requests} becomes inactive. * The corresponding element in array of {@code requests} becomes inactive.
* If no request completed, {testAny} returns {@code null}. * If no request completed, {@code testAnyStatus} returns {@code null}.
* @param requests array of requests * @param requests array of requests
* @return status object if one request completed, {@code null} otherwise. * @return status object if one request completed, {@code null} otherwise.
* @throws MPIException Signals that an MPI exception of some sort has occurred. * @throws MPIException Signals that an MPI exception of some sort has occurred.
@ -307,7 +308,7 @@ public class Request implements Freeable
* Tests for completion of either one or none of the operations * Tests for completion of either one or none of the operations
* associated with active requests. * associated with active requests.
* <p>Java binding of the MPI operation {@code MPI_TESTANY}. * <p>Java binding of the MPI operation {@code MPI_TESTANY}.
* <p>If some request completed, ii becomes inactive. * <p>If some request completed, it becomes inactive.
* @param requests array of requests * @param requests array of requests
* @return index of operation that completed, or {@code MPI.UNDEFINED} * @return index of operation that completed, or {@code MPI.UNDEFINED}
* if none completed. * if none completed.