Skip to content

Commit

Permalink
REVIEW: address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
ferrol aderholdt committed Nov 1, 2023
1 parent 5a4aa1f commit 162a531
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/components/tl/ucp/alltoallv/alltoallv.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ ucc_status_t ucc_tl_ucp_alltoallv_hybrid_init(ucc_base_coll_args_t *coll_args,
ucc_base_team_t *team,
ucc_coll_task_t **task_h);


ucc_status_t ucc_tl_ucp_alltoallv_onesided_init(ucc_base_coll_args_t *coll_args,
ucc_base_team_t *team,
ucc_coll_task_t **task_h);
Expand Down
2 changes: 1 addition & 1 deletion src/components/tl/ucp/tl_ucp_sendrecv.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2021-2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
* Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
* Copyright (c) Meta Platforms, Inc. and affiliates. 2022.
*
* See file LICENSE for terms.
Expand Down
4 changes: 3 additions & 1 deletion test/mpi/test_mpi.cc
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,9 @@ void UccTestMpi::run_all_at_team(ucc_test_team_t &team,
continue;
}

if ((c == UCC_COLL_TYPE_ALLTOALL || c == UCC_COLL_TYPE_ALLTOALLV) && team.ctx != ctx) {
if ((c == UCC_COLL_TYPE_ALLTOALL ||
c == UCC_COLL_TYPE_ALLTOALLV) &&
team.ctx != ctx) {
/* onesided alltoall */
if (mt != UCC_MEMORY_TYPE_HOST) {
continue;
Expand Down

0 comments on commit 162a531

Please sign in to comment.