2005-03-14 23:57:21 +03: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-03-14 23:57:21 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2005-03-14 23:57:21 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/** @file:
|
|
|
|
* rmaps framework base functionality.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ORTE_MCA_RMAPS_BASE_H
|
|
|
|
#define ORTE_MCA_RMAPS_BASE_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* includes
|
|
|
|
*/
|
|
|
|
#include "orte_config.h"
|
2008-02-28 04:57:57 +03:00
|
|
|
#include "orte/types.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2005-07-03 20:22:16 +04:00
|
|
|
#include "opal/class/opal_list.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "opal/mca/mca.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2009-08-11 06:51:27 +04:00
|
|
|
#include "orte/runtime/orte_globals.h"
|
|
|
|
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "orte/mca/rmaps/rmaps.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
BEGIN_C_DECLS
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2008-06-18 07:15:56 +04:00
|
|
|
/**
|
|
|
|
* Open the rmaps framework
|
|
|
|
*/
|
|
|
|
ORTE_DECLSPEC int orte_rmaps_base_open(void);
|
|
|
|
|
|
|
|
#if !ORTE_DISABLE_FULL_SUPPORT
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
/*
|
|
|
|
* Global functions for MCA overall collective open and close
|
|
|
|
*/
|
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
/**
|
|
|
|
* Struct to hold data global to the rmaps framework
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
/** Verbose/debug output stream */
|
|
|
|
int rmaps_output;
|
|
|
|
/** List of available components */
|
|
|
|
opal_list_t available_components;
|
|
|
|
/** selected module */
|
|
|
|
orte_rmaps_base_module_t *active_module;
|
|
|
|
/** whether or not we allow oversubscription of nodes */
|
|
|
|
bool oversubscribe;
|
|
|
|
/** number of ppn for n_per_node mode */
|
|
|
|
int npernode;
|
2009-08-11 06:51:27 +04:00
|
|
|
/* number of procs/board */
|
|
|
|
int nperboard;
|
|
|
|
/* number of procs/socket */
|
|
|
|
int npersocket;
|
|
|
|
/* cpus per rank */
|
|
|
|
int cpus_per_rank;
|
|
|
|
/* stride */
|
|
|
|
int stride;
|
2008-04-23 18:52:09 +04:00
|
|
|
/* do not allow use of the localhost */
|
2008-02-28 04:57:57 +03:00
|
|
|
bool no_use_local;
|
|
|
|
/* display the map after it is computed */
|
|
|
|
bool display_map;
|
2008-04-23 18:52:09 +04:00
|
|
|
/* balance load across nodes */
|
|
|
|
bool loadbalance;
|
2008-07-28 18:18:36 +04:00
|
|
|
/* slot list, if provided by user */
|
|
|
|
char *slot_list;
|
2008-02-28 04:57:57 +03:00
|
|
|
} orte_rmaps_base_t;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Global instance of rmaps-wide framework data
|
|
|
|
*/
|
|
|
|
ORTE_DECLSPEC extern orte_rmaps_base_t orte_rmaps_base;
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
/**
|
|
|
|
* Select an rmaps component / module
|
|
|
|
*/
|
|
|
|
ORTE_DECLSPEC int orte_rmaps_base_select(void);
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
/**
|
|
|
|
* Utility routines to get/set vpid mapping for the job
|
|
|
|
*/
|
|
|
|
|
|
|
|
ORTE_DECLSPEC int orte_rmaps_base_get_vpid_range(orte_jobid_t jobid,
|
|
|
|
orte_vpid_t *start, orte_vpid_t *range);
|
|
|
|
ORTE_DECLSPEC int orte_rmaps_base_set_vpid_range(orte_jobid_t jobid,
|
|
|
|
orte_vpid_t start, orte_vpid_t range);
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
/**
|
|
|
|
* Close down the rmaps framework
|
|
|
|
*/
|
|
|
|
ORTE_DECLSPEC int orte_rmaps_base_close(void);
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2008-06-18 07:15:56 +04:00
|
|
|
#endif /* ORTE_DISABLE_FULL_SUPPORT */
|
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
END_C_DECLS
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
#endif
|