Skip to content

Commit d2b485a

Browse files
authored
Merge pull request #11023 from devreal/tuned-barrier-tree-instead-of-bruck
tuned: use tree instead of bruck at scale
2 parents e62b18f + 9bd7757 commit d2b485a

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

ompi/mca/coll/tuned/coll_tuned_decision_fixed.c

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -490,14 +490,8 @@ int ompi_coll_tuned_barrier_intra_dec_fixed(struct ompi_communicator_t *comm,
490490
alg = 3;
491491
} else if (communicator_size < 256) {
492492
alg = 4;
493-
} else if (communicator_size < 512) {
494-
alg = 6;
495-
} else if (communicator_size < 1024) {
496-
alg = 4;
497-
} else if (communicator_size < 4096) {
498-
alg = 6;
499493
} else {
500-
alg = 4;
494+
alg = 6;
501495
}
502496

503497
return ompi_coll_tuned_barrier_intra_do_this (comm, module,

0 commit comments

Comments
 (0)