Polly 19.0.0git
isl_scheduler_clustering.h
Go to the documentation of this file.
1#ifndef ISL_SCHEDULER_CLUSTERING_H
2#define ISL_SCHEDULER_CLUSTERING_H
3
4#include "isl_scheduler.h"
5
6/* Clustering information used by isl_schedule_node_compute_wcc_clustering.
7 *
8 * "n" is the number of SCCs in the original dependence graph
9 * "scc" is an array of "n" elements, each representing an SCC
10 * of the original dependence graph. All entries in the same cluster
11 * have the same number of schedule rows.
12 * "scc_cluster" maps each SCC index to the cluster to which it belongs,
13 * where each cluster is represented by the index of the first SCC
14 * in the cluster. Initially, each SCC belongs to a cluster containing
15 * only that SCC.
16 *
17 * "scc_in_merge" is used by merge_clusters_along_edge to keep
18 * track of which SCCs need to be merged.
19 *
20 * "cluster" contains the merged clusters of SCCs after the clustering
21 * has completed.
22 *
23 * "scc_node" is a temporary data structure used inside copy_partial.
24 * For each SCC, it keeps track of the number of nodes in the SCC
25 * that have already been copied.
26 */
28 int n;
34};
35
38
39#endif
#define __isl_take
Definition: ctx.h:22
#define __isl_give
Definition: ctx.h:19
__isl_give isl_schedule_node * isl_schedule_node_compute_wcc_clustering(__isl_take isl_schedule_node *node, struct isl_sched_graph *graph)
struct isl_sched_graph * cluster
struct isl_sched_graph * scc
struct isl_sched_node * node