Skip to content

Commit fed54d0

Browse files
authored
Merge pull request #60 from razor1991/huawei
UCG: Fix compiler error.
2 parents 5c3826e + c5da03b commit fed54d0

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

src/core/ucg_plan.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ static void ucg_plan_compact(ucg_plan_t *plan1, const ucg_plan_t *plan2)
433433
if (plan1->type == UCG_PLAN_TYPE_FIRST_CLASS) {
434434
ucg_assert(plan1->type == plan2->type);
435435
ucg_assert(ucg_list_length(&plan1->fallback) ==
436-
ucg_list_length(&plan2->fallback));
436+
ucg_list_length((ucg_list_link_t*)&plan2->fallback));
437437

438438
ucg_plan_t *plan1_fb = NULL;
439439
ucg_plan_t *plan2_fb = ucg_list_head(&plan2->fallback, ucg_plan_t, fallback);

src/ucg/api/ucg.h

+33
Original file line numberDiff line numberDiff line change
@@ -1150,6 +1150,39 @@ ucg_status_t ucg_request_scatterv_init(const void *sendbuf, const int32_t *sendc
11501150
ucg_group_h group, const ucg_request_info_t *info,
11511151
ucg_request_h *request);
11521152

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+
11531186
/**
11541187
* @ingroup UCG_REQUEST
11551188
* @brief Create a persistent allgather request.

0 commit comments

Comments
 (0)