Skip to content

Commit

Permalink
CL/HIER: disable onesided alltoallv
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergei-Lebedev committed Nov 8, 2023
1 parent ff80e13 commit c1cf14e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/components/cl/hier/alltoallv/alltoallv.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,11 @@ UCC_CL_HIER_PROFILE_FUNC(ucc_status_t, ucc_cl_hier_alltoallv_init,
return UCC_ERR_NOT_SUPPORTED;
}

if (coll_args->args.mask & UCC_COLL_ARGS_FIELD_GLOBAL_WORK_BUFFER) {
cl_debug(team->context->lib, "onesided alltoallv is not supported");
return UCC_ERR_NOT_SUPPORTED;
}

if (!SBGP_ENABLED(cl_team, FULL)) {
cl_debug(team->context->lib, "alltoallv requires FULL sbgp");
return UCC_ERR_NOT_SUPPORTED;
Expand Down

0 comments on commit c1cf14e

Please sign in to comment.