Skip to content

Commit 8ecda52

Browse files
authored
Merge pull request open-mpi#12535 from hppritcha/fixes_for_coll_ucc
COLL/UCC: fix for reduce_scatter_block issue
2 parents e44cd58 + b6a3ca5 commit 8ecda52

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ompi/mca/coll/ucc/coll_ucc_module.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Copyright (c) 2022 Amazon.com, Inc. or its affiliates.
44
* All Rights reserved.
55
* Copyright (c) 2022-2024 NVIDIA Corporation. All rights reserved.
6+
* Copyright (c) 2024 Triad National Security, LLC. All rights reserved.
67
* $COPYRIGHT$
78
*
89
* Additional copyrights may follow
@@ -403,8 +404,8 @@ static int mca_coll_ucc_replace_coll_handlers(mca_coll_ucc_module_t *ucc_module)
403404

404405
UCC_INSTALL_COLL_API(comm, ucc_module, GATHER, gather);
405406
UCC_INSTALL_COLL_API(comm, ucc_module, GATHERV, gatherv);
406-
UCC_INSTALL_COLL_API(comm, ucc_module, REDUCE_SCATTER_BLOCK, reduce_scatter_block);
407-
UCC_INSTALL_COLL_API(comm, ucc_module, REDUCE_SCATTER, reduce_scatter);
407+
UCC_INSTALL_COLL_API(comm, ucc_module, REDUCE_SCATTER, reduce_scatter_block);
408+
UCC_INSTALL_COLL_API(comm, ucc_module, REDUCE_SCATTERV, reduce_scatter);
408409
UCC_INSTALL_COLL_API(comm, ucc_module, SCATTER, scatter);
409410
UCC_INSTALL_COLL_API(comm, ucc_module, SCATTERV, scatterv);
410411

0 commit comments

Comments
 (0)