Updated version of name server include files to mca format. Putting this in main branch since (I guess) we have abandoned the /tmp/rte safe zone. Sorry to anyone this 'breaks'.
This commit was SVN r1528.
Этот коммит содержится в:
родитель
165d4f8841
Коммит
6eed97c7f9
57
src/mca/ns/base/base.h
Обычный файл
57
src/mca/ns/base/base.h
Обычный файл
@ -0,0 +1,57 @@
|
|||||||
|
/*
|
||||||
|
* $HEADER$
|
||||||
|
*/
|
||||||
|
/** @file:
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndev MCA_NS_BASE_H
|
||||||
|
#define MCA_NS_BASE_H
|
||||||
|
|
||||||
|
/*
|
||||||
|
* includes
|
||||||
|
*/
|
||||||
|
#include "ompi_config.h"
|
||||||
|
#include "class/ompi_list.h"
|
||||||
|
#include "mca/mca.h"
|
||||||
|
#include "mca/ns/ns.h"
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* typedefs
|
||||||
|
*/
|
||||||
|
struct ompi_process_name_t {
|
||||||
|
ompi_process_id_t cellid; /**< Cell number */
|
||||||
|
ompi_process_id_t jobid; /**< Job number */
|
||||||
|
ompi_process_id_t procid; /**< Process number */
|
||||||
|
};
|
||||||
|
typedef struct ompi_process_name_t ompi_process_name_t;
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Global functions for MCA overall collective open and close
|
||||||
|
*/
|
||||||
|
#if defined(c_plusplus) || defined(__cplusplus)
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
int mca_ns_base_open(void);
|
||||||
|
int mca_ns_base_select(bool *allow_multi_user_threads,
|
||||||
|
bool *have_hidden_threads);
|
||||||
|
int mca_ns_base_close(void);
|
||||||
|
#if defined(c_plusplus) || defined(__cplusplus)
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* globals that might be needed
|
||||||
|
*/
|
||||||
|
|
||||||
|
extern mca_ns_t ompi_name_server; /* holds selected module's function pointers */
|
||||||
|
extern ompi_list_t mca_ns_base_modules_available;
|
||||||
|
extern mca_ns_base_module_t mca_ns_base_selected_module;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* external API functions will be documented in the mca/ns/ns.h file
|
||||||
|
*/
|
||||||
|
|
||||||
|
#endif
|
@ -22,22 +22,78 @@
|
|||||||
|
|
||||||
|
|
||||||
#include "ompi_config.h"
|
#include "ompi_config.h"
|
||||||
|
#include "include/types.h"
|
||||||
|
#include "class/ompi_list.h"
|
||||||
|
|
||||||
|
#include "mca/mca.h"
|
||||||
|
#include "mca/ns/base/base.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* typedefs
|
* typedefs
|
||||||
*/
|
*/
|
||||||
typedef uint32_t ompi_process_id_t; /**< Set the allowed range for id's in each space */
|
typedef uint32_t ompi_process_id_t; /**< Set the allowed range for id's in each space */
|
||||||
|
|
||||||
struct ompi_process_name_t {
|
|
||||||
ompi_process_id_t cellid; /**< Cell number */
|
/*
|
||||||
ompi_process_id_t jobid; /**< Job number */
|
* Component functions - all MUST be provided!
|
||||||
ompi_process_id_t procid; /**< Process number */
|
*/
|
||||||
|
|
||||||
|
typedef ompi_process_id_t (*mca_ns_create_cellid_t)(void);
|
||||||
|
typedef ompi_process_id_t (*mca_ns_create_jobid_t)(void);
|
||||||
|
typedef ompi_process_name_t (*mca_ns_create_proc_name_t)(ompi_process_id_t cell, ompi_process_id_t job);
|
||||||
|
|
||||||
|
typedef char* (*mca_ns_get_proc_name_string)(ompi_process_name_t *name);
|
||||||
|
typedef char* (*mca_ns_get_procid_string)(ompi_process_name_t *name);
|
||||||
|
typedef char* (*mca_ns_get_jobid_string)(ompi_process_name_t *name);
|
||||||
|
typedef char* (*mca_ns_get_cellid_string)(ompi_process_name_t *name);
|
||||||
|
|
||||||
|
typedef ompi_process_id_t (*mca_ns_get_procid_t)(ompi_process_name_t *name);
|
||||||
|
typedef ompi_process_id_t (*mca_ns_get_jobid_t)(ompi_process_name_t *name);
|
||||||
|
typedef ompi_process_id_t (*mca_ns_get_cellid_t)(ompi_process_name_t *name);
|
||||||
|
|
||||||
|
typedef int (*mca_ns_compare_t)(ompi_process_name_t *name1, ompi_process_name_t *name2);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Ver 1.0.0
|
||||||
|
*/
|
||||||
|
struct mca_ns_base_module_1_0_0_t {
|
||||||
|
mca_base_module_t nsc_version;
|
||||||
|
mca_base_module_data_1_0_0_t nsc_data;
|
||||||
|
|
||||||
|
mca_ns_base_init_fn_t nsc_init;
|
||||||
|
mca_ns_base_finalize_fn_t nsc_finalize;
|
||||||
};
|
};
|
||||||
typedef struct ompi_process_name_t ompi_process_name_t;
|
typedef struct mca_ns_base_module_1_0_0_t mca_ns_base_module_1_0_0_t;
|
||||||
|
|
||||||
ompi_process_id_t ompi_ns_create_cellid(void);
|
struct mca_ns_1_0_0_t {
|
||||||
|
mca_ns_create_cellid_t create_cellid;
|
||||||
|
mca_ns_create_jobid_t create_jobid;
|
||||||
|
mca_ns_create_proc_name_t create_process_name;
|
||||||
|
mca_ns_get_proc_name_string_t get_proc_name_string;
|
||||||
|
mca_ns_get_procid_string_t get_procid_string;
|
||||||
|
mca_ns_get_jobid_string_t get_jobid_string;
|
||||||
|
mca_ns_get_cellid_string_t get_cellid_string;
|
||||||
|
mca_ns_get_procid_t get_procid;
|
||||||
|
mca_ns_get_jobid_t get_jobid;
|
||||||
|
mca_ns_get_cellid_t get_cellid;
|
||||||
|
mca_ns_compare_t compare;
|
||||||
|
};
|
||||||
|
typedef struct mca_ns_1_0_0_t mca_ns_1_0_0_t;
|
||||||
|
|
||||||
ompi_process_id_t ompi_ns_create_jobid(void);
|
typedef mca_ns_base_module_1_0_0_t mca_ns_base_module_t;
|
||||||
|
typedef mca_ns_1_0_0_t mca_ns_t;
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Macro for use in modules that are of type ns v1.0.0
|
||||||
|
*/
|
||||||
|
#define MCA_NS_BASE_VERSION_1_0_0 \
|
||||||
|
/* ns v1.0 is chained to MCA v1.0 */ \
|
||||||
|
MCA_BASE_VERSION_1_0_0, \
|
||||||
|
/* ns v1.0 */ \
|
||||||
|
"ns", 1, 0, 0
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtain a single new process name.
|
* Obtain a single new process name.
|
||||||
|
Загрузка…
Ссылка в новой задаче
Block a user