Something went wrong on our end
node_constant.h 350 B
#ifndef __NODE_CONSTANT_H__
#define __NODE_CONSTANT_H__
#include "../computation_graph.h"
int graph_add_node_const(struct computation_graph *graph, const char* name);
extern const struct graph_node_type node_const_type;
enum graph_node_const_params {
CONST_SET
};
enum graph_node_const_outputs {
CONST_VAL
};
#endif //__NODE_CONSTANT_H__