aa9e5a1a27
Cleanup the configury so we properly check for Singularity under the various typical use-cases Bring the Singularity support online. We have to turn "off" the sm BTL as it segfaults from inside the container - root cause remains unclear. Also turned "off" the various OPAL shmem components in case they are involved and someone else tries to use them. Happily, the vader BTL works just fine!
30 строки
554 B
C
30 строки
554 B
C
/*
|
|
* Copyright (c) 2016 Intel, Inc. All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef _MCA_SCHIZO_SINGULARITY_H_
|
|
#define _MCA_SCHIZO_SINGULARITY_H_
|
|
|
|
#include "orte_config.h"
|
|
|
|
#include "orte/types.h"
|
|
|
|
#include "opal/mca/base/base.h"
|
|
#include "orte/mca/schizo/schizo.h"
|
|
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
ORTE_MODULE_DECLSPEC extern orte_schizo_base_component_t mca_schizo_singularity_component;
|
|
extern orte_schizo_base_module_t orte_schizo_singularity_module;
|
|
|
|
END_C_DECLS
|
|
|
|
#endif /* MCA_SCHIZO_SINGULARITY_H_ */
|
|
|