2005-09-13 02:28:23 +04:00
|
|
|
/*
|
2007-03-17 02:11:45 +03:00
|
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
2005-11-05 22:57:48 +03:00
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2006-08-24 20:38:08 +04:00
|
|
|
* Copyright (c) 2004-2006 The University of Tennessee and The University
|
2005-11-05 22:57:48 +03:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2005-09-13 02:28:23 +04:00
|
|
|
* 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$
|
|
|
|
*/
|
2006-08-24 20:38:08 +04:00
|
|
|
#include "ompi_config.h"
|
2005-09-13 02:28:23 +04:00
|
|
|
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "opal/mca/base/mca_base_param.h"
|
|
|
|
#include "ompi/mca/rcache/rcache.h"
|
2005-09-04 08:17:00 +04:00
|
|
|
#include "rcache_rb.h"
|
|
|
|
|
|
|
|
static int mca_rcache_rb_component_open(void);
|
|
|
|
|
|
|
|
static mca_rcache_base_module_t* mca_rcache_rb_component_init( void );
|
|
|
|
|
|
|
|
mca_rcache_rb_component_t mca_rcache_rb_component = {
|
|
|
|
{
|
2005-09-13 02:28:23 +04:00
|
|
|
{
|
|
|
|
/* Indicate that we are a rcache v1.0.0 component (which also
|
|
|
|
implies a specific MCA version) */
|
2005-09-04 08:17:00 +04:00
|
|
|
|
2005-09-13 02:28:23 +04:00
|
|
|
MCA_RCACHE_BASE_VERSION_1_0_0,
|
|
|
|
"rb", /* MCA component name */
|
|
|
|
OMPI_MAJOR_VERSION, /* MCA component major version */
|
|
|
|
OMPI_MINOR_VERSION, /* MCA component minor version */
|
|
|
|
OMPI_RELEASE_VERSION, /* MCA component release version */
|
|
|
|
mca_rcache_rb_component_open, /* component open */
|
|
|
|
NULL
|
|
|
|
},
|
2005-09-04 08:17:00 +04:00
|
|
|
|
2005-09-13 02:28:23 +04:00
|
|
|
/* Next the MCA v1.0.0 component meta data */
|
2005-09-04 08:17:00 +04:00
|
|
|
|
2005-09-13 02:28:23 +04:00
|
|
|
{
|
2007-03-17 02:11:45 +03:00
|
|
|
/* The component is checkpoint ready */
|
|
|
|
MCA_BASE_METADATA_PARAM_CHECKPOINT
|
2005-09-13 02:28:23 +04:00
|
|
|
},
|
|
|
|
mca_rcache_rb_component_init
|
|
|
|
}
|
2005-09-04 08:17:00 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static int mca_rcache_rb_component_open(void)
|
|
|
|
{
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
mca_rcache_base_module_t* mca_rcache_rb_component_init(void) {
|
|
|
|
mca_rcache_rb_module_t* rcache;
|
2006-02-22 17:35:47 +03:00
|
|
|
|
|
|
|
rcache = (mca_rcache_rb_module_t*) malloc(sizeof(mca_rcache_rb_module_t));
|
|
|
|
mca_rcache_rb_module_init(rcache);
|
|
|
|
|
2005-09-13 02:28:23 +04:00
|
|
|
mca_base_param_reg_int(&mca_rcache_rb_component.super.rcache_version,
|
|
|
|
"mru_len",
|
2006-02-22 17:35:47 +03:00
|
|
|
"The maximum size IN ENTRIES of the MRU (most recently used) rcache list",
|
2005-09-13 02:28:23 +04:00
|
|
|
false,
|
|
|
|
false,
|
2005-09-22 23:37:42 +04:00
|
|
|
256,
|
2006-02-22 17:35:47 +03:00
|
|
|
(int*)&(rcache->reg_mru_len));
|
|
|
|
|
|
|
|
mca_base_param_reg_int(&mca_rcache_rb_component.super.rcache_version,
|
|
|
|
"mru_size",
|
|
|
|
"The maximum size IN BYTES of the MRU (most recently used) rcache list",
|
|
|
|
false,
|
|
|
|
false,
|
|
|
|
1*1024*1024*1024, /* default to 1GB? */
|
|
|
|
(int*)&(rcache->reg_max_mru_size));
|
|
|
|
|
2005-09-13 02:28:23 +04:00
|
|
|
|
2005-09-04 08:17:00 +04:00
|
|
|
return &rcache->base;
|
|
|
|
}
|
|
|
|
|
|
|
|
|