Skip to content

Commit

Permalink
collectives: "array" instead of source "buffer"
Browse files Browse the repository at this point in the history
  • Loading branch information
davidozog authored and jdinan committed Sep 5, 2024
1 parent 0765807 commit 00bcc40
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions content/shmem_alltoall.tex
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,11 @@
\begin{itemize}
\item The \dest{} array on all \acp{PE} in the team is ready to
accept the result of the operation.
\item The \source{} buffer at the local \ac{PE} is ready to be
\item The \source{} array at the local \ac{PE} is ready to be
read by any \ac{PE} in the team.
\end{itemize}
The application does not need to synchronize to ensure that the \source{}
buffer is ready across all \acp{PE} prior to calling this routine.
array is ready across all \acp{PE} prior to calling this routine.

Upon return from a \FUNC{shmem\_alltoall} routine, the following is true for
the local PE:
Expand Down
4 changes: 2 additions & 2 deletions content/shmem_broadcast.tex
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,11 @@
\begin{itemize}
\item The \dest{} array on all \acp{PE} in the team is ready to
accept the result of the operation.
\item The \source{} buffer at the local root \ac{PE} is ready to be
\item The \source{} array at the local root \ac{PE} is ready to be
read by any \ac{PE} in the team.
\end{itemize}
The application does not need to synchronize to ensure that the \source{}
buffer is ready across all \acp{PE} prior to calling this routine.
array is ready across all \acp{PE} prior to calling this routine.

Upon return from a team-based broadcast routine, the following are true for the local
\ac{PE}:
Expand Down
4 changes: 2 additions & 2 deletions content/shmem_collect.tex
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@
\begin{itemize}
\item The \dest{} array on all \acp{PE} in the team is ready to
accept the result of the operation.
\item The \source{} buffer at the local \ac{PE} is ready to be read
\item The \source{} array at the local \ac{PE} is ready to be read
by any \ac{PE} in the team.
\end{itemize}
The application does not need to synchronize to ensure that the \source{}
buffer is ready across all \acp{PE} prior to calling this routine.
array is ready across all \acp{PE} prior to calling this routine.

\begin{DeprecateBlock}
\openshmem \FUNC{collect} and \FUNC{fcollect} routines perform a collective
Expand Down
4 changes: 2 additions & 2 deletions content/shmem_reductions.tex
Original file line number Diff line number Diff line change
Expand Up @@ -300,11 +300,11 @@ \subsubsubsection{PROD}
\begin{itemize}
\item The \dest{} array on all \acp{PE} in the team is ready to
accept the results of the operation.
\item The \source{} buffer at the local \ac{PE} is ready to be read by
\item The \source{} array at the local \ac{PE} is ready to be read by
any \ac{PE} in the team.
\end{itemize}
The application does not need to synchronize to ensure that the \source{}
buffer is ready across all \acp{PE} prior to calling this routine.
array is ready across all \acp{PE} prior to calling this routine.

Upon return from a reduction routine, the following are true for the local
\ac{PE}:
Expand Down
4 changes: 2 additions & 2 deletions content/shmem_scan.tex
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@
\begin{itemize}
\item The \dest{} array on all \acp{PE} in the team is ready to accept
the result of the operation.
\item The \source{} buffer at the local \ac{PE} is ready to be read by
\item The \source{} array at the local \ac{PE} is ready to be read by
any \ac{PE} in the team.
\end{itemize}
The application does not need to synchronize to ensure that the \source{}
buffer is ready across all \acp{PE} prior to calling this routine.
array is ready across all \acp{PE} prior to calling this routine.

Upon return from a scan routine, the following are true for the
local \ac{PE}: the \dest{} array is updated, and the \source{} array
Expand Down

0 comments on commit 00bcc40

Please sign in to comment.