While we're moving directories around, move ompi/mpi/runtime ->
ompi/runtime, for consistency and parallel-ness will orte/runtime. Also remove a few useless #includes along the way. This commit was SVN r6317.
Этот коммит содержится в:
родитель
e86ab57d84
Коммит
35c141aef6
@ -1547,6 +1547,7 @@ AC_CONFIG_FILES([
|
||||
ompi/op/Makefile
|
||||
ompi/proc/Makefile
|
||||
ompi/request/Makefile
|
||||
ompi/runtime/Makefile
|
||||
ompi/win/Makefile
|
||||
|
||||
ompi/mpi/Makefile
|
||||
@ -1559,7 +1560,6 @@ AC_CONFIG_FILES([
|
||||
ompi/mpi/f90/fortran_kinds.sh
|
||||
ompi/mpi/f90/fortran_sizes.h
|
||||
ompi/mpi/f90/scripts/Makefile
|
||||
ompi/mpi/runtime/Makefile
|
||||
|
||||
ompi/tools/Makefile
|
||||
ompi/tools/ompi_info/Makefile
|
||||
|
@ -117,6 +117,7 @@ SUBDIRS = \
|
||||
op \
|
||||
proc \
|
||||
request \
|
||||
runtime \
|
||||
win \
|
||||
. \
|
||||
dynamic-mca \
|
||||
@ -146,7 +147,7 @@ libmpi_la_LIBADD = \
|
||||
mca/topo/base/libmca_topo_base.la $(MCA_topo_STATIC_LTLIBS) \
|
||||
mpi/c/libmpi_c.la $(c_mpi_lib) $(c_pmpi_lib) \
|
||||
$(f77_base_lib) $(f77_mpi_lib) $(f77_pmpi_lib) \
|
||||
mpi/runtime/libmpiruntime.la \
|
||||
runtime/libmpiruntime.la \
|
||||
op/libop.la \
|
||||
proc/libproc.la \
|
||||
request/librequest.la
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "mca/coll/base/base.h"
|
||||
#include "mca/topo/base/base.h"
|
||||
#include "mca/ns/base/base.h"
|
||||
#include "mpi/runtime/params.h"
|
||||
#include "ompi/runtime/params.h"
|
||||
#include "communicator/communicator.h"
|
||||
#include "group/group.h"
|
||||
#include "attribute/attribute.h"
|
||||
|
@ -23,7 +23,7 @@
|
||||
#include "mpi.h"
|
||||
#include "class/ompi_object.h"
|
||||
#include "class/ompi_pointer_array.h"
|
||||
#include "mpi/runtime/mpiruntime.h"
|
||||
#include "ompi/runtime/mpiruntime.h"
|
||||
#include "errhandler/errhandler_predefined.h"
|
||||
#include "errhandler/errcode-internal.h"
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
#include "file/file.h"
|
||||
#include "class/ompi_list.h"
|
||||
#include "mpi/runtime/params.h"
|
||||
#include "ompi/runtime/params.h"
|
||||
#include "mca/io/base/base.h"
|
||||
#include "info/info.h"
|
||||
#include "util/output.h"
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
#include "include/constants.h"
|
||||
#include "info/info.h"
|
||||
#include "mpi/runtime/params.h"
|
||||
#include "ompi/runtime/params.h"
|
||||
#include "util/output.h"
|
||||
|
||||
|
||||
|
@ -16,4 +16,4 @@
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
SUBDIRS = runtime c cxx f77 f90
|
||||
SUBDIRS = c cxx f77 f90
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
#include "mpi.h"
|
||||
#include "mpi/c/bindings.h"
|
||||
#include "mpi/runtime/mpiruntime.h"
|
||||
#include "ompi/runtime/mpiruntime.h"
|
||||
#include "errhandler/errhandler.h"
|
||||
|
||||
#if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
#include "mpi.h"
|
||||
#include "mpi/c/bindings.h"
|
||||
#include "mpi/runtime/mpiruntime.h"
|
||||
#include "ompi/runtime/mpiruntime.h"
|
||||
#include "communicator/communicator.h"
|
||||
#include "errhandler/errhandler.h"
|
||||
#include "threads/thread.h"
|
||||
|
@ -20,7 +20,6 @@
|
||||
#include "mpi/f77/constants.h"
|
||||
#include "errhandler/errhandler.h"
|
||||
#include "communicator/communicator.h"
|
||||
#include "mpi/runtime/params.h"
|
||||
|
||||
#if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILE_LAYER
|
||||
#pragma weak PMPI_IPROBE = mpi_iprobe_f
|
||||
|
@ -20,7 +20,6 @@
|
||||
#include "mpi/f77/constants.h"
|
||||
#include "errhandler/errhandler.h"
|
||||
#include "communicator/communicator.h"
|
||||
#include "mpi/runtime/params.h"
|
||||
|
||||
#if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILE_LAYER
|
||||
#pragma weak PMPI_PROBE = mpi_probe_f
|
||||
|
@ -20,7 +20,6 @@
|
||||
#include "mpi/f77/constants.h"
|
||||
#include "errhandler/errhandler.h"
|
||||
#include "communicator/communicator.h"
|
||||
#include "mpi/runtime/params.h"
|
||||
|
||||
#if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILE_LAYER
|
||||
#pragma weak PMPI_RECV = mpi_recv_f
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include "datatype/datatype.h"
|
||||
#include "errhandler/errhandler.h"
|
||||
#include "communicator/communicator.h"
|
||||
#include "mpi/runtime/params.h"
|
||||
#include "ompi/runtime/params.h"
|
||||
|
||||
#if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILE_LAYER
|
||||
#pragma weak PMPI_TYPE_MATCH_SIZE = mpi_type_match_size_f
|
||||
|
@ -23,7 +23,8 @@
|
||||
#include "communicator/communicator.h"
|
||||
#include "util/show_help.h"
|
||||
#include "util/proc_info.h"
|
||||
#include "runtime/runtime.h"
|
||||
#include "ompi/runtime/mpiruntime.h"
|
||||
#include "orte/runtime/runtime.h"
|
||||
#include "mca/ns/ns.h"
|
||||
#include "mca/rmgr/rmgr.h"
|
||||
|
@ -32,8 +32,9 @@
|
||||
#include "info/info.h"
|
||||
#include "util/proc_info.h"
|
||||
#include "util/sys_info.h"
|
||||
#include "runtime/runtime.h"
|
||||
#include "runtime/ompi_progress.h"
|
||||
#include "ompi/runtime/mpiruntime.h"
|
||||
#include "orte/runtime/runtime.h"
|
||||
#include "opal/runtime/ompi_progress.h"
|
||||
#include "attribute/attribute.h"
|
||||
|
||||
#include "mca/base/base.h"
|
@ -17,10 +17,10 @@
|
||||
#include "ompi_config.h"
|
||||
|
||||
#include "include/constants.h"
|
||||
#include "mpi/runtime/mpiruntime.h"
|
||||
#include "mpi/runtime/params.h"
|
||||
#include "runtime/runtime.h"
|
||||
#include "runtime/ompi_progress.h"
|
||||
#include "ompi/runtime/mpiruntime.h"
|
||||
#include "ompi/runtime/params.h"
|
||||
#include "orte/runtime/runtime.h"
|
||||
#include "opal/runtime/ompi_progress.h"
|
||||
#include "util/sys_info.h"
|
||||
#include "util/proc_info.h"
|
||||
#include "util/session_dir.h"
|
||||
@ -60,9 +60,8 @@
|
||||
#include "mca/soh/base/base.h"
|
||||
#include "mca/errmgr/errmgr.h"
|
||||
|
||||
#include "runtime/opal.h"
|
||||
#include "runtime/runtime.h"
|
||||
#include "event/event.h"
|
||||
#include "opal/runtime/opal.h"
|
||||
#include "opal/event/event.h"
|
||||
|
||||
/*
|
||||
* Global variables and symbols for the MPI layer
|
@ -17,8 +17,8 @@
|
||||
#include "ompi_config.h"
|
||||
|
||||
#include "include/constants.h"
|
||||
#include "mpi/runtime/mpiruntime.h"
|
||||
#include "mpi/runtime/params.h"
|
||||
#include "ompi/runtime/mpiruntime.h"
|
||||
#include "ompi/runtime/params.h"
|
||||
#include "util/output.h"
|
||||
#include "mca/base/mca_base_param.h"
|
||||
|
@ -22,8 +22,8 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "mpi/runtime/params.h"
|
||||
#include "runtime/runtime.h"
|
||||
#include "ompi/runtime/params.h"
|
||||
#include "orte/runtime/runtime.h"
|
||||
#include "tools/ompi_info/ompi_info.h"
|
||||
|
||||
#include "mca/base/base.h"
|
||||
|
@ -35,10 +35,6 @@
|
||||
#include "util/univ_info.h"
|
||||
#include "mca/ns/ns.h"
|
||||
|
||||
/* For backwards compatibility. If you only need MPI stuff, please include
|
||||
mpiruntime/mpiruntime.h directly */
|
||||
#include "mpi/runtime/mpiruntime.h"
|
||||
|
||||
/* constants for spawn constraints */
|
||||
|
||||
/** Spawn constraint - require multi-cell support. The selected spawn
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user