-
Notifications
You must be signed in to change notification settings - Fork 877
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
coll/tuned: Change the allreduce default collective algorithm selection
Include the new allreduce algorithm allgather_reduce in the default algorithm selections. The default algorithm selections were out of date and not performing well. After gathering data using the ompi-collectives-tuning package, new default algorithm decisions are selected for allreduce, which have significant speedup for small node number and message size. Signed-off-by: Jessie Yang <[email protected]>
- Loading branch information
Showing
16 changed files
with
383 additions
and
288 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# | ||
# Copyright (c) 2014 The University of Tennessee and The University | ||
# of Tennessee Research Foundation. All rights | ||
# reserved. | ||
# Copyright (c) 2014 NVIDIA Corporation. All rights reserved. | ||
# Copyright (c) 2017 IBM Corporation. All rights reserved. | ||
# $COPYRIGHT$ | ||
# | ||
# Additional copyrights may follow | ||
# | ||
# $HEADER$ | ||
# | ||
dist_ompidata_DATA = help-mpi-coll-accelerator.txt | ||
|
||
sources = coll_accelerator_module.c coll_accelerator_reduce.c coll_accelerator_allreduce.c \ | ||
coll_accelerator_reduce_scatter_block.c coll_accelerator_component.c \ | ||
coll_accelerator_scan.c coll_accelerator_exscan.c coll_accelerator.h | ||
|
||
# Make the output library in this directory, and name it either | ||
# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la | ||
# (for static builds). | ||
|
||
if MCA_BUILD_ompi_coll_accelerator_DSO | ||
component_noinst = | ||
component_install = mca_coll_accelerator.la | ||
else | ||
component_noinst = libmca_coll_accelerator.la | ||
component_install = | ||
endif | ||
|
||
mcacomponentdir = $(ompilibdir) | ||
mcacomponent_LTLIBRARIES = $(component_install) | ||
mca_coll_accelerator_la_SOURCES = $(sources) | ||
mca_coll_accelerator_la_LDFLAGS = -module -avoid-version | ||
mca_coll_accelerator_la_LIBADD = $(top_builddir)/ompi/lib@[email protected] | ||
|
||
noinst_LTLIBRARIES = $(component_noinst) | ||
libmca_coll_accelerator_la_SOURCES =$(sources) | ||
libmca_coll_accelerator_la_LDFLAGS = -module -avoid-version | ||
|
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
Oops, something went wrong.