Skip to content

Commit

Permalink
CL/HIER: disable onesided alltoallv (openucx#875)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergei-Lebedev authored and janjust committed Jan 31, 2024
1 parent 5d4f8fe commit 54958ab
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 54958ab

Please sign in to comment.