-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* TL/UCP: tl_ucp_schedule_t * UTIL: ep_map reverse * UTIL: buffer devision into blocks * TL/UCP: reduce_scatter_ring * TEST: reduce_scatter in gtest * TEST: mpi reduce_scatter fix Allow running test_mpi reduce_scatter when count % comm_size != 0 * TL/UCP: rs ring 2 cb * REVIEW: address comments
- Loading branch information
valentin petrov
authored
Feb 7, 2022
1 parent
88f9706
commit 112735e
Showing
19 changed files
with
1,089 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/** | ||
* Copyright (C) Mellanox Technologies Ltd. 2022. ALL RIGHTS RESERVED. | ||
* | ||
* See file LICENSE for terms. | ||
*/ | ||
#include "tl_ucp.h" | ||
#include "reduce_scatter.h" | ||
#include "utils/ucc_coll_utils.h" | ||
|
||
ucc_base_coll_alg_info_t | ||
ucc_tl_ucp_reduce_scatter_algs[UCC_TL_UCP_REDUCE_SCATTER_ALG_LAST + 1] = { | ||
[UCC_TL_UCP_REDUCE_SCATTER_ALG_RING] = | ||
{.id = UCC_TL_UCP_REDUCE_SCATTER_ALG_RING, | ||
.name = "ring", | ||
.desc = "O(N) ring"}, | ||
[UCC_TL_UCP_REDUCE_SCATTER_ALG_LAST] = { | ||
.id = 0, .name = NULL, .desc = NULL}}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.