
Bring Slurm PMI-1 component online Bring the s2 component online Little cleanup - let the various PMIx modules set the process name during init, and then just raise it up to the ORTE level. Required as the different PMI environments all pass the jobid in different ways. Bring the OMPI pubsub/pmi component online Get comm_spawn working again Ensure we always provide a cpuset, even if it is NULL pmix/cray: adjust cray pmix component for pmix Make changes so cray pmix can work within the integrated ompi/pmix framework. Bring singletons back online. Implement the comm_spawn operation using pmix - not tested yet Cleanup comm_spawn - procs now starting, error in connect_accept Complete integration
44 строки
972 B
C
44 строки
972 B
C
/*
|
|
* Copyright (c) 2014-2015 Intel, Inc. All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
/** @file:
|
|
*/
|
|
|
|
#ifndef MCA_PMI_BASE_H
|
|
#define MCA_PMI_BASE_H
|
|
|
|
#include "opal_config.h"
|
|
#include "opal/types.h"
|
|
|
|
#include "opal/mca/mca.h"
|
|
#include "opal/mca/base/mca_base_framework.h"
|
|
|
|
#include "opal/mca/pmix/pmix_types.h"
|
|
#include "opal/mca/pmix/pmix.h"
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
OPAL_DECLSPEC extern mca_base_framework_t opal_pmix_base_framework;
|
|
|
|
/**
|
|
* Select a pmix module
|
|
*/
|
|
OPAL_DECLSPEC int opal_pmix_base_select(void);
|
|
|
|
OPAL_DECLSPEC extern bool opal_pmix_base_allow_delayed_server;
|
|
|
|
OPAL_DECLSPEC void opal_pmix_base_register_handler(opal_pmix_errhandler_fn_t err);
|
|
OPAL_DECLSPEC void opal_pmix_base_deregister_handler(void);
|
|
OPAL_DECLSPEC void opal_pmix_base_errhandler(int status,
|
|
opal_list_t *procs,
|
|
opal_list_t *info);
|
|
|
|
END_C_DECLS
|
|
|
|
#endif
|