c173344141
See https://svn.mpi-forum.org/trac/mpi-forum-web/ticket/377 This ticket adds the following functions to the standard: - MPI_T_cvar_get_index, MPI_T_pvar_get_index, and MPI_T_category_get_index The ticket has passed and the functions are part of MPI-3.1 that will be released sometime later this year. In Open MPI the functions expose existing internal functionality so they are low-risk to add to 1.8.0. I will leave it up to Ralph whether he wants to accept these into 1.8. cmr=v1.8:reviewer=rhc This commit was SVN r31037.
49 строки
1.6 KiB
Makefile
49 строки
1.6 KiB
Makefile
#
|
|
# Copyright (c) 2004-2006 The University of Tennessee and The University
|
|
# of Tennessee Research Foundation. All rights
|
|
# reserved.
|
|
# Copyright (c) 2004-2006 High Performance Computing Center Stuttgart,
|
|
# University of Stuttgart. All rights reserved.
|
|
# Copyright (c) 2012-2014 Los Alamos National Security, LLC. All rights
|
|
# reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
SUBDIRS = profile
|
|
|
|
AM_CPPFLAGS = -DOMPI_PROFILING_DEFINES=0
|
|
|
|
noinst_LTLIBRARIES = libmpi_mpit_common.la
|
|
|
|
if BUILD_MPI_BINDINGS_LAYER
|
|
noinst_LTLIBRARIES += libmpi_mpit.la
|
|
endif
|
|
|
|
headers = mpit-internal.h
|
|
|
|
libmpi_mpit_common_la_SOURCES = mpit_common.c
|
|
|
|
libmpi_mpit_la_SOURCES = init_thread.c finalize.c cvar_get_num.c \
|
|
cvar_get_info.c cvar_read.c cvar_write.c \
|
|
cvar_handle_alloc.c cvar_handle_free.c \
|
|
category_get_num.c category_get_info.c \
|
|
category_get_cvars.c category_get_pvars.c \
|
|
category_get_categories.c category_changed.c \
|
|
pvar_get_info.c pvar_get_num.c pvar_handle_alloc.c \
|
|
pvar_handle_free.c pvar_read.c pvar_readreset.c \
|
|
pvar_reset.c pvar_session_create.c pvar_session_free.c \
|
|
pvar_start.c pvar_stop.c pvar_write.c \
|
|
enum_get_info.c enum_get_item.c cvar_get_index.c \
|
|
pvar_get_index.c category_get_index.c
|
|
|
|
# Conditionally install the header files
|
|
|
|
if WANT_INSTALL_HEADERS
|
|
ompidir = $(ompiincludedir)/$(subdir)
|
|
ompi_HEADERS = $(headers)
|
|
endif
|