2005-08-12 06:41:14 +04:00
|
|
|
/*
|
2005-11-05 22:57:48 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2005-08-12 06:41:14 +04:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2006-03-28 02:48:12 +04:00
|
|
|
* Copyright (c) 2004-2006 The Regents of the University of California.
|
2005-08-12 06:41:14 +04:00
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
#include <stdio.h>
|
2006-07-11 09:38:12 +04:00
|
|
|
#ifdef HAVE_UNISTD_H
|
2006-03-23 20:00:20 +03:00
|
|
|
#include <unistd.h>
|
2006-07-11 09:38:12 +04:00
|
|
|
#endif /* HAVE_UNISTD_H */
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/mca/bml/bml.h"
|
|
|
|
#include "ompi/mca/bml/base/base.h"
|
|
|
|
#include "ompi/mca/btl/base/base.h"
|
2005-08-12 06:41:14 +04:00
|
|
|
#include "ompi/mca/bml/base/static-components.h"
|
2005-09-13 00:22:59 +04:00
|
|
|
#include "opal/mca/base/base.h"
|
2005-08-12 06:41:14 +04:00
|
|
|
|
|
|
|
opal_list_t mca_bml_base_components_available;
|
|
|
|
|
2006-03-23 20:00:20 +03:00
|
|
|
#if OMPI_ENABLE_DEBUG_RELIABILITY
|
2006-03-29 20:19:17 +04:00
|
|
|
double mca_bml_base_error_rate_floor;
|
|
|
|
double mca_bml_base_error_rate_ceiling;
|
2006-03-23 23:29:18 +03:00
|
|
|
int mca_bml_base_error_count;
|
2006-03-23 20:00:20 +03:00
|
|
|
#endif
|
2005-08-12 06:41:14 +04:00
|
|
|
|
|
|
|
int mca_bml_base_open( void ) {
|
|
|
|
|
|
|
|
if(OMPI_SUCCESS !=
|
|
|
|
mca_base_components_open("bml", 0, mca_bml_base_static_components,
|
|
|
|
&mca_bml_base_components_available,
|
|
|
|
true)) {
|
|
|
|
return OMPI_ERROR;
|
|
|
|
}
|
2006-03-23 20:00:20 +03:00
|
|
|
|
|
|
|
#if OMPI_ENABLE_DEBUG_RELIABILITY
|
|
|
|
do {
|
|
|
|
int param, value;
|
2006-03-29 20:19:17 +04:00
|
|
|
|
|
|
|
mca_base_param_register_int("bml", NULL, "error_rate_floor", "error_rate_floor", 0);
|
|
|
|
param = mca_base_param_find("bml", NULL, "error_rate_floor");
|
|
|
|
mca_base_param_lookup_int(param, &value);
|
|
|
|
mca_bml_base_error_rate_floor = value;
|
2006-03-23 20:00:20 +03:00
|
|
|
|
2006-03-29 20:19:17 +04:00
|
|
|
mca_base_param_register_int("bml", NULL, "error_rate_ceiling", "error_rate_ceiling", 0);
|
|
|
|
param = mca_base_param_find("bml", NULL, "error_rate_ceiling");
|
2006-03-23 20:00:20 +03:00
|
|
|
mca_base_param_lookup_int(param, &value);
|
2006-03-29 20:19:17 +04:00
|
|
|
mca_bml_base_error_rate_ceiling = value;
|
|
|
|
|
2006-03-23 20:00:20 +03:00
|
|
|
|
|
|
|
mca_base_param_register_int("bml", NULL, "srand", "srand", 1);
|
|
|
|
param = mca_base_param_find("bml", NULL, "srand");
|
|
|
|
mca_base_param_lookup_int(param, &value);
|
|
|
|
|
|
|
|
/* seed random number generator */
|
|
|
|
if(value) {
|
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
srand(getpid() * tv.tv_usec);
|
|
|
|
}
|
2006-03-23 23:29:18 +03:00
|
|
|
|
|
|
|
/* initialize count */
|
2006-03-29 20:19:17 +04:00
|
|
|
if(mca_bml_base_error_rate_ceiling > 0
|
|
|
|
&& mca_bml_base_error_rate_floor <= mca_bml_base_error_rate_ceiling) {
|
|
|
|
mca_bml_base_error_count = (int) ((mca_bml_base_error_rate_ceiling * rand())/(RAND_MAX+1.0));
|
2006-03-23 23:29:18 +03:00
|
|
|
}
|
2006-03-23 20:00:20 +03:00
|
|
|
} while (0);
|
|
|
|
#endif
|
2005-08-12 06:41:14 +04:00
|
|
|
return mca_btl_base_open();
|
|
|
|
}
|
|
|
|
|