05a7b1ed55
This commit was SVN r17918.
181 строка
5.1 KiB
C
181 строка
5.1 KiB
C
/*
|
|
* 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.
|
|
* 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 (c) 2007 Cisco Systems, Inc. All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
/**
|
|
* @file
|
|
*
|
|
* The carto framework suplies an information of the the host structure and connection between the
|
|
* host components i.e memory nodes,CPUs, Ethernet port and inifiniband ports.
|
|
*/
|
|
|
|
#ifndef OPAL_CARTO_H
|
|
#define OPAL_CARTO_H
|
|
|
|
#include "opal_config.h"
|
|
|
|
#include "opal/mca/mca.h"
|
|
#include "opal/mca/base/base.h"
|
|
#include "opal/class/opal_graph.h"
|
|
|
|
|
|
/**
|
|
* Query function for carto components. Simply returns a priority
|
|
* to rank it against other available carto components (assumedly,
|
|
* only one component will be available per platform, but it's
|
|
* possible that there could be more than one available).
|
|
*/
|
|
typedef const struct opal_carto_base_module_1_0_0_t *
|
|
(*opal_carto_base_component_query_1_0_0_fn_t)
|
|
(int *priority);
|
|
|
|
/**
|
|
* type for carto graph
|
|
*/
|
|
typedef opal_graph_t opal_carto_graph_t;
|
|
|
|
/* A structure of carto node */
|
|
struct opal_carto_base_node_t {
|
|
opal_graph_vertex_t *vertex; /* the parent of a node is a graph vertex */
|
|
char *node_name;
|
|
char *node_type; /* the type of the node */
|
|
bool is_cpu;
|
|
};
|
|
|
|
/**
|
|
* A definition of carto node type.
|
|
*/
|
|
typedef struct opal_carto_base_node_t opal_carto_base_node_t;
|
|
|
|
|
|
/**
|
|
* A structure of node distance from some other node
|
|
*/
|
|
struct opal_carto_node_distance_t {
|
|
opal_carto_base_node_t *node; /* The node */
|
|
uint32_t node_distance; /* and the distance */
|
|
};
|
|
|
|
/**
|
|
* A definition of node distance type.
|
|
*/
|
|
typedef struct opal_carto_node_distance_t opal_carto_node_distance_t;
|
|
|
|
|
|
|
|
/**
|
|
* Module initialization function. Should return OPAL_SUCCESS.
|
|
*/
|
|
typedef int (*opal_carto_base_module_init_1_0_0_fn_t)(void);
|
|
|
|
/**
|
|
* Get the local host graph. you can reduce the graph for only
|
|
* the nodes that interst you using the node type.
|
|
*/
|
|
typedef int (*opal_carto_base_get_host_graph_fn_t)
|
|
(opal_carto_graph_t **graph, const char *graph_type);
|
|
|
|
/**
|
|
* Frre a graph
|
|
*/
|
|
typedef void (*opal_carto_base_free_graph_fn_t)
|
|
(opal_carto_graph_t *graph);
|
|
|
|
/**
|
|
* Get the distance (weight) from a start node to all other
|
|
* nodes. you can reduce the list to the list to the node types
|
|
* that intersts you.
|
|
*/
|
|
typedef int (*opal_carto_base_get_nodes_distance_fn_t)
|
|
(opal_carto_graph_t *graph, opal_carto_base_node_t *start, const char *node_type, opal_value_array_t *distance_);
|
|
|
|
/**
|
|
* find the distance between two nodes.
|
|
*/
|
|
typedef uint32_t (*opal_carto_base_spf_fn_t)
|
|
(opal_carto_graph_t *graph,opal_carto_base_node_t *start, opal_carto_base_node_t *end);
|
|
|
|
/**
|
|
* Find a node in the graph
|
|
*/
|
|
typedef opal_carto_base_node_t *(*opal_carto_base_find_node)
|
|
(opal_carto_graph_t *graph, const char *node_name);
|
|
|
|
|
|
/**
|
|
* Module finalize function. Invoked by the base on the selected
|
|
* module when the carto framework is being shut down.
|
|
*/
|
|
typedef int (*opal_carto_base_module_finalize_fn_t)(void);
|
|
|
|
|
|
/**
|
|
* Structure for carto v1.1.0 components.
|
|
* Chained to MCA v1.0.0
|
|
*/
|
|
struct opal_carto_base_component_1_0_0_t {
|
|
/** MCA base component */
|
|
mca_base_component_t cartoc_version;
|
|
/** MCA base data */
|
|
mca_base_component_data_1_0_0_t cartoc_data;
|
|
|
|
/** Component query function */
|
|
opal_carto_base_component_query_1_0_0_fn_t cartoc_query;
|
|
};
|
|
/**
|
|
* Convenience typedef
|
|
*/
|
|
typedef struct opal_carto_base_component_1_0_0_t opal_carto_base_component_1_0_0_t;
|
|
|
|
|
|
/**
|
|
* Structure for carto v1.0.0 modules
|
|
*/
|
|
struct opal_carto_base_module_1_0_0_t {
|
|
|
|
/** Module initialization function */
|
|
opal_carto_base_module_init_1_0_0_fn_t carto_module_init;
|
|
/** Get host graph */
|
|
opal_carto_base_get_host_graph_fn_t get_host_graph;
|
|
/** free graph */
|
|
opal_carto_base_free_graph_fn_t free_graph;
|
|
/** Get the distance from one node to all other nodes */
|
|
opal_carto_base_get_nodes_distance_fn_t get_nodes_distance;
|
|
/** Find the distance between two nodes */
|
|
opal_carto_base_spf_fn_t spf;
|
|
/** Find a node in the graph */
|
|
opal_carto_base_find_node find_node;
|
|
/** Shut down this module */
|
|
opal_carto_base_module_finalize_fn_t carto_module_finalize;
|
|
};
|
|
/**
|
|
* Convenience typedef
|
|
*/
|
|
typedef struct opal_carto_base_module_1_0_0_t opal_carto_base_module_1_0_0_t;
|
|
|
|
|
|
/*
|
|
* Macro for use in components that are of type carto v1.1.0
|
|
*/
|
|
#define OPAL_CARTO_BASE_VERSION_1_0_0 \
|
|
/* carto v1.1 is chained to MCA v1.0 */ \
|
|
MCA_BASE_VERSION_1_0_0, \
|
|
/* carto v1.0 */ \
|
|
"carto", 1, 0, 0
|
|
|
|
#endif /* OPAL_CARTO_H */
|