2004-08-02 04:24:22 +04:00
|
|
|
/*
|
2004-11-22 04:38:40 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
2004-11-28 23:09:25 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-08-02 04:24:22 +04:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-10-20 05:03:09 +04:00
|
|
|
#include "ompi_config.h"
|
2005-07-04 03:31:27 +04:00
|
|
|
#include "opal/util/output.h"
|
2004-06-17 00:01:19 +04:00
|
|
|
#include "mca/base/base.h"
|
2004-06-16 19:41:29 +04:00
|
|
|
#include "mca/base/mca_base_param.h"
|
2004-06-17 00:01:19 +04:00
|
|
|
#include "mca/allocator/base/base.h"
|
|
|
|
#include "mpool_sm.h"
|
2004-08-06 23:35:57 +04:00
|
|
|
#include "mca/common/sm/common_sm_mmap.h"
|
2004-08-04 21:22:16 +04:00
|
|
|
#include "util/proc_info.h"
|
|
|
|
#include "util/sys_info.h"
|
2004-06-16 19:41:29 +04:00
|
|
|
|
2004-08-02 04:24:22 +04:00
|
|
|
/*
|
|
|
|
* Local functions
|
|
|
|
*/
|
|
|
|
static int mca_mpool_sm_open(void);
|
2005-06-21 21:10:28 +04:00
|
|
|
static mca_mpool_base_module_t* mca_mpool_sm_init(
|
2005-06-23 19:53:51 +04:00
|
|
|
struct mca_mpool_base_resources_t* resources);
|
2004-06-18 00:33:52 +04:00
|
|
|
|
2004-08-02 04:24:22 +04:00
|
|
|
mca_mpool_sm_component_t mca_mpool_sm_component = {
|
2004-06-16 19:41:29 +04:00
|
|
|
{
|
2004-08-02 04:24:22 +04:00
|
|
|
/* First, the mca_base_component_t struct containing meta
|
|
|
|
information about the component itself */
|
|
|
|
|
|
|
|
{
|
|
|
|
/* Indicate that we are a mpool v1.0.0 component (which also
|
|
|
|
implies a specific MCA version) */
|
|
|
|
|
|
|
|
MCA_MPOOL_BASE_VERSION_1_0_0,
|
|
|
|
|
|
|
|
"sm", /* MCA component name */
|
Major simplifications to component versioning:
- After long discussions and ruminations on how we run components in
LAM/MPI, made the decision that, by default, all components included
in Open MPI will use the version number of their parent project
(i.e., OMPI or ORTE). They are certaint free to use a different
number, but this simplification makes the common cases easy:
- components are only released when the parent project is released
- it is easy (trivial?) to distinguish which version component goes
with with version of the parent project
- removed all autogen/configure code for templating the version .h
file in components
- made all ORTE components use ORTE_*_VERSION for version numbers
- made all OMPI components use OMPI_*_VERSION for version numbers
- removed all VERSION files from components
- configure now displays OPAL, ORTE, and OMPI version numbers
- ditto for ompi_info
- right now, faking it -- OPAL and ORTE and OMPI will always have the
same version number (i.e., they all come from the same top-level
VERSION file). But this paves the way for the Great Configure
Reorganization, where, among other things, each project will have
its own version number.
So all in all, we went from a boatload of version numbers to
[effectively] three. That's pretty good. :-)
This commit was SVN r6344.
2005-07-05 00:12:36 +04:00
|
|
|
OMPI_MAJOR_VERSION, /* MCA component major version */
|
|
|
|
OMPI_MINOR_VERSION, /* MCA component minor version */
|
|
|
|
OMPI_RELEASE_VERSION, /* MCA component release version */
|
2004-08-02 04:24:22 +04:00
|
|
|
mca_mpool_sm_open, /* component open */
|
|
|
|
NULL
|
|
|
|
},
|
|
|
|
|
|
|
|
/* Next the MCA v1.0.0 component meta data */
|
|
|
|
|
|
|
|
{
|
|
|
|
/* Whether the component is checkpointable or not */
|
|
|
|
false
|
|
|
|
},
|
|
|
|
|
|
|
|
mca_mpool_sm_init
|
2004-06-16 19:41:29 +04:00
|
|
|
}
|
|
|
|
};
|
2004-08-02 04:24:22 +04:00
|
|
|
|
|
|
|
static char* mca_mpool_sm_param_register_string(
|
2004-06-16 19:41:29 +04:00
|
|
|
const char* param_name,
|
|
|
|
const char* default_value)
|
|
|
|
{
|
|
|
|
char *param_value;
|
|
|
|
int id = mca_base_param_register_string("mpool","sm",param_name,NULL,default_value);
|
|
|
|
mca_base_param_lookup_string(id, ¶m_value);
|
|
|
|
return param_value;
|
|
|
|
}
|
2004-08-02 04:24:22 +04:00
|
|
|
|
|
|
|
static int mca_mpool_sm_param_register_int(
|
2004-06-16 19:41:29 +04:00
|
|
|
const char* param_name,
|
|
|
|
int default_value)
|
|
|
|
{
|
|
|
|
int id = mca_base_param_register_int("mpool","sm",param_name,NULL,default_value);
|
|
|
|
int param_value = default_value;
|
|
|
|
mca_base_param_lookup_int(id,¶m_value);
|
|
|
|
return param_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* component open/close/init function
|
|
|
|
*/
|
2004-08-02 04:24:22 +04:00
|
|
|
static int mca_mpool_sm_open(void)
|
2004-06-16 19:41:29 +04:00
|
|
|
{
|
2004-08-02 04:24:22 +04:00
|
|
|
/* register SM component parameters */
|
|
|
|
mca_mpool_sm_component.sm_size =
|
2004-06-17 20:13:20 +04:00
|
|
|
mca_mpool_sm_param_register_int("size", 512*1024*1024);
|
2004-08-02 04:24:22 +04:00
|
|
|
mca_mpool_sm_component.sm_allocator_name =
|
2004-06-16 19:41:29 +04:00
|
|
|
mca_mpool_sm_param_register_string("allocator", "bucket");
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-21 21:10:28 +04:00
|
|
|
static mca_mpool_base_module_t* mca_mpool_sm_init(
|
2005-06-23 19:53:51 +04:00
|
|
|
struct mca_mpool_base_resources_t* resources)
|
2004-06-16 19:41:29 +04:00
|
|
|
{
|
2004-10-22 02:40:25 +04:00
|
|
|
char *file_name;
|
2005-04-26 09:27:38 +04:00
|
|
|
int len;
|
2005-05-31 21:06:55 +04:00
|
|
|
mca_mpool_sm_module_t* mpool_module;
|
2005-06-07 06:09:57 +04:00
|
|
|
mca_allocator_base_component_t* allocator_component;
|
|
|
|
allocator_component = mca_allocator_component_lookup(
|
2004-08-02 04:24:22 +04:00
|
|
|
mca_mpool_sm_component.sm_allocator_name);
|
2004-06-17 00:01:19 +04:00
|
|
|
|
|
|
|
/* if specified allocator cannout be loaded - look for an alternative */
|
|
|
|
if(NULL == allocator_component) {
|
2005-07-03 20:22:16 +04:00
|
|
|
if(opal_list_get_size(&mca_allocator_base_components) == 0) {
|
2004-08-02 04:24:22 +04:00
|
|
|
mca_base_component_list_item_t* item = (mca_base_component_list_item_t*)
|
2005-07-03 20:22:16 +04:00
|
|
|
opal_list_get_first(&mca_allocator_base_components);
|
2004-08-02 04:24:22 +04:00
|
|
|
allocator_component = (mca_allocator_base_component_t*)item->cli_component;
|
2005-07-04 03:31:27 +04:00
|
|
|
opal_output(0, "mca_mpool_sm_init: unable to locate allocator: %s - using %s\n",
|
2004-08-02 04:24:22 +04:00
|
|
|
mca_mpool_sm_component.sm_allocator_name, allocator_component->allocator_version.mca_component_name);
|
2004-06-17 00:01:19 +04:00
|
|
|
} else {
|
2005-07-04 03:31:27 +04:00
|
|
|
opal_output(0, "mca_mpool_sm_init: unable to locate allocator: %s\n",
|
2004-08-02 04:24:22 +04:00
|
|
|
mca_mpool_sm_component.sm_allocator_name);
|
2004-06-17 00:01:19 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-31 21:06:55 +04:00
|
|
|
|
|
|
|
mpool_module = (mca_mpool_sm_module_t*)malloc(sizeof(mca_mpool_sm_module_t));
|
|
|
|
mca_mpool_sm_module_init(mpool_module);
|
|
|
|
|
2004-06-17 00:01:19 +04:00
|
|
|
/* create initial shared memory mapping */
|
2004-10-22 02:40:25 +04:00
|
|
|
len=asprintf(&file_name,"%s/shared_mem_pool.%s",
|
2005-03-14 23:57:21 +03:00
|
|
|
orte_process_info.job_session_dir,
|
|
|
|
orte_system_info.nodename);
|
2004-10-22 02:40:25 +04:00
|
|
|
if ( 0 > len ) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2004-08-04 21:22:16 +04:00
|
|
|
if(NULL ==
|
2004-08-06 23:35:57 +04:00
|
|
|
(mca_common_sm_mmap =
|
|
|
|
mca_common_sm_mmap_init(mca_mpool_sm_component.sm_size,
|
2004-10-22 02:40:25 +04:00
|
|
|
file_name,sizeof(mca_common_sm_mmap_t), 8 )
|
2004-08-04 21:22:16 +04:00
|
|
|
))
|
|
|
|
{
|
2004-10-22 02:40:25 +04:00
|
|
|
free(file_name);
|
2005-07-04 03:31:27 +04:00
|
|
|
opal_output(0, "mca_mpool_sm_init: unable to create shared memory mapping");
|
2004-06-17 00:01:19 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
2004-10-22 02:40:25 +04:00
|
|
|
free(file_name);
|
2004-06-17 00:01:19 +04:00
|
|
|
|
2004-08-11 20:06:14 +04:00
|
|
|
/* setup function pointers */
|
|
|
|
|
|
|
|
|
2005-05-31 21:06:55 +04:00
|
|
|
/* setup allocator TODO fix up */
|
|
|
|
mpool_module->sm_allocator =
|
|
|
|
allocator_component->allocator_init(true,
|
2005-06-21 21:10:28 +04:00
|
|
|
mca_common_sm_mmap_seg_alloc, NULL, NULL);
|
2005-05-31 21:06:55 +04:00
|
|
|
if(NULL == mpool_module->sm_allocator) {
|
2005-07-04 03:31:27 +04:00
|
|
|
opal_output(0, "mca_mpool_sm_init: unable to initialize allocator");
|
2004-06-17 00:01:19 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
2005-05-31 21:06:55 +04:00
|
|
|
|
|
|
|
return &mpool_module->super;
|
2004-06-16 19:41:29 +04:00
|
|
|
}
|
2005-05-31 21:06:55 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|