
This is a runtime interposition project that sits between the OMPI and ORTE layers in Open MPI. The project is described on the wiki: https://svn.open-mpi.org/trac/ompi/wiki/Runtime_Interposition And on this email thread: http://www.open-mpi.org/community/lists/devel/2012/06/11109.php This commit was SVN r26670.
26 строки
450 B
C
26 строки
450 B
C
/*
|
|
* Copyright (c) 2012 Oak Ridge National Labs. All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include "orca_config.h"
|
|
#include "orca/constants.h"
|
|
|
|
#include "orca/include/rte_orca.h"
|
|
|
|
static int parameters_registered = false;
|
|
|
|
int orca_register_params(void)
|
|
{
|
|
if( parameters_registered ) {
|
|
return ORCA_SUCCESS;
|
|
}
|
|
parameters_registered = true;
|
|
|
|
return ORCA_SUCCESS;
|
|
}
|