
Only selectable when specifically requested via "-mca odls pspawn" Note that there are several concerns: * we aren't getting SIGCHLD calls when the procs terminate * we aren't seeing the IO pipes close on termination, though we are getting output forwarded to mpirun * I haven't found a way to bind the child process prior to exec. If we want to use this method, we probably need someone to implement a cgroup component for the orte/rtc framework Signed-off-by: Ralph Castain <rhc@open-mpi.org>
50 строки
1.7 KiB
Makefile
50 строки
1.7 KiB
Makefile
#
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
# University Research and Technology
|
|
# Corporation. All rights reserved.
|
|
# Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
# of Tennessee Research Foundation. All rights
|
|
# reserved.
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
# University of Stuttgart. All rights reserved.
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
# All rights reserved.
|
|
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
|
# Copyright (c) 2017 IBM Corporation. All rights reserved.
|
|
# Copyright (c) 2017 Intel, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
dist_ortedata_DATA = help-orte-odls-pspawn.txt
|
|
|
|
sources = \
|
|
odls_pspawn.h \
|
|
odls_pspawn_component.c \
|
|
odls_pspawn.c
|
|
|
|
# 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_orte_odls_pspawn_DSO
|
|
component_noinst =
|
|
component_install = mca_odls_pspawn.la
|
|
else
|
|
component_noinst = libmca_odls_pspawn.la
|
|
component_install =
|
|
endif
|
|
|
|
mcacomponentdir = $(ortelibdir)
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
mca_odls_pspawn_la_SOURCES = $(sources)
|
|
mca_odls_pspawn_la_LDFLAGS = -module -avoid-version
|
|
mca_odls_pspawn_la_LIBADD = $(top_builddir)/orte/lib@ORTE_LIB_PREFIX@open-rte.la
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
libmca_odls_pspawn_la_SOURCES =$(sources)
|
|
libmca_odls_pspawn_la_LDFLAGS = -module -avoid-version
|