b89f8fabc9
The project includes following components and frameworks: - ML Collective component - NETPATTERNS and COMMPATTERNS common components - BCOL framework - SBGP framework Note: By default the ML collective component is disabled. In order to enable new collectives user should bump up the priority of ml component (coll_ml_priority) ============================================= Primary Contributors (in alphabetical order): Ishai Rabinovich (Mellanox) Joshua S. Ladd (ORNL / Mellanox) Manjunath Gorentla Venkata (ORNL) Mike Dubman (Mellanox) Noam Bloch (Mellanox) Pavel (Pasha) Shamis (ORNL / Mellanox) Richard Graham (ORNL / Mellanox) Vasily Filipov (Mellanox) This commit was SVN r27078.
40 строки
876 B
C
40 строки
876 B
C
#ifndef COLL_ML_LEX_H_
|
|
#define COLL_ML_LEX_H_
|
|
|
|
#include "opal_config.h"
|
|
#include <stdio.h>
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
int coll_ml_config_yylex(void);
|
|
int coll_ml_config_init_buffer(FILE *file);
|
|
|
|
extern FILE *coll_ml_config_yyin;
|
|
extern bool coll_ml_config_parse_done;
|
|
extern char *coll_ml_config_yytext;
|
|
extern int coll_ml_config_yynewlines;
|
|
|
|
/*
|
|
* Make lex-generated files not issue compiler warnings
|
|
*/
|
|
#define YY_STACK_USED 0
|
|
#define YY_ALWAYS_INTERACTIVE 0
|
|
#define YY_NEVER_INTERACTIVE 0
|
|
#define YY_MAIN 0
|
|
#define YY_NO_UNPUT 1
|
|
#define YY_SKIP_YYWRAP 1
|
|
|
|
enum {
|
|
COLL_ML_CONFIG_PARSE_DONE,
|
|
COLL_ML_CONFIG_PARSE_ERROR,
|
|
COLL_ML_CONFIG_PARSE_NEWLINE,
|
|
COLL_ML_CONFIG_PARSE_SECTION,
|
|
COLL_ML_CONFIG_PARSE_COLLECTIVE,
|
|
COLL_ML_CONFIG_PARSE_EQUAL,
|
|
COLL_ML_CONFIG_PARSE_SINGLE_WORD,
|
|
COLL_ML_CONFIG_PARSE_VALUE,
|
|
COLL_ML_CONFIG_PARSE_MAX
|
|
};
|
|
END_C_DECLS
|
|
#endif
|