83a7f6e4de
LoadLeveler only sets LOADL_PROCESSOR_LIST when there are 128 or less tasks allocated to a job. The POE RAS relied on this variable so I created a new RAS which uses the LoadLeveler API instead of relying on the environment variable. This still needs some testing, so for now we use the POE RAS whenever LOADL_PROCESSOR_LIST, otherwise we fall back on this component. Unfortunately, this will require an autogen... This commit was SVN r11732.
60 строки
1.8 KiB
Makefile
60 строки
1.8 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$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# Use the top-level Makefile.options
|
|
|
|
|
|
|
|
AM_CPPFLAGS = $(ras_loadleveler_CPPFLAGS)
|
|
|
|
sources = \
|
|
ras_loadleveler.h \
|
|
ras_loadleveler_component.c \
|
|
ras_loadleveler_module.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 OMPI_BUILD_ras_loadleveler_DSO
|
|
lib =
|
|
lib_sources =
|
|
component = mca_ras_loadleveler.la
|
|
component_sources = $(sources)
|
|
else
|
|
lib = libmca_ras_loadleveler.la
|
|
lib_sources = $(sources)
|
|
component =
|
|
component_sources =
|
|
endif
|
|
|
|
mcacomponentdir = $(libdir)/openmpi
|
|
mcacomponent_LTLIBRARIES = $(component)
|
|
mca_ras_loadleveler_la_SOURCES = $(component_sources)
|
|
mca_ras_loadleveler_la_LDFLAGS = -module -avoid-version $(ras_loadleveler_LDFLAGS)
|
|
mca_ras_loadleveler_la_LIBADD = \
|
|
$(ras_loadleveler_LIBS) \
|
|
$(top_ompi_builddir)/orte/liborte.la \
|
|
$(top_ompi_builddir)/opal/libopal.la
|
|
|
|
noinst_LTLIBRARIES = $(lib)
|
|
libmca_ras_loadleveler_la_SOURCES = $(lib_sources)
|
|
libmca_ras_loadleveler_la_LDFLAGS = -module -avoid-version $(ras_loadleveler_LDFLAGS)
|
|
libmca_ras_loadleveler_la_LIBADD = $(ras_loadleveler_LIBS)
|