@@ -1150,6 +1150,39 @@ ucg_status_t ucg_request_scatterv_init(const void *sendbuf, const int32_t *sendc
1150
1150
ucg_group_h group , const ucg_request_info_t * info ,
1151
1151
ucg_request_h * request );
1152
1152
1153
+ /**
1154
+ * @ingroup UCG_REQUEST
1155
+ * @brief Create a persistent gatherv request.
1156
+ *
1157
+ * The block of data sent from the j-th process is received by every process and
1158
+ * placed in the j-th block of the recvbuf.
1159
+ *
1160
+ * @param [in] sendbuf Starting address of send buffer
1161
+ * @param [in] sendcount Number of elements in send buffer(non-negative
1162
+ * integer)
1163
+ * @param [in] sendtype Data type of send buffer elements
1164
+ * @param [out] recvbuf Address of receive buffer
1165
+ * @param [in] recvcounts Non-negative integer array (of length group size)
1166
+ * containing the number of elements that are received
1167
+ * from each process
1168
+ * @param [in] displs Integer array (of length group size). Entry i specifies
1169
+ * the displacement (relative to recvbuf) at which to
1170
+ * place the incoming data from process i
1171
+ * @param [in] recvtype Data type of receive buffer elements
1172
+ * @param [in] root Rank of receiving process
1173
+ * @param [in] group Communication group
1174
+ * @param [in] info Informations for creating request
1175
+ * @param [out] request Collective request
1176
+ * @retval UCG_OK Success.
1177
+ * @retval Otherwise Failure.
1178
+ */
1179
+ ucg_status_t ucg_request_gatherv_init (const void * sendbuf , const int32_t sendcount ,
1180
+ ucg_dt_h sendtype , void * recvbuf ,
1181
+ const int32_t * recvcounts , const int32_t * displs ,
1182
+ ucg_dt_h recvtype , ucg_rank_t root ,
1183
+ ucg_group_h group , const ucg_request_info_t * info ,
1184
+ ucg_request_h * request );
1185
+
1153
1186
/**
1154
1187
* @ingroup UCG_REQUEST
1155
1188
* @brief Create a persistent allgather request.
0 commit comments