mirror of https://gitee.com/openkylin/openmpi.git
54 lines
2.4 KiB
C
54 lines
2.4 KiB
C
/*
|
|
* Copyright (c) 2016-2017 Inria. All rights reserved.
|
|
* Copyright (c) 2017 Amazon.com, Inc. or its affiliates. All Rights
|
|
* reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef MCA_OSC_MONITORING_TEMPLATE_H
|
|
#define MCA_OSC_MONITORING_TEMPLATE_H
|
|
|
|
#include <ompi_config.h>
|
|
#include <ompi/communicator/communicator.h>
|
|
#include <ompi/win/win.h>
|
|
#include <opal/sys/atomic.h>
|
|
#include "osc_monitoring_accumulate.h"
|
|
#include "osc_monitoring_active_target.h"
|
|
#include "osc_monitoring_comm.h"
|
|
#include "osc_monitoring_dynamic.h"
|
|
#include "osc_monitoring_module.h"
|
|
#include "osc_monitoring_passive_target.h"
|
|
|
|
/* The magic used here is that for a given module type (given with the
|
|
* {template} parameter), we generate a set of every functions defined
|
|
* in ompi_osc_base_module_t, the ompi_osc_monitoring_module_##
|
|
* template ##_template variable recording the original set of
|
|
* functions, and the generated set of functions is recorded as a
|
|
* static variable inside the initialization function. When a function
|
|
* is called from the original module, we route the call to our
|
|
* generated function that does the monitoring, and then we call the
|
|
* original function that had been saved in the
|
|
* ompi_osc_monitoring_module_## template ##_template variable.
|
|
*/
|
|
#define OSC_MONITORING_MODULE_TEMPLATE_GENERATE(template) \
|
|
/* Generate the proper symbol for the \
|
|
ompi_osc_monitoring_module_## template ##_template variable */ \
|
|
OMPI_OSC_MONITORING_MODULE_GENERATE(template) \
|
|
/* Generate each module specific functions */ \
|
|
OSC_MONITORING_GENERATE_TEMPLATE_ACCUMULATE(template) \
|
|
OSC_MONITORING_GENERATE_TEMPLATE_ACTIVE_TARGET(template) \
|
|
OSC_MONITORING_GENERATE_TEMPLATE_COMM(template) \
|
|
OSC_MONITORING_GENERATE_TEMPLATE_DYNAMIC(template) \
|
|
OSC_MONITORING_GENERATE_TEMPLATE_MODULE(template) \
|
|
OSC_MONITORING_GENERATE_TEMPLATE_PASSIVE_TARGET(template) \
|
|
/* Generate template specific module initialization function: \
|
|
* ompi_osc_monitoring_## template ##_set_template(ompi_osc_base_module_t*module) \
|
|
*/ \
|
|
MCA_OSC_MONITORING_MODULE_TEMPLATE_GENERATE(template)
|
|
|
|
#endif /* MCA_OSC_MONITORING_TEMPLATE_H */
|