Files

Ignorando revisiones en .git-blame-ignore-revs. Haga clic aquí para saltar y para a la vista normal.

52 líneas
1.7 KiB
ReStructuredText

2025-05-08 13:39:28 -04:00
.. meta::
:description: rocSHMEM intra-kernel networking runtime for AMD dGPUs on the ROCm platform.
:keywords: rocSHMEM, API, ROCm, documentation, HIP, Networking, Communication
.. _rocshmem-api-memory-ordering:
---------------------------
2025-05-13 16:26:28 -04:00
Memory ordering routines
2025-05-08 13:39:28 -04:00
---------------------------
ROCSHMEM_FENCE
--------------
.. cpp:function:: __device__ void rocshmem_fence()
.. cpp:function:: __device__ void rocshmem_fence(int pe)
.. cpp:function:: __device__ void rocshmem_ctx_fence(rocshmem_ctx_t ctx)
.. cpp:function:: __device__ void rocshmem_ctx_fence(rocshmem_ctx_t ctx, int pe)
2025-05-13 16:26:28 -04:00
:param ctx: Context with which to perform this operation.
:param pe: Destination ``pe``.
:returns: None.
2025-05-08 13:39:28 -04:00
**Description:**
2025-05-13 16:26:28 -04:00
This routine ensures order between messages in this context to follow OpenSHMEM semantics.
2025-05-08 13:39:28 -04:00
ROCSHMEM_QUIET
--------------
.. cpp:function:: __device__ void rocshmem_ctx_quiet(rocshmem_ctx_t ctx)
.. cpp:function:: __device__ void rocshmem_quiet()
2025-05-13 16:26:28 -04:00
:param ctx: Context with which to perform this operation.
:returns: None.
2025-05-08 13:39:28 -04:00
**Description:**
2025-05-13 16:26:28 -04:00
This routine completes all previous operations posted to this context.
2025-10-20 11:42:39 -04:00
ROCSHMEM_PE_QUIET
2025-12-08 15:54:06 -05:00
-----------------
2025-10-20 11:42:39 -04:00
.. cpp:function:: __device__ void rocshmem_ctx_pe_quiet(shmem_ctx_t ctx, const int *target_pes, size_t npes)
.. cpp:function:: __device__ void rocshmem_pe_quiet(const int *target_pes, size_t npes)
:param ctx: Context with which to perform this operation.
:param target_pes: Address of target PE array where the operations need to be completed
:param npes: The number of PEs in the target PE array
:returns: None.
**Description:**
This routine completes all previous operations posted to this context
for the PEs in the `target_pes` array.