2016-11-22 15:03:20 -08:00
|
|
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
2017-01-27 02:27:13 -05:00
|
|
|
* Copyright (c) 2004-2017 The University of Tennessee and The University
|
2016-11-22 15:03:20 -08:00
|
|
|
* 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) 2007-2015 Los Alamos National Security, LLC. All rights
|
|
|
|
* reserved.
|
|
|
|
* Copyright (c) 2006-2008 University of Houston. All rights reserved.
|
|
|
|
* Copyright (c) 2010 Oracle and/or its affiliates. All rights reserved.
|
|
|
|
* Copyright (c) 2012-2013 Sandia National Laboratories. All rights reserved.
|
|
|
|
* Copyright (c) 2015-2016 Research Organization for Information Science
|
|
|
|
* and Technology (RIST). All rights reserved.
|
fixes for Dave's get/set info code
The expected sequence of events for processing info during object creation
is that if there's an incoming info arg, it is opal_info_dup()ed into the obj
at obj->s_info first. Then interested components register callbacks for
keys they want to know about using opal_infosubscribe_infosubscribe().
Inside info_subscribe_subscribe() the specified callback() is called with
whatever matching k/v is in the object's info, or with the default. The
return string from the callback goes into the new k/v stored in info, and
the input k/v is saved as __IN_<key>/<val>. It's saved the same way
whether the input came from info or whether it was a default. A null return
from the callback indicates an ignored key/val, and no k/v is stored for
it, but an __IN_<key>/<val> is still kept so we still have access to the
original.
At MPI_*_set_info() time, opal_infosubscribe_change_info() is used. That
function calls the registered callbacks for each item in the provided info.
If the callback returns non-null, the info is updated with that k/v, or if
the callback returns null, that key is deleted from info. An __IN_<key>/<val>
is saved either way, and overwrites any previously saved value.
When MPI_*_get_info() is called, opal_info_dup_mpistandard() is used, which
allows relatively easy changes in interpretation of the standard, by looking
at both the <key>/<val> and __IN_<key>/<val> in info. Right now it does
1. includes system extras, eg k/v defaults not expliclty set by the user
2. omits ignored keys
3. shows input values, not callback modifications, eg not the internal values
Currently the callbacks are doing things like
return some_condition ? "true" : "false"
that is, returning static strings that are not to be freed. If the return
strings start becoming more dynamic in the future I don't see how unallocated
strings could support that, so I'd propose a change for the future that
the callback()s registered with info_subscribe_subscribe() do a strdup on
their return, and we change the callers of callback() to free the strings
it returns (there are only two callers).
Rough outline of the smaller changes spread over the less central files:
comm.c
initialize comm->super.s_info to NULL
copy into comm->super.s_info in comm creation calls that provide info
OBJ_RELEASE comm->super.s_info at free time
comm_init.c
initialize comm->super.s_info to NULL
file.c
copy into file->super.s_info if file creation provides info
OBJ_RELEASE file->super.s_info at free time
win.c
copy into win->super.s_info if win creation provides info
OBJ_RELEASE win->super.s_info at free time
comm_get_info.c
file_get_info.c
win_get_info.c
change_info() if there's no info attached (shouldn't happen if callbacks
are registered)
copy the info for the user
The other category of change is generally addressing compiler warnings where
ompi_info_t and opal_info_t were being used a little too interchangably. An
ompi_info_t* contains an opal_info_t*, at &(ompi_info->super)
Also this commit updates the copyrights.
Signed-off-by: Mark Allen <markalle@us.ibm.com>
2017-01-30 20:29:50 -05:00
|
|
|
* Copyright (c) 2016-2017 IBM Corporation. All rights reserved.
|
2016-11-22 15:03:20 -08:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
2016-12-22 10:14:34 -07:00
|
|
|
#include "opal/util/show_help.h"
|
2016-11-22 15:03:20 -08:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "osc_pt2pt.h"
|
|
|
|
#include "osc_pt2pt_frag.h"
|
|
|
|
#include "osc_pt2pt_request.h"
|
|
|
|
#include "osc_pt2pt_data_move.h"
|
|
|
|
|
|
|
|
#include "ompi/mca/osc/base/osc_base_obj_convert.h"
|
|
|
|
|
|
|
|
static int component_register(void);
|
|
|
|
static int component_init(bool enable_progress_threads, bool enable_mpi_threads);
|
|
|
|
static int component_finalize(void);
|
|
|
|
static int component_query(struct ompi_win_t *win, void **base, size_t size, int disp_unit,
|
Major structural changes to data types: .super infosubscriber
ompi_communicator_t, ompi_win_t, ompi_file_t all have a super class of type opal_infosubscriber_t instead of a base/super type of opal_object_t (in previous code comm used c_base, but file used super). It may be a bit bold to say that being a subscriber of MPI_Info is the foundational piece that ties these three things together, but if you object, then I would prefer to turn infosubscriber into a more general name that encompasses other common features rather than create a different super class. The key here is that we want to be able to pass comm, win and file objects as if they were opal_infosubscriber_t, so that one routine can heandle all 3 types of objects being passed to it.
MPI_INFO_NULL is still an ompi_predefined_info_t type since an MPI_Info is part of ompi but the internal details of the underlying information concept is part of opal.
An ompi_info_t type still exists for exposure to the user, but it is simply a wrapper for the opal object.
Routines such as ompi_info_dup, etc have all been moved to opal_info_dup and related to the opal directory.
Fortran to C translation tables are only used for MPI_Info that is exposed to the application and are therefore part of the ompi_info_t and not the opal_info_t
The data structure changes are primarily in the following files:
communicator/communicator.h
ompi/info/info.h
ompi/win/win.h
ompi/file/file.h
The following new files were created:
opal/util/info.h
opal/util/info.c
opal/util/info_subscriber.h
opal/util/info_subscriber.c
This infosubscriber concept is that communicators, files and windows can have subscribers that subscribe to any changes in the info associated with the comm/file/window. When xxx_set_info is called, the new info is presented to each subscriber who can modify the info in any way they want. The new value is presented to the next subscriber and so on until all subscribers have had a chance to modify the value. Therefore, the order of subscribers can make a difference but we hope that there is generally only one subscriber that cares or modifies any given key/value pair. The final info is then stored and returned by a call to xxx_get_info.
The new model can be seen in the following files:
ompi/mpi/c/comm_get_info.c
ompi/mpi/c/comm_set_info.c
ompi/mpi/c/file_get_info.c
ompi/mpi/c/file_set_info.c
ompi/mpi/c/win_get_info.c
ompi/mpi/c/win_set_info.c
The current subscribers where changed as follows:
mca/io/ompio/io_ompio_file_open.c
mca/io/ompio/io_ompio_module.c
mca/osc/rmda/osc_rdma_component.c (This one actually subscribes to "no_locks")
mca/osc/sm/osc_sm_component.c (This one actually subscribes to "blocking_fence" and "alloc_shared_contig")
Signed-off-by: Mark Allen <markalle@us.ibm.com>
Conflicts:
AUTHORS
ompi/communicator/comm.c
ompi/debuggers/ompi_mpihandles_dll.c
ompi/file/file.c
ompi/file/file.h
ompi/info/info.c
ompi/mca/io/ompio/io_ompio.h
ompi/mca/io/ompio/io_ompio_file_open.c
ompi/mca/io/ompio/io_ompio_file_set_view.c
ompi/mca/osc/pt2pt/osc_pt2pt.h
ompi/mca/sharedfp/addproc/sharedfp_addproc.h
ompi/mca/sharedfp/addproc/sharedfp_addproc_file_open.c
ompi/mca/topo/treematch/topo_treematch_dist_graph_create.c
ompi/mpi/c/lookup_name.c
ompi/mpi/c/publish_name.c
ompi/mpi/c/unpublish_name.c
opal/mca/mpool/base/mpool_base_alloc.c
opal/util/Makefile.am
2016-01-22 12:02:01 -05:00
|
|
|
struct ompi_communicator_t *comm, struct opal_info_t *info,
|
2016-11-22 15:03:20 -08:00
|
|
|
int flavor);
|
|
|
|
static int component_select(struct ompi_win_t *win, void **base, size_t size, int disp_unit,
|
Major structural changes to data types: .super infosubscriber
ompi_communicator_t, ompi_win_t, ompi_file_t all have a super class of type opal_infosubscriber_t instead of a base/super type of opal_object_t (in previous code comm used c_base, but file used super). It may be a bit bold to say that being a subscriber of MPI_Info is the foundational piece that ties these three things together, but if you object, then I would prefer to turn infosubscriber into a more general name that encompasses other common features rather than create a different super class. The key here is that we want to be able to pass comm, win and file objects as if they were opal_infosubscriber_t, so that one routine can heandle all 3 types of objects being passed to it.
MPI_INFO_NULL is still an ompi_predefined_info_t type since an MPI_Info is part of ompi but the internal details of the underlying information concept is part of opal.
An ompi_info_t type still exists for exposure to the user, but it is simply a wrapper for the opal object.
Routines such as ompi_info_dup, etc have all been moved to opal_info_dup and related to the opal directory.
Fortran to C translation tables are only used for MPI_Info that is exposed to the application and are therefore part of the ompi_info_t and not the opal_info_t
The data structure changes are primarily in the following files:
communicator/communicator.h
ompi/info/info.h
ompi/win/win.h
ompi/file/file.h
The following new files were created:
opal/util/info.h
opal/util/info.c
opal/util/info_subscriber.h
opal/util/info_subscriber.c
This infosubscriber concept is that communicators, files and windows can have subscribers that subscribe to any changes in the info associated with the comm/file/window. When xxx_set_info is called, the new info is presented to each subscriber who can modify the info in any way they want. The new value is presented to the next subscriber and so on until all subscribers have had a chance to modify the value. Therefore, the order of subscribers can make a difference but we hope that there is generally only one subscriber that cares or modifies any given key/value pair. The final info is then stored and returned by a call to xxx_get_info.
The new model can be seen in the following files:
ompi/mpi/c/comm_get_info.c
ompi/mpi/c/comm_set_info.c
ompi/mpi/c/file_get_info.c
ompi/mpi/c/file_set_info.c
ompi/mpi/c/win_get_info.c
ompi/mpi/c/win_set_info.c
The current subscribers where changed as follows:
mca/io/ompio/io_ompio_file_open.c
mca/io/ompio/io_ompio_module.c
mca/osc/rmda/osc_rdma_component.c (This one actually subscribes to "no_locks")
mca/osc/sm/osc_sm_component.c (This one actually subscribes to "blocking_fence" and "alloc_shared_contig")
Signed-off-by: Mark Allen <markalle@us.ibm.com>
Conflicts:
AUTHORS
ompi/communicator/comm.c
ompi/debuggers/ompi_mpihandles_dll.c
ompi/file/file.c
ompi/file/file.h
ompi/info/info.c
ompi/mca/io/ompio/io_ompio.h
ompi/mca/io/ompio/io_ompio_file_open.c
ompi/mca/io/ompio/io_ompio_file_set_view.c
ompi/mca/osc/pt2pt/osc_pt2pt.h
ompi/mca/sharedfp/addproc/sharedfp_addproc.h
ompi/mca/sharedfp/addproc/sharedfp_addproc_file_open.c
ompi/mca/topo/treematch/topo_treematch_dist_graph_create.c
ompi/mpi/c/lookup_name.c
ompi/mpi/c/publish_name.c
ompi/mpi/c/unpublish_name.c
opal/mca/mpool/base/mpool_base_alloc.c
opal/util/Makefile.am
2016-01-22 12:02:01 -05:00
|
|
|
struct ompi_communicator_t *comm, struct opal_info_t *info,
|
2016-11-22 15:03:20 -08:00
|
|
|
int flavor, int *model);
|
|
|
|
|
|
|
|
ompi_osc_pt2pt_component_t mca_osc_pt2pt_component = {
|
|
|
|
{ /* ompi_osc_base_component_t */
|
|
|
|
.osc_version = {
|
|
|
|
OMPI_OSC_BASE_VERSION_3_0_0,
|
|
|
|
.mca_component_name = "pt2pt",
|
|
|
|
MCA_BASE_MAKE_VERSION(component, OMPI_MAJOR_VERSION, OMPI_MINOR_VERSION,
|
|
|
|
OMPI_RELEASE_VERSION),
|
|
|
|
.mca_register_component_params = component_register,
|
|
|
|
},
|
|
|
|
.osc_data = {
|
|
|
|
/* The component is not checkpoint ready */
|
|
|
|
MCA_BASE_METADATA_PARAM_NONE
|
|
|
|
},
|
|
|
|
.osc_init = component_init,
|
|
|
|
.osc_query = component_query,
|
|
|
|
.osc_select = component_select,
|
|
|
|
.osc_finalize = component_finalize,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
ompi_osc_pt2pt_module_t ompi_osc_pt2pt_module_template = {
|
|
|
|
{
|
|
|
|
NULL, /* shared_query */
|
|
|
|
|
|
|
|
ompi_osc_pt2pt_attach,
|
|
|
|
ompi_osc_pt2pt_detach,
|
|
|
|
ompi_osc_pt2pt_free,
|
|
|
|
|
|
|
|
ompi_osc_pt2pt_put,
|
|
|
|
ompi_osc_pt2pt_get,
|
|
|
|
ompi_osc_pt2pt_accumulate,
|
|
|
|
ompi_osc_pt2pt_compare_and_swap,
|
|
|
|
ompi_osc_pt2pt_fetch_and_op,
|
|
|
|
ompi_osc_pt2pt_get_accumulate,
|
|
|
|
|
|
|
|
ompi_osc_pt2pt_rput,
|
|
|
|
ompi_osc_pt2pt_rget,
|
|
|
|
ompi_osc_pt2pt_raccumulate,
|
|
|
|
ompi_osc_pt2pt_rget_accumulate,
|
|
|
|
|
|
|
|
ompi_osc_pt2pt_fence,
|
|
|
|
|
|
|
|
ompi_osc_pt2pt_start,
|
|
|
|
ompi_osc_pt2pt_complete,
|
|
|
|
ompi_osc_pt2pt_post,
|
|
|
|
ompi_osc_pt2pt_wait,
|
|
|
|
ompi_osc_pt2pt_test,
|
|
|
|
|
|
|
|
ompi_osc_pt2pt_lock,
|
|
|
|
ompi_osc_pt2pt_unlock,
|
|
|
|
ompi_osc_pt2pt_lock_all,
|
|
|
|
ompi_osc_pt2pt_unlock_all,
|
|
|
|
|
|
|
|
ompi_osc_pt2pt_sync,
|
|
|
|
ompi_osc_pt2pt_flush,
|
|
|
|
ompi_osc_pt2pt_flush_all,
|
|
|
|
ompi_osc_pt2pt_flush_local,
|
|
|
|
ompi_osc_pt2pt_flush_local_all,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
bool ompi_osc_pt2pt_no_locks = false;
|
2016-12-22 10:14:34 -07:00
|
|
|
static bool using_thread_multiple = false;
|
2016-11-22 15:03:20 -08:00
|
|
|
|
|
|
|
/* look up parameters for configuring this window. The code first
|
|
|
|
looks in the info structure passed by the user, then through mca
|
|
|
|
parameters. */
|
Major structural changes to data types: .super infosubscriber
ompi_communicator_t, ompi_win_t, ompi_file_t all have a super class of type opal_infosubscriber_t instead of a base/super type of opal_object_t (in previous code comm used c_base, but file used super). It may be a bit bold to say that being a subscriber of MPI_Info is the foundational piece that ties these three things together, but if you object, then I would prefer to turn infosubscriber into a more general name that encompasses other common features rather than create a different super class. The key here is that we want to be able to pass comm, win and file objects as if they were opal_infosubscriber_t, so that one routine can heandle all 3 types of objects being passed to it.
MPI_INFO_NULL is still an ompi_predefined_info_t type since an MPI_Info is part of ompi but the internal details of the underlying information concept is part of opal.
An ompi_info_t type still exists for exposure to the user, but it is simply a wrapper for the opal object.
Routines such as ompi_info_dup, etc have all been moved to opal_info_dup and related to the opal directory.
Fortran to C translation tables are only used for MPI_Info that is exposed to the application and are therefore part of the ompi_info_t and not the opal_info_t
The data structure changes are primarily in the following files:
communicator/communicator.h
ompi/info/info.h
ompi/win/win.h
ompi/file/file.h
The following new files were created:
opal/util/info.h
opal/util/info.c
opal/util/info_subscriber.h
opal/util/info_subscriber.c
This infosubscriber concept is that communicators, files and windows can have subscribers that subscribe to any changes in the info associated with the comm/file/window. When xxx_set_info is called, the new info is presented to each subscriber who can modify the info in any way they want. The new value is presented to the next subscriber and so on until all subscribers have had a chance to modify the value. Therefore, the order of subscribers can make a difference but we hope that there is generally only one subscriber that cares or modifies any given key/value pair. The final info is then stored and returned by a call to xxx_get_info.
The new model can be seen in the following files:
ompi/mpi/c/comm_get_info.c
ompi/mpi/c/comm_set_info.c
ompi/mpi/c/file_get_info.c
ompi/mpi/c/file_set_info.c
ompi/mpi/c/win_get_info.c
ompi/mpi/c/win_set_info.c
The current subscribers where changed as follows:
mca/io/ompio/io_ompio_file_open.c
mca/io/ompio/io_ompio_module.c
mca/osc/rmda/osc_rdma_component.c (This one actually subscribes to "no_locks")
mca/osc/sm/osc_sm_component.c (This one actually subscribes to "blocking_fence" and "alloc_shared_contig")
Signed-off-by: Mark Allen <markalle@us.ibm.com>
Conflicts:
AUTHORS
ompi/communicator/comm.c
ompi/debuggers/ompi_mpihandles_dll.c
ompi/file/file.c
ompi/file/file.h
ompi/info/info.c
ompi/mca/io/ompio/io_ompio.h
ompi/mca/io/ompio/io_ompio_file_open.c
ompi/mca/io/ompio/io_ompio_file_set_view.c
ompi/mca/osc/pt2pt/osc_pt2pt.h
ompi/mca/sharedfp/addproc/sharedfp_addproc.h
ompi/mca/sharedfp/addproc/sharedfp_addproc_file_open.c
ompi/mca/topo/treematch/topo_treematch_dist_graph_create.c
ompi/mpi/c/lookup_name.c
ompi/mpi/c/publish_name.c
ompi/mpi/c/unpublish_name.c
opal/mca/mpool/base/mpool_base_alloc.c
opal/util/Makefile.am
2016-01-22 12:02:01 -05:00
|
|
|
static bool check_config_value_bool(char *key, opal_info_t *info, bool result)
|
2016-11-22 15:03:20 -08:00
|
|
|
{
|
|
|
|
int flag;
|
|
|
|
|
Major structural changes to data types: .super infosubscriber
ompi_communicator_t, ompi_win_t, ompi_file_t all have a super class of type opal_infosubscriber_t instead of a base/super type of opal_object_t (in previous code comm used c_base, but file used super). It may be a bit bold to say that being a subscriber of MPI_Info is the foundational piece that ties these three things together, but if you object, then I would prefer to turn infosubscriber into a more general name that encompasses other common features rather than create a different super class. The key here is that we want to be able to pass comm, win and file objects as if they were opal_infosubscriber_t, so that one routine can heandle all 3 types of objects being passed to it.
MPI_INFO_NULL is still an ompi_predefined_info_t type since an MPI_Info is part of ompi but the internal details of the underlying information concept is part of opal.
An ompi_info_t type still exists for exposure to the user, but it is simply a wrapper for the opal object.
Routines such as ompi_info_dup, etc have all been moved to opal_info_dup and related to the opal directory.
Fortran to C translation tables are only used for MPI_Info that is exposed to the application and are therefore part of the ompi_info_t and not the opal_info_t
The data structure changes are primarily in the following files:
communicator/communicator.h
ompi/info/info.h
ompi/win/win.h
ompi/file/file.h
The following new files were created:
opal/util/info.h
opal/util/info.c
opal/util/info_subscriber.h
opal/util/info_subscriber.c
This infosubscriber concept is that communicators, files and windows can have subscribers that subscribe to any changes in the info associated with the comm/file/window. When xxx_set_info is called, the new info is presented to each subscriber who can modify the info in any way they want. The new value is presented to the next subscriber and so on until all subscribers have had a chance to modify the value. Therefore, the order of subscribers can make a difference but we hope that there is generally only one subscriber that cares or modifies any given key/value pair. The final info is then stored and returned by a call to xxx_get_info.
The new model can be seen in the following files:
ompi/mpi/c/comm_get_info.c
ompi/mpi/c/comm_set_info.c
ompi/mpi/c/file_get_info.c
ompi/mpi/c/file_set_info.c
ompi/mpi/c/win_get_info.c
ompi/mpi/c/win_set_info.c
The current subscribers where changed as follows:
mca/io/ompio/io_ompio_file_open.c
mca/io/ompio/io_ompio_module.c
mca/osc/rmda/osc_rdma_component.c (This one actually subscribes to "no_locks")
mca/osc/sm/osc_sm_component.c (This one actually subscribes to "blocking_fence" and "alloc_shared_contig")
Signed-off-by: Mark Allen <markalle@us.ibm.com>
Conflicts:
AUTHORS
ompi/communicator/comm.c
ompi/debuggers/ompi_mpihandles_dll.c
ompi/file/file.c
ompi/file/file.h
ompi/info/info.c
ompi/mca/io/ompio/io_ompio.h
ompi/mca/io/ompio/io_ompio_file_open.c
ompi/mca/io/ompio/io_ompio_file_set_view.c
ompi/mca/osc/pt2pt/osc_pt2pt.h
ompi/mca/sharedfp/addproc/sharedfp_addproc.h
ompi/mca/sharedfp/addproc/sharedfp_addproc_file_open.c
ompi/mca/topo/treematch/topo_treematch_dist_graph_create.c
ompi/mpi/c/lookup_name.c
ompi/mpi/c/publish_name.c
ompi/mpi/c/unpublish_name.c
opal/mca/mpool/base/mpool_base_alloc.c
opal/util/Makefile.am
2016-01-22 12:02:01 -05:00
|
|
|
(void) opal_info_get_bool (info, key, &result, &flag);
|
2016-11-22 15:03:20 -08:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int component_register (void)
|
|
|
|
{
|
|
|
|
ompi_osc_pt2pt_no_locks = false;
|
|
|
|
(void) mca_base_component_var_register(&mca_osc_pt2pt_component.super.osc_version,
|
|
|
|
"no_locks",
|
|
|
|
"Enable optimizations available only if MPI_LOCK is "
|
|
|
|
"not used. "
|
|
|
|
"Info key of same name overrides this value.",
|
|
|
|
MCA_BASE_VAR_TYPE_BOOL, NULL, 0, 0,
|
|
|
|
OPAL_INFO_LVL_9,
|
|
|
|
MCA_BASE_VAR_SCOPE_READONLY,
|
|
|
|
&ompi_osc_pt2pt_no_locks);
|
|
|
|
|
|
|
|
mca_osc_pt2pt_component.buffer_size = 8192;
|
|
|
|
(void) mca_base_component_var_register (&mca_osc_pt2pt_component.super.osc_version, "buffer_size",
|
|
|
|
"Data transfers smaller than this limit may be coalesced before "
|
|
|
|
"being transferred (default: 8k)", MCA_BASE_VAR_TYPE_UNSIGNED_INT,
|
|
|
|
NULL, 0, 0, OPAL_INFO_LVL_9, MCA_BASE_VAR_SCOPE_READONLY,
|
|
|
|
&mca_osc_pt2pt_component.buffer_size);
|
|
|
|
|
|
|
|
mca_osc_pt2pt_component.receive_count = 4;
|
|
|
|
(void) mca_base_component_var_register (&mca_osc_pt2pt_component.super.osc_version, "receive_count",
|
|
|
|
"Number of receives to post for each window for incoming fragments "
|
|
|
|
"(default: 4)", MCA_BASE_VAR_TYPE_UNSIGNED_INT, NULL, 0, 0, OPAL_INFO_LVL_4,
|
|
|
|
MCA_BASE_VAR_SCOPE_READONLY, &mca_osc_pt2pt_component.receive_count);
|
|
|
|
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int component_progress (void)
|
|
|
|
{
|
|
|
|
int pending_count = opal_list_get_size (&mca_osc_pt2pt_component.pending_operations);
|
|
|
|
int recv_count = opal_list_get_size (&mca_osc_pt2pt_component.pending_receives);
|
|
|
|
ompi_osc_pt2pt_pending_t *pending, *next;
|
|
|
|
|
|
|
|
if (recv_count) {
|
|
|
|
for (int i = 0 ; i < recv_count ; ++i) {
|
|
|
|
OPAL_THREAD_LOCK(&mca_osc_pt2pt_component.pending_receives_lock);
|
|
|
|
ompi_osc_pt2pt_receive_t *recv = (ompi_osc_pt2pt_receive_t *) opal_list_remove_first (&mca_osc_pt2pt_component.pending_receives);
|
|
|
|
OPAL_THREAD_UNLOCK(&mca_osc_pt2pt_component.pending_receives_lock);
|
|
|
|
if (NULL == recv) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
(void) ompi_osc_pt2pt_process_receive (recv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* process one incoming request */
|
|
|
|
if (pending_count) {
|
|
|
|
OPAL_THREAD_LOCK(&mca_osc_pt2pt_component.pending_operations_lock);
|
|
|
|
OPAL_LIST_FOREACH_SAFE(pending, next, &mca_osc_pt2pt_component.pending_operations, ompi_osc_pt2pt_pending_t) {
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
switch (pending->header.base.type) {
|
|
|
|
case OMPI_OSC_PT2PT_HDR_TYPE_FLUSH_REQ:
|
|
|
|
ret = ompi_osc_pt2pt_process_flush (pending->module, pending->source,
|
|
|
|
&pending->header.flush);
|
|
|
|
break;
|
|
|
|
case OMPI_OSC_PT2PT_HDR_TYPE_UNLOCK_REQ:
|
|
|
|
ret = ompi_osc_pt2pt_process_unlock (pending->module, pending->source,
|
|
|
|
&pending->header.unlock);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* shouldn't happen */
|
|
|
|
assert (0);
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (OMPI_SUCCESS == ret) {
|
|
|
|
opal_list_remove_item (&mca_osc_pt2pt_component.pending_operations, &pending->super);
|
|
|
|
OBJ_RELEASE(pending);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
OPAL_THREAD_UNLOCK(&mca_osc_pt2pt_component.pending_operations_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
component_init(bool enable_progress_threads,
|
|
|
|
bool enable_mpi_threads)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2016-12-22 10:14:34 -07:00
|
|
|
if (enable_mpi_threads) {
|
|
|
|
using_thread_multiple = true;
|
|
|
|
}
|
|
|
|
|
2016-11-22 15:03:20 -08:00
|
|
|
OBJ_CONSTRUCT(&mca_osc_pt2pt_component.lock, opal_mutex_t);
|
|
|
|
OBJ_CONSTRUCT(&mca_osc_pt2pt_component.pending_operations, opal_list_t);
|
|
|
|
OBJ_CONSTRUCT(&mca_osc_pt2pt_component.pending_operations_lock, opal_mutex_t);
|
|
|
|
OBJ_CONSTRUCT(&mca_osc_pt2pt_component.pending_receives, opal_list_t);
|
|
|
|
OBJ_CONSTRUCT(&mca_osc_pt2pt_component.pending_receives_lock, opal_mutex_t);
|
|
|
|
|
|
|
|
OBJ_CONSTRUCT(&mca_osc_pt2pt_component.modules,
|
|
|
|
opal_hash_table_t);
|
|
|
|
opal_hash_table_init(&mca_osc_pt2pt_component.modules, 2);
|
|
|
|
|
|
|
|
mca_osc_pt2pt_component.progress_enable = false;
|
|
|
|
mca_osc_pt2pt_component.module_count = 0;
|
|
|
|
|
|
|
|
OBJ_CONSTRUCT(&mca_osc_pt2pt_component.frags, opal_free_list_t);
|
|
|
|
ret = opal_free_list_init (&mca_osc_pt2pt_component.frags,
|
|
|
|
sizeof(ompi_osc_pt2pt_frag_t), 8,
|
|
|
|
OBJ_CLASS(ompi_osc_pt2pt_frag_t),
|
|
|
|
mca_osc_pt2pt_component.buffer_size +
|
|
|
|
sizeof (ompi_osc_pt2pt_frag_header_t),
|
|
|
|
8, 1, -1, 1, NULL, 0, NULL, NULL, NULL);
|
|
|
|
if (OMPI_SUCCESS != ret) {
|
|
|
|
opal_output_verbose(1, ompi_osc_base_framework.framework_output,
|
|
|
|
"%s:%d: opal_free_list_init failed: %d",
|
|
|
|
__FILE__, __LINE__, ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
OBJ_CONSTRUCT(&mca_osc_pt2pt_component.requests, opal_free_list_t);
|
|
|
|
ret = opal_free_list_init (&mca_osc_pt2pt_component.requests,
|
|
|
|
sizeof(ompi_osc_pt2pt_request_t), 8,
|
|
|
|
OBJ_CLASS(ompi_osc_pt2pt_request_t),
|
|
|
|
0, 0, 0, -1, 32, NULL, 0, NULL, NULL, NULL);
|
|
|
|
if (OMPI_SUCCESS != ret) {
|
|
|
|
opal_output_verbose(1, ompi_osc_base_framework.framework_output,
|
|
|
|
"%s:%d: opal_free_list_init failed: %d\n",
|
|
|
|
__FILE__, __LINE__, ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
component_finalize(void)
|
|
|
|
{
|
|
|
|
size_t num_modules;
|
|
|
|
|
|
|
|
if (mca_osc_pt2pt_component.progress_enable) {
|
|
|
|
opal_progress_unregister (component_progress);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (0 !=
|
|
|
|
(num_modules = opal_hash_table_get_size(&mca_osc_pt2pt_component.modules))) {
|
|
|
|
opal_output(ompi_osc_base_framework.framework_output,
|
|
|
|
"WARNING: There were %d Windows created but not freed.",
|
|
|
|
(int) num_modules);
|
|
|
|
}
|
|
|
|
|
|
|
|
OBJ_DESTRUCT(&mca_osc_pt2pt_component.frags);
|
|
|
|
OBJ_DESTRUCT(&mca_osc_pt2pt_component.modules);
|
|
|
|
OBJ_DESTRUCT(&mca_osc_pt2pt_component.lock);
|
|
|
|
OBJ_DESTRUCT(&mca_osc_pt2pt_component.requests);
|
|
|
|
OBJ_DESTRUCT(&mca_osc_pt2pt_component.pending_operations);
|
|
|
|
OBJ_DESTRUCT(&mca_osc_pt2pt_component.pending_operations_lock);
|
|
|
|
OBJ_DESTRUCT(&mca_osc_pt2pt_component.pending_receives);
|
|
|
|
OBJ_DESTRUCT(&mca_osc_pt2pt_component.pending_receives_lock);
|
|
|
|
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
component_query(struct ompi_win_t *win, void **base, size_t size, int disp_unit,
|
Major structural changes to data types: .super infosubscriber
ompi_communicator_t, ompi_win_t, ompi_file_t all have a super class of type opal_infosubscriber_t instead of a base/super type of opal_object_t (in previous code comm used c_base, but file used super). It may be a bit bold to say that being a subscriber of MPI_Info is the foundational piece that ties these three things together, but if you object, then I would prefer to turn infosubscriber into a more general name that encompasses other common features rather than create a different super class. The key here is that we want to be able to pass comm, win and file objects as if they were opal_infosubscriber_t, so that one routine can heandle all 3 types of objects being passed to it.
MPI_INFO_NULL is still an ompi_predefined_info_t type since an MPI_Info is part of ompi but the internal details of the underlying information concept is part of opal.
An ompi_info_t type still exists for exposure to the user, but it is simply a wrapper for the opal object.
Routines such as ompi_info_dup, etc have all been moved to opal_info_dup and related to the opal directory.
Fortran to C translation tables are only used for MPI_Info that is exposed to the application and are therefore part of the ompi_info_t and not the opal_info_t
The data structure changes are primarily in the following files:
communicator/communicator.h
ompi/info/info.h
ompi/win/win.h
ompi/file/file.h
The following new files were created:
opal/util/info.h
opal/util/info.c
opal/util/info_subscriber.h
opal/util/info_subscriber.c
This infosubscriber concept is that communicators, files and windows can have subscribers that subscribe to any changes in the info associated with the comm/file/window. When xxx_set_info is called, the new info is presented to each subscriber who can modify the info in any way they want. The new value is presented to the next subscriber and so on until all subscribers have had a chance to modify the value. Therefore, the order of subscribers can make a difference but we hope that there is generally only one subscriber that cares or modifies any given key/value pair. The final info is then stored and returned by a call to xxx_get_info.
The new model can be seen in the following files:
ompi/mpi/c/comm_get_info.c
ompi/mpi/c/comm_set_info.c
ompi/mpi/c/file_get_info.c
ompi/mpi/c/file_set_info.c
ompi/mpi/c/win_get_info.c
ompi/mpi/c/win_set_info.c
The current subscribers where changed as follows:
mca/io/ompio/io_ompio_file_open.c
mca/io/ompio/io_ompio_module.c
mca/osc/rmda/osc_rdma_component.c (This one actually subscribes to "no_locks")
mca/osc/sm/osc_sm_component.c (This one actually subscribes to "blocking_fence" and "alloc_shared_contig")
Signed-off-by: Mark Allen <markalle@us.ibm.com>
Conflicts:
AUTHORS
ompi/communicator/comm.c
ompi/debuggers/ompi_mpihandles_dll.c
ompi/file/file.c
ompi/file/file.h
ompi/info/info.c
ompi/mca/io/ompio/io_ompio.h
ompi/mca/io/ompio/io_ompio_file_open.c
ompi/mca/io/ompio/io_ompio_file_set_view.c
ompi/mca/osc/pt2pt/osc_pt2pt.h
ompi/mca/sharedfp/addproc/sharedfp_addproc.h
ompi/mca/sharedfp/addproc/sharedfp_addproc_file_open.c
ompi/mca/topo/treematch/topo_treematch_dist_graph_create.c
ompi/mpi/c/lookup_name.c
ompi/mpi/c/publish_name.c
ompi/mpi/c/unpublish_name.c
opal/mca/mpool/base/mpool_base_alloc.c
opal/util/Makefile.am
2016-01-22 12:02:01 -05:00
|
|
|
struct ompi_communicator_t *comm, struct opal_info_t *info,
|
2016-11-22 15:03:20 -08:00
|
|
|
int flavor)
|
|
|
|
{
|
|
|
|
if (MPI_WIN_FLAVOR_SHARED == flavor) return -1;
|
|
|
|
|
|
|
|
return 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
component_select(struct ompi_win_t *win, void **base, size_t size, int disp_unit,
|
Major structural changes to data types: .super infosubscriber
ompi_communicator_t, ompi_win_t, ompi_file_t all have a super class of type opal_infosubscriber_t instead of a base/super type of opal_object_t (in previous code comm used c_base, but file used super). It may be a bit bold to say that being a subscriber of MPI_Info is the foundational piece that ties these three things together, but if you object, then I would prefer to turn infosubscriber into a more general name that encompasses other common features rather than create a different super class. The key here is that we want to be able to pass comm, win and file objects as if they were opal_infosubscriber_t, so that one routine can heandle all 3 types of objects being passed to it.
MPI_INFO_NULL is still an ompi_predefined_info_t type since an MPI_Info is part of ompi but the internal details of the underlying information concept is part of opal.
An ompi_info_t type still exists for exposure to the user, but it is simply a wrapper for the opal object.
Routines such as ompi_info_dup, etc have all been moved to opal_info_dup and related to the opal directory.
Fortran to C translation tables are only used for MPI_Info that is exposed to the application and are therefore part of the ompi_info_t and not the opal_info_t
The data structure changes are primarily in the following files:
communicator/communicator.h
ompi/info/info.h
ompi/win/win.h
ompi/file/file.h
The following new files were created:
opal/util/info.h
opal/util/info.c
opal/util/info_subscriber.h
opal/util/info_subscriber.c
This infosubscriber concept is that communicators, files and windows can have subscribers that subscribe to any changes in the info associated with the comm/file/window. When xxx_set_info is called, the new info is presented to each subscriber who can modify the info in any way they want. The new value is presented to the next subscriber and so on until all subscribers have had a chance to modify the value. Therefore, the order of subscribers can make a difference but we hope that there is generally only one subscriber that cares or modifies any given key/value pair. The final info is then stored and returned by a call to xxx_get_info.
The new model can be seen in the following files:
ompi/mpi/c/comm_get_info.c
ompi/mpi/c/comm_set_info.c
ompi/mpi/c/file_get_info.c
ompi/mpi/c/file_set_info.c
ompi/mpi/c/win_get_info.c
ompi/mpi/c/win_set_info.c
The current subscribers where changed as follows:
mca/io/ompio/io_ompio_file_open.c
mca/io/ompio/io_ompio_module.c
mca/osc/rmda/osc_rdma_component.c (This one actually subscribes to "no_locks")
mca/osc/sm/osc_sm_component.c (This one actually subscribes to "blocking_fence" and "alloc_shared_contig")
Signed-off-by: Mark Allen <markalle@us.ibm.com>
Conflicts:
AUTHORS
ompi/communicator/comm.c
ompi/debuggers/ompi_mpihandles_dll.c
ompi/file/file.c
ompi/file/file.h
ompi/info/info.c
ompi/mca/io/ompio/io_ompio.h
ompi/mca/io/ompio/io_ompio_file_open.c
ompi/mca/io/ompio/io_ompio_file_set_view.c
ompi/mca/osc/pt2pt/osc_pt2pt.h
ompi/mca/sharedfp/addproc/sharedfp_addproc.h
ompi/mca/sharedfp/addproc/sharedfp_addproc_file_open.c
ompi/mca/topo/treematch/topo_treematch_dist_graph_create.c
ompi/mpi/c/lookup_name.c
ompi/mpi/c/publish_name.c
ompi/mpi/c/unpublish_name.c
opal/mca/mpool/base/mpool_base_alloc.c
opal/util/Makefile.am
2016-01-22 12:02:01 -05:00
|
|
|
struct ompi_communicator_t *comm, struct opal_info_t *info,
|
2016-11-22 15:03:20 -08:00
|
|
|
int flavor, int *model)
|
|
|
|
{
|
|
|
|
ompi_osc_pt2pt_module_t *module = NULL;
|
|
|
|
int ret;
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
/* We don't support shared windows; that's for the sm onesided
|
|
|
|
component */
|
|
|
|
if (MPI_WIN_FLAVOR_SHARED == flavor) return OMPI_ERR_NOT_SUPPORTED;
|
|
|
|
|
2016-12-22 10:14:34 -07:00
|
|
|
/*
|
|
|
|
* workaround for issue https://github.com/open-mpi/ompi/issues/2614
|
|
|
|
* The following check needs to be removed once 2614 is addressed.
|
|
|
|
*/
|
|
|
|
if (using_thread_multiple) {
|
|
|
|
opal_show_help("help-osc-pt2pt.txt", "mpi-thread-multiple-not-supported", true);
|
|
|
|
return OMPI_ERR_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
2016-11-22 15:03:20 -08:00
|
|
|
/* create module structure with all fields initialized to zero */
|
|
|
|
module = (ompi_osc_pt2pt_module_t*)
|
|
|
|
calloc(1, sizeof(ompi_osc_pt2pt_module_t));
|
|
|
|
if (NULL == module) return OMPI_ERR_TEMP_OUT_OF_RESOURCE;
|
|
|
|
|
|
|
|
/* fill in the function pointer part */
|
|
|
|
memcpy(module, &ompi_osc_pt2pt_module_template,
|
|
|
|
sizeof(ompi_osc_base_module_t));
|
|
|
|
|
|
|
|
/* initialize the objects, so that always free in cleanup */
|
2017-01-12 11:41:38 -07:00
|
|
|
OBJ_CONSTRUCT(&module->lock, opal_recursive_mutex_t);
|
2016-11-22 15:03:20 -08:00
|
|
|
OBJ_CONSTRUCT(&module->cond, opal_condition_t);
|
|
|
|
OBJ_CONSTRUCT(&module->locks_pending, opal_list_t);
|
|
|
|
OBJ_CONSTRUCT(&module->locks_pending_lock, opal_mutex_t);
|
|
|
|
OBJ_CONSTRUCT(&module->outstanding_locks, opal_hash_table_t);
|
|
|
|
OBJ_CONSTRUCT(&module->pending_acc, opal_list_t);
|
2017-01-12 11:41:38 -07:00
|
|
|
OBJ_CONSTRUCT(&module->pending_acc_lock, opal_mutex_t);
|
2016-11-22 15:03:20 -08:00
|
|
|
OBJ_CONSTRUCT(&module->buffer_gc, opal_list_t);
|
|
|
|
OBJ_CONSTRUCT(&module->gc_lock, opal_mutex_t);
|
|
|
|
OBJ_CONSTRUCT(&module->all_sync, ompi_osc_pt2pt_sync_t);
|
|
|
|
OBJ_CONSTRUCT(&module->peer_hash, opal_hash_table_t);
|
|
|
|
OBJ_CONSTRUCT(&module->peer_lock, opal_mutex_t);
|
|
|
|
|
|
|
|
ret = opal_hash_table_init (&module->outstanding_locks, 64);
|
|
|
|
if (OPAL_SUCCESS != ret) {
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = opal_hash_table_init (&module->peer_hash, 128);
|
|
|
|
if (OPAL_SUCCESS != ret) {
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* options */
|
|
|
|
/* FIX ME: should actually check this value... */
|
|
|
|
#if 1
|
|
|
|
module->accumulate_ordering = 1;
|
|
|
|
#else
|
|
|
|
ompi_osc_base_config_value_equal("accumulate_ordering", info, "none");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* fill in our part */
|
|
|
|
if (MPI_WIN_FLAVOR_ALLOCATE == flavor && size) {
|
|
|
|
module->free_after = *base = malloc(size);
|
|
|
|
if (NULL == *base) {
|
|
|
|
ret = OMPI_ERR_TEMP_OUT_OF_RESOURCE;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* in the dynamic case base is MPI_BOTTOM */
|
|
|
|
if (MPI_WIN_FLAVOR_DYNAMIC != flavor) {
|
|
|
|
module->baseptr = *base;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = ompi_comm_dup(comm, &module->comm);
|
|
|
|
if (OMPI_SUCCESS != ret) goto cleanup;
|
|
|
|
|
|
|
|
OPAL_OUTPUT_VERBOSE((10, ompi_osc_base_framework.framework_output,
|
|
|
|
"pt2pt component creating window with id %d",
|
|
|
|
ompi_comm_get_cid(module->comm)));
|
|
|
|
|
|
|
|
/* record my displacement unit. Always resolved at target */
|
|
|
|
module->disp_unit = disp_unit;
|
|
|
|
|
|
|
|
/* peer op count data */
|
|
|
|
module->epoch_outgoing_frag_count = calloc (ompi_comm_size(comm), sizeof(uint32_t));
|
|
|
|
if (NULL == module->epoch_outgoing_frag_count) {
|
|
|
|
ret = OMPI_ERR_TEMP_OUT_OF_RESOURCE;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* the statement below (from Brian) does not seem correct so disable active target on the
|
|
|
|
* window. if this end up being incorrect please revert this one change */
|
|
|
|
#if 0
|
|
|
|
/* initially, we're in that pseudo-fence state, so we allow eager
|
|
|
|
sends (yay for Fence). Other protocols will disable before
|
|
|
|
they start their epochs, so this isn't a problem. */
|
|
|
|
module->all_sync.type = OMPI_OSC_PT2PT_SYNC_TYPE_FENCE;
|
|
|
|
module->all_sync.eager_send_active = true;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* lock data */
|
|
|
|
module->no_locks = check_config_value_bool ("no_locks", info, ompi_osc_pt2pt_no_locks);
|
|
|
|
|
|
|
|
/* update component data */
|
|
|
|
OPAL_THREAD_LOCK(&mca_osc_pt2pt_component.lock);
|
|
|
|
ret = opal_hash_table_set_value_uint32(&mca_osc_pt2pt_component.modules,
|
|
|
|
ompi_comm_get_cid(module->comm),
|
|
|
|
module);
|
|
|
|
OPAL_THREAD_UNLOCK(&mca_osc_pt2pt_component.lock);
|
|
|
|
if (OMPI_SUCCESS != ret) goto cleanup;
|
|
|
|
|
|
|
|
/* fill in window information */
|
|
|
|
*model = MPI_WIN_UNIFIED;
|
|
|
|
win->w_osc_module = (ompi_osc_base_module_t*) module;
|
|
|
|
asprintf(&name, "pt2pt window %d", ompi_comm_get_cid(module->comm));
|
|
|
|
ompi_win_set_name(win, name);
|
|
|
|
free(name);
|
|
|
|
|
|
|
|
/* sync memory - make sure all initialization completed */
|
|
|
|
opal_atomic_mb();
|
|
|
|
|
|
|
|
ret = ompi_osc_pt2pt_frag_start_receive (module);
|
|
|
|
if (OPAL_UNLIKELY(OMPI_SUCCESS != ret)) {
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* barrier to prevent arrival of lock requests before we're
|
|
|
|
fully created */
|
2017-01-27 02:27:13 -05:00
|
|
|
ret = module->comm->c_coll->coll_barrier(module->comm,
|
|
|
|
module->comm->c_coll->coll_barrier_module);
|
2016-11-22 15:03:20 -08:00
|
|
|
if (OMPI_SUCCESS != ret) goto cleanup;
|
|
|
|
|
|
|
|
if (!mca_osc_pt2pt_component.progress_enable) {
|
|
|
|
opal_progress_register (component_progress);
|
|
|
|
mca_osc_pt2pt_component.progress_enable = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (module->no_locks) {
|
|
|
|
win->w_flags |= OMPI_WIN_NO_LOCKS;
|
|
|
|
}
|
|
|
|
|
|
|
|
OPAL_OUTPUT_VERBOSE((10, ompi_osc_base_framework.framework_output,
|
|
|
|
"done creating pt2pt window %d", ompi_comm_get_cid(module->comm)));
|
|
|
|
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
/* set the module so we properly cleanup */
|
|
|
|
win->w_osc_module = (ompi_osc_base_module_t*) module;
|
|
|
|
ompi_osc_pt2pt_free (win);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
Major structural changes to data types: .super infosubscriber
ompi_communicator_t, ompi_win_t, ompi_file_t all have a super class of type opal_infosubscriber_t instead of a base/super type of opal_object_t (in previous code comm used c_base, but file used super). It may be a bit bold to say that being a subscriber of MPI_Info is the foundational piece that ties these three things together, but if you object, then I would prefer to turn infosubscriber into a more general name that encompasses other common features rather than create a different super class. The key here is that we want to be able to pass comm, win and file objects as if they were opal_infosubscriber_t, so that one routine can heandle all 3 types of objects being passed to it.
MPI_INFO_NULL is still an ompi_predefined_info_t type since an MPI_Info is part of ompi but the internal details of the underlying information concept is part of opal.
An ompi_info_t type still exists for exposure to the user, but it is simply a wrapper for the opal object.
Routines such as ompi_info_dup, etc have all been moved to opal_info_dup and related to the opal directory.
Fortran to C translation tables are only used for MPI_Info that is exposed to the application and are therefore part of the ompi_info_t and not the opal_info_t
The data structure changes are primarily in the following files:
communicator/communicator.h
ompi/info/info.h
ompi/win/win.h
ompi/file/file.h
The following new files were created:
opal/util/info.h
opal/util/info.c
opal/util/info_subscriber.h
opal/util/info_subscriber.c
This infosubscriber concept is that communicators, files and windows can have subscribers that subscribe to any changes in the info associated with the comm/file/window. When xxx_set_info is called, the new info is presented to each subscriber who can modify the info in any way they want. The new value is presented to the next subscriber and so on until all subscribers have had a chance to modify the value. Therefore, the order of subscribers can make a difference but we hope that there is generally only one subscriber that cares or modifies any given key/value pair. The final info is then stored and returned by a call to xxx_get_info.
The new model can be seen in the following files:
ompi/mpi/c/comm_get_info.c
ompi/mpi/c/comm_set_info.c
ompi/mpi/c/file_get_info.c
ompi/mpi/c/file_set_info.c
ompi/mpi/c/win_get_info.c
ompi/mpi/c/win_set_info.c
The current subscribers where changed as follows:
mca/io/ompio/io_ompio_file_open.c
mca/io/ompio/io_ompio_module.c
mca/osc/rmda/osc_rdma_component.c (This one actually subscribes to "no_locks")
mca/osc/sm/osc_sm_component.c (This one actually subscribes to "blocking_fence" and "alloc_shared_contig")
Signed-off-by: Mark Allen <markalle@us.ibm.com>
Conflicts:
AUTHORS
ompi/communicator/comm.c
ompi/debuggers/ompi_mpihandles_dll.c
ompi/file/file.c
ompi/file/file.h
ompi/info/info.c
ompi/mca/io/ompio/io_ompio.h
ompi/mca/io/ompio/io_ompio_file_open.c
ompi/mca/io/ompio/io_ompio_file_set_view.c
ompi/mca/osc/pt2pt/osc_pt2pt.h
ompi/mca/sharedfp/addproc/sharedfp_addproc.h
ompi/mca/sharedfp/addproc/sharedfp_addproc_file_open.c
ompi/mca/topo/treematch/topo_treematch_dist_graph_create.c
ompi/mpi/c/lookup_name.c
ompi/mpi/c/publish_name.c
ompi/mpi/c/unpublish_name.c
opal/mca/mpool/base/mpool_base_alloc.c
opal/util/Makefile.am
2016-01-22 12:02:01 -05:00
|
|
|
ompi_osc_pt2pt_set_info(struct ompi_win_t *win, struct opal_info_t *info)
|
2016-11-22 15:03:20 -08:00
|
|
|
{
|
|
|
|
ompi_osc_pt2pt_module_t *module =
|
|
|
|
(ompi_osc_pt2pt_module_t*) win->w_osc_module;
|
|
|
|
|
|
|
|
/* enforce collectiveness... */
|
2017-01-27 02:27:13 -05:00
|
|
|
return module->comm->c_coll->coll_barrier(module->comm,
|
|
|
|
module->comm->c_coll->coll_barrier_module);
|
2016-11-22 15:03:20 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
Major structural changes to data types: .super infosubscriber
ompi_communicator_t, ompi_win_t, ompi_file_t all have a super class of type opal_infosubscriber_t instead of a base/super type of opal_object_t (in previous code comm used c_base, but file used super). It may be a bit bold to say that being a subscriber of MPI_Info is the foundational piece that ties these three things together, but if you object, then I would prefer to turn infosubscriber into a more general name that encompasses other common features rather than create a different super class. The key here is that we want to be able to pass comm, win and file objects as if they were opal_infosubscriber_t, so that one routine can heandle all 3 types of objects being passed to it.
MPI_INFO_NULL is still an ompi_predefined_info_t type since an MPI_Info is part of ompi but the internal details of the underlying information concept is part of opal.
An ompi_info_t type still exists for exposure to the user, but it is simply a wrapper for the opal object.
Routines such as ompi_info_dup, etc have all been moved to opal_info_dup and related to the opal directory.
Fortran to C translation tables are only used for MPI_Info that is exposed to the application and are therefore part of the ompi_info_t and not the opal_info_t
The data structure changes are primarily in the following files:
communicator/communicator.h
ompi/info/info.h
ompi/win/win.h
ompi/file/file.h
The following new files were created:
opal/util/info.h
opal/util/info.c
opal/util/info_subscriber.h
opal/util/info_subscriber.c
This infosubscriber concept is that communicators, files and windows can have subscribers that subscribe to any changes in the info associated with the comm/file/window. When xxx_set_info is called, the new info is presented to each subscriber who can modify the info in any way they want. The new value is presented to the next subscriber and so on until all subscribers have had a chance to modify the value. Therefore, the order of subscribers can make a difference but we hope that there is generally only one subscriber that cares or modifies any given key/value pair. The final info is then stored and returned by a call to xxx_get_info.
The new model can be seen in the following files:
ompi/mpi/c/comm_get_info.c
ompi/mpi/c/comm_set_info.c
ompi/mpi/c/file_get_info.c
ompi/mpi/c/file_set_info.c
ompi/mpi/c/win_get_info.c
ompi/mpi/c/win_set_info.c
The current subscribers where changed as follows:
mca/io/ompio/io_ompio_file_open.c
mca/io/ompio/io_ompio_module.c
mca/osc/rmda/osc_rdma_component.c (This one actually subscribes to "no_locks")
mca/osc/sm/osc_sm_component.c (This one actually subscribes to "blocking_fence" and "alloc_shared_contig")
Signed-off-by: Mark Allen <markalle@us.ibm.com>
Conflicts:
AUTHORS
ompi/communicator/comm.c
ompi/debuggers/ompi_mpihandles_dll.c
ompi/file/file.c
ompi/file/file.h
ompi/info/info.c
ompi/mca/io/ompio/io_ompio.h
ompi/mca/io/ompio/io_ompio_file_open.c
ompi/mca/io/ompio/io_ompio_file_set_view.c
ompi/mca/osc/pt2pt/osc_pt2pt.h
ompi/mca/sharedfp/addproc/sharedfp_addproc.h
ompi/mca/sharedfp/addproc/sharedfp_addproc_file_open.c
ompi/mca/topo/treematch/topo_treematch_dist_graph_create.c
ompi/mpi/c/lookup_name.c
ompi/mpi/c/publish_name.c
ompi/mpi/c/unpublish_name.c
opal/mca/mpool/base/mpool_base_alloc.c
opal/util/Makefile.am
2016-01-22 12:02:01 -05:00
|
|
|
ompi_osc_pt2pt_get_info(struct ompi_win_t *win, struct opal_info_t **info_used)
|
2016-11-22 15:03:20 -08:00
|
|
|
{
|
Major structural changes to data types: .super infosubscriber
ompi_communicator_t, ompi_win_t, ompi_file_t all have a super class of type opal_infosubscriber_t instead of a base/super type of opal_object_t (in previous code comm used c_base, but file used super). It may be a bit bold to say that being a subscriber of MPI_Info is the foundational piece that ties these three things together, but if you object, then I would prefer to turn infosubscriber into a more general name that encompasses other common features rather than create a different super class. The key here is that we want to be able to pass comm, win and file objects as if they were opal_infosubscriber_t, so that one routine can heandle all 3 types of objects being passed to it.
MPI_INFO_NULL is still an ompi_predefined_info_t type since an MPI_Info is part of ompi but the internal details of the underlying information concept is part of opal.
An ompi_info_t type still exists for exposure to the user, but it is simply a wrapper for the opal object.
Routines such as ompi_info_dup, etc have all been moved to opal_info_dup and related to the opal directory.
Fortran to C translation tables are only used for MPI_Info that is exposed to the application and are therefore part of the ompi_info_t and not the opal_info_t
The data structure changes are primarily in the following files:
communicator/communicator.h
ompi/info/info.h
ompi/win/win.h
ompi/file/file.h
The following new files were created:
opal/util/info.h
opal/util/info.c
opal/util/info_subscriber.h
opal/util/info_subscriber.c
This infosubscriber concept is that communicators, files and windows can have subscribers that subscribe to any changes in the info associated with the comm/file/window. When xxx_set_info is called, the new info is presented to each subscriber who can modify the info in any way they want. The new value is presented to the next subscriber and so on until all subscribers have had a chance to modify the value. Therefore, the order of subscribers can make a difference but we hope that there is generally only one subscriber that cares or modifies any given key/value pair. The final info is then stored and returned by a call to xxx_get_info.
The new model can be seen in the following files:
ompi/mpi/c/comm_get_info.c
ompi/mpi/c/comm_set_info.c
ompi/mpi/c/file_get_info.c
ompi/mpi/c/file_set_info.c
ompi/mpi/c/win_get_info.c
ompi/mpi/c/win_set_info.c
The current subscribers where changed as follows:
mca/io/ompio/io_ompio_file_open.c
mca/io/ompio/io_ompio_module.c
mca/osc/rmda/osc_rdma_component.c (This one actually subscribes to "no_locks")
mca/osc/sm/osc_sm_component.c (This one actually subscribes to "blocking_fence" and "alloc_shared_contig")
Signed-off-by: Mark Allen <markalle@us.ibm.com>
Conflicts:
AUTHORS
ompi/communicator/comm.c
ompi/debuggers/ompi_mpihandles_dll.c
ompi/file/file.c
ompi/file/file.h
ompi/info/info.c
ompi/mca/io/ompio/io_ompio.h
ompi/mca/io/ompio/io_ompio_file_open.c
ompi/mca/io/ompio/io_ompio_file_set_view.c
ompi/mca/osc/pt2pt/osc_pt2pt.h
ompi/mca/sharedfp/addproc/sharedfp_addproc.h
ompi/mca/sharedfp/addproc/sharedfp_addproc_file_open.c
ompi/mca/topo/treematch/topo_treematch_dist_graph_create.c
ompi/mpi/c/lookup_name.c
ompi/mpi/c/publish_name.c
ompi/mpi/c/unpublish_name.c
opal/mca/mpool/base/mpool_base_alloc.c
opal/util/Makefile.am
2016-01-22 12:02:01 -05:00
|
|
|
opal_info_t *info = OBJ_NEW(opal_info_t);
|
2016-11-22 15:03:20 -08:00
|
|
|
if (NULL == info) return OMPI_ERR_TEMP_OUT_OF_RESOURCE;
|
|
|
|
|
|
|
|
*info_used = info;
|
|
|
|
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
OBJ_CLASS_INSTANCE(ompi_osc_pt2pt_pending_t, opal_list_item_t, NULL, NULL);
|
|
|
|
|
|
|
|
static void ompi_osc_pt2pt_receive_construct (ompi_osc_pt2pt_receive_t *recv)
|
|
|
|
{
|
|
|
|
recv->buffer = NULL;
|
|
|
|
recv->pml_request = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ompi_osc_pt2pt_receive_destruct (ompi_osc_pt2pt_receive_t *recv)
|
|
|
|
{
|
|
|
|
free (recv->buffer);
|
|
|
|
if (recv->pml_request && MPI_REQUEST_NULL != recv->pml_request) {
|
|
|
|
recv->pml_request->req_complete_cb = NULL;
|
|
|
|
ompi_request_cancel (recv->pml_request);
|
|
|
|
ompi_request_free (&recv->pml_request);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
OBJ_CLASS_INSTANCE(ompi_osc_pt2pt_receive_t, opal_list_item_t,
|
|
|
|
ompi_osc_pt2pt_receive_construct,
|
|
|
|
ompi_osc_pt2pt_receive_destruct);
|
|
|
|
|
|
|
|
static void ompi_osc_pt2pt_peer_construct (ompi_osc_pt2pt_peer_t *peer)
|
|
|
|
{
|
|
|
|
OBJ_CONSTRUCT(&peer->queued_frags, opal_list_t);
|
|
|
|
OBJ_CONSTRUCT(&peer->lock, opal_mutex_t);
|
|
|
|
peer->active_frag = NULL;
|
|
|
|
peer->passive_incoming_frag_count = 0;
|
|
|
|
peer->flags = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ompi_osc_pt2pt_peer_destruct (ompi_osc_pt2pt_peer_t *peer)
|
|
|
|
{
|
|
|
|
OBJ_DESTRUCT(&peer->queued_frags);
|
|
|
|
OBJ_DESTRUCT(&peer->lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
OBJ_CLASS_INSTANCE(ompi_osc_pt2pt_peer_t, opal_object_t,
|
|
|
|
ompi_osc_pt2pt_peer_construct,
|
|
|
|
ompi_osc_pt2pt_peer_destruct);
|