Skip to content

Commit

Permalink
COLL/UCC: fix for reduce_scatter_block issue
Browse files Browse the repository at this point in the history
See open-mpi#12534

Signed-off-by: Howard Pritchard <[email protected]>
  • Loading branch information
hppritcha committed May 8, 2024
1 parent e44cd58 commit b6a3ca5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ompi/mca/coll/ucc/coll_ucc_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Copyright (c) 2022 Amazon.com, Inc. or its affiliates.
* All Rights reserved.
* Copyright (c) 2022-2024 NVIDIA Corporation. All rights reserved.
* Copyright (c) 2024 Triad National Security, LLC. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
Expand Down Expand Up @@ -403,8 +404,8 @@ static int mca_coll_ucc_replace_coll_handlers(mca_coll_ucc_module_t *ucc_module)

UCC_INSTALL_COLL_API(comm, ucc_module, GATHER, gather);
UCC_INSTALL_COLL_API(comm, ucc_module, GATHERV, gatherv);
UCC_INSTALL_COLL_API(comm, ucc_module, REDUCE_SCATTER_BLOCK, reduce_scatter_block);
UCC_INSTALL_COLL_API(comm, ucc_module, REDUCE_SCATTER, reduce_scatter);
UCC_INSTALL_COLL_API(comm, ucc_module, REDUCE_SCATTER, reduce_scatter_block);
UCC_INSTALL_COLL_API(comm, ucc_module, REDUCE_SCATTERV, reduce_scatter);
UCC_INSTALL_COLL_API(comm, ucc_module, SCATTER, scatter);
UCC_INSTALL_COLL_API(comm, ucc_module, SCATTERV, scatterv);

Expand Down

0 comments on commit b6a3ca5

Please sign in to comment.