brintos

brintos / llvm-project-archived public Read only

0
0
Text · 562 B · e92c5e1 Raw
20 lines · c
1#ifndef ISL_SCHEDULER_SCC_H2#define ISL_SCHEDULER_SCC_H3 4#include <isl/ctx.h>5 6#include "isl_scheduler.h"7#include "isl_scheduler_clustering.h"8 9struct isl_scc_graph;10 11struct isl_scc_graph *isl_scc_graph_from_sched_graph(isl_ctx *ctx,12	struct isl_sched_graph *graph, struct isl_clustering *c);13__isl_give isl_schedule_node *isl_scc_graph_decompose(14	struct isl_scc_graph *scc_graph, __isl_take isl_schedule_node *node);15struct isl_scc_graph *isl_scc_graph_free(struct isl_scc_graph *scc_graph);16 17void isl_scc_graph_dump(struct isl_scc_graph *scc_graph);18 19#endif20