@@ -86,9 +86,8 @@ int mca_coll_ucc_gatherv(const void *sbuf, int scount, struct ompi_datatype_t *s
8686 return OMPI_SUCCESS ;
8787fallback :
8888 UCC_VERBOSE (3 , "running fallback gatherv" );
89- return ucc_module -> previous_gatherv (sbuf , scount , sdtype , rbuf , rcounts ,
90- disps , rdtype , root , comm ,
91- ucc_module -> previous_gatherv_module );
89+ return mca_coll_ucc_call_previous (gatherv , ucc_module ,
90+ sbuf , scount , sdtype , rbuf , rcounts , disps , rdtype , root , comm );
9291}
9392
9493int mca_coll_ucc_igatherv (const void * sbuf , int scount , struct ompi_datatype_t * sdtype ,
@@ -115,7 +114,6 @@ int mca_coll_ucc_igatherv(const void *sbuf, int scount, struct ompi_datatype_t *
115114 if (coll_req ) {
116115 mca_coll_ucc_req_free ((ompi_request_t * * )& coll_req );
117116 }
118- return ucc_module -> previous_igatherv (sbuf , scount , sdtype , rbuf , rcounts ,
119- disps , rdtype , root , comm , request ,
120- ucc_module -> previous_igatherv_module );
117+ return mca_coll_ucc_call_previous (igatherv , ucc_module ,
118+ sbuf , scount , sdtype , rbuf , rcounts , disps , rdtype , root , comm , request );
121119}
0 commit comments