1
1
openmpi/ompi/mca/coll/ml/coll_ml_config.h
Ralph Castain 1e2019ce2a Revert "Update to sync with OMPI master and cleanup to build"
This reverts commit cb55c88a8b7817d5891ff06a447ea190b0e77479.
2016-11-22 15:03:20 -08:00

24 строки
484 B
C

#ifndef COLL_ML_CONFIG_H_
#define COLL_ML_CONFIG_H_
#include "opal_config.h"
#include <stdio.h>
BEGIN_C_DECLS
#define ML_UNDEFINED -1
struct per_collective_configuration_t {
int topology_id;
int threshold;
int algorithm_id;
int fragmentation_enabled;
};
typedef struct per_collective_configuration_t per_collective_configuration_t;
void mca_coll_ml_reset_config(per_collective_configuration_t *config);
int mca_coll_ml_config_file_init(void);
END_C_DECLS
#endif