-
Notifications
You must be signed in to change notification settings - Fork 876
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'open-mpi:main' into allreduce
- Loading branch information
Showing
15 changed files
with
181 additions
and
165 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.