add isl_space_extend_domain_with_range
[isl.git] / isl_schedule.c
blobf14fbd95b7881a91f652672bd9cb724be673011b
1 /*
2 * Copyright 2011 INRIA Saclay
4 * Use of this software is governed by the GNU LGPLv2.1 license
6 * Written by Sven Verdoolaege, INRIA Saclay - Ile-de-France,
7 * Parc Club Orsay Universite, ZAC des vignes, 4 rue Jacques Monod,
8 * 91893 Orsay, France
9 */
11 #include <isl_ctx_private.h>
12 #include <isl_map_private.h>
13 #include <isl_space_private.h>
14 #include <isl/hash.h>
15 #include <isl/constraint.h>
16 #include <isl/schedule.h>
17 #include <isl_mat_private.h>
18 #include <isl/set.h>
19 #include <isl/seq.h>
20 #include <isl_tab.h>
21 #include <isl_dim_map.h>
22 #include <isl_hmap_map_basic_set.h>
23 #include <isl_qsort.h>
24 #include <isl_schedule_private.h>
25 #include <isl_band_private.h>
26 #include <isl_list_private.h>
29 * The scheduling algorithm implemented in this file was inspired by
30 * Bondhugula et al., "Automatic Transformations for Communication-Minimized
31 * Parallelization and Locality Optimization in the Polyhedral Model".
35 /* Internal information about a node that is used during the construction
36 * of a schedule.
37 * dim represents the space in which the domain lives
38 * sched is a matrix representation of the schedule being constructed
39 * for this node
40 * sched_map is an isl_map representation of the same (partial) schedule
41 * sched_map may be NULL
42 * rank is the number of linearly independent rows in the linear part
43 * of sched
44 * the columns of cmap represent a change of basis for the schedule
45 * coefficients; the first rank columns span the linear part of
46 * the schedule rows
47 * start is the first variable in the LP problem in the sequences that
48 * represents the schedule coefficients of this node
49 * nvar is the dimension of the domain
50 * nparam is the number of parameters or 0 if we are not constructing
51 * a parametric schedule
53 * scc is the index of SCC (or WCC) this node belongs to
55 * band contains the band index for each of the rows of the schedule.
56 * band_id is used to differentiate between separate bands at the same
57 * level within the same parent band, i.e., bands that are separated
58 * by the parent band or bands that are independent of each other.
59 * zero contains a boolean for each of the rows of the schedule,
60 * indicating whether the corresponding scheduling dimension results
61 * in zero dependence distances within its band and with respect
62 * to the proximity edges.
64 * index, min_index and on_stack are used during the SCC detection
65 * index represents the order in which nodes are visited.
66 * min_index is the index of the root of a (sub)component.
67 * on_stack indicates whether the node is currently on the stack.
69 struct isl_sched_node {
70 isl_space *dim;
71 isl_mat *sched;
72 isl_map *sched_map;
73 int rank;
74 isl_mat *cmap;
75 int start;
76 int nvar;
77 int nparam;
79 int scc;
81 int *band;
82 int *band_id;
83 int *zero;
85 /* scc detection */
86 int index;
87 int min_index;
88 int on_stack;
91 static int node_has_dim(const void *entry, const void *val)
93 struct isl_sched_node *node = (struct isl_sched_node *)entry;
94 isl_space *dim = (isl_space *)val;
96 return isl_space_is_equal(node->dim, dim);
99 /* An edge in the dependence graph. An edge may be used to
100 * ensure validity of the generated schedule, to minimize the dependence
101 * distance or both
103 * map is the dependence relation
104 * src is the source node
105 * dst is the sink node
106 * validity is set if the edge is used to ensure correctness
107 * proximity is set if the edge is used to minimize dependence distances
109 * For validity edges, start and end mark the sequence of inequality
110 * constraints in the LP problem that encode the validity constraint
111 * corresponding to this edge.
113 struct isl_sched_edge {
114 isl_map *map;
116 struct isl_sched_node *src;
117 struct isl_sched_node *dst;
119 int validity;
120 int proximity;
122 int start;
123 int end;
126 /* Internal information about the dependence graph used during
127 * the construction of the schedule.
129 * intra_hmap is a cache, mapping dependence relations to their dual,
130 * for dependences from a node to itself
131 * inter_hmap is a cache, mapping dependence relations to their dual,
132 * for dependences between distinct nodes
134 * n is the number of nodes
135 * node is the list of nodes
136 * maxvar is the maximal number of variables over all nodes
137 * n_row is the current (maximal) number of linearly independent
138 * rows in the node schedules
139 * n_total_row is the current number of rows in the node schedules
140 * n_band is the current number of completed bands
141 * band_start is the starting row in the node schedules of the current band
142 * root is set if this graph is the original dependence graph,
143 * without any splitting
145 * sorted contains a list of node indices sorted according to the
146 * SCC to which a node belongs
148 * n_edge is the number of edges
149 * edge is the list of edges
150 * edge_table contains pointers into the edge array, hashed on the source
151 * and sink spaces; the table only contains edges that represent
152 * validity constraints (and that may or may not also represent proximity
153 * constraints)
155 * node_table contains pointers into the node array, hashed on the space
157 * region contains a list of variable sequences that should be non-trivial
159 * lp contains the (I)LP problem used to obtain new schedule rows
161 * src_scc and dst_scc are the source and sink SCCs of an edge with
162 * conflicting constraints
164 * scc, sp, index and stack are used during the detection of SCCs
165 * scc is the number of the next SCC
166 * stack contains the nodes on the path from the root to the current node
167 * sp is the stack pointer
168 * index is the index of the last node visited
170 struct isl_sched_graph {
171 isl_hmap_map_basic_set *intra_hmap;
172 isl_hmap_map_basic_set *inter_hmap;
174 struct isl_sched_node *node;
175 int n;
176 int maxvar;
177 int n_row;
179 int *sorted;
181 int n_band;
182 int n_total_row;
183 int band_start;
185 int root;
187 struct isl_sched_edge *edge;
188 int n_edge;
189 struct isl_hash_table *edge_table;
191 struct isl_hash_table *node_table;
192 struct isl_region *region;
194 isl_basic_set *lp;
196 int src_scc;
197 int dst_scc;
199 /* scc detection */
200 int scc;
201 int sp;
202 int index;
203 int *stack;
206 /* Initialize node_table based on the list of nodes.
208 static int graph_init_table(isl_ctx *ctx, struct isl_sched_graph *graph)
210 int i;
212 graph->node_table = isl_hash_table_alloc(ctx, graph->n);
213 if (!graph->node_table)
214 return -1;
216 for (i = 0; i < graph->n; ++i) {
217 struct isl_hash_table_entry *entry;
218 uint32_t hash;
220 hash = isl_space_get_hash(graph->node[i].dim);
221 entry = isl_hash_table_find(ctx, graph->node_table, hash,
222 &node_has_dim,
223 graph->node[i].dim, 1);
224 if (!entry)
225 return -1;
226 entry->data = &graph->node[i];
229 return 0;
232 /* Return a pointer to the node that lives within the given space,
233 * or NULL if there is no such node.
235 static struct isl_sched_node *graph_find_node(isl_ctx *ctx,
236 struct isl_sched_graph *graph, __isl_keep isl_space *dim)
238 struct isl_hash_table_entry *entry;
239 uint32_t hash;
241 hash = isl_space_get_hash(dim);
242 entry = isl_hash_table_find(ctx, graph->node_table, hash,
243 &node_has_dim, dim, 0);
245 return entry ? entry->data : NULL;
248 static int edge_has_src_and_dst(const void *entry, const void *val)
250 const struct isl_sched_edge *edge = entry;
251 const struct isl_sched_edge *temp = val;
253 return edge->src == temp->src && edge->dst == temp->dst;
256 /* Initialize edge_table based on the list of edges.
257 * Only edges with validity set are added to the table.
259 static int graph_init_edge_table(isl_ctx *ctx, struct isl_sched_graph *graph)
261 int i;
263 graph->edge_table = isl_hash_table_alloc(ctx, graph->n_edge);
264 if (!graph->edge_table)
265 return -1;
267 for (i = 0; i < graph->n_edge; ++i) {
268 struct isl_hash_table_entry *entry;
269 uint32_t hash;
271 if (!graph->edge[i].validity)
272 continue;
274 hash = isl_hash_init();
275 hash = isl_hash_builtin(hash, graph->edge[i].src);
276 hash = isl_hash_builtin(hash, graph->edge[i].dst);
277 entry = isl_hash_table_find(ctx, graph->edge_table, hash,
278 &edge_has_src_and_dst,
279 &graph->edge[i], 1);
280 if (!entry)
281 return -1;
282 entry->data = &graph->edge[i];
285 return 0;
288 /* Check whether the dependence graph has a (validity) edge
289 * between the given two nodes.
291 static int graph_has_edge(struct isl_sched_graph *graph,
292 struct isl_sched_node *src, struct isl_sched_node *dst)
294 isl_ctx *ctx = isl_space_get_ctx(src->dim);
295 struct isl_hash_table_entry *entry;
296 uint32_t hash;
297 struct isl_sched_edge temp = { .src = src, .dst = dst };
298 struct isl_sched_edge *edge;
299 int empty;
301 hash = isl_hash_init();
302 hash = isl_hash_builtin(hash, temp.src);
303 hash = isl_hash_builtin(hash, temp.dst);
304 entry = isl_hash_table_find(ctx, graph->edge_table, hash,
305 &edge_has_src_and_dst, &temp, 0);
306 if (!entry)
307 return 0;
309 edge = entry->data;
310 empty = isl_map_plain_is_empty(edge->map);
311 if (empty < 0)
312 return -1;
314 return !empty;
317 static int graph_alloc(isl_ctx *ctx, struct isl_sched_graph *graph,
318 int n_node, int n_edge)
320 int i;
322 graph->n = n_node;
323 graph->n_edge = n_edge;
324 graph->node = isl_calloc_array(ctx, struct isl_sched_node, graph->n);
325 graph->sorted = isl_calloc_array(ctx, int, graph->n);
326 graph->region = isl_alloc_array(ctx, struct isl_region, graph->n);
327 graph->stack = isl_alloc_array(ctx, int, graph->n);
328 graph->edge = isl_calloc_array(ctx,
329 struct isl_sched_edge, graph->n_edge);
331 graph->intra_hmap = isl_hmap_map_basic_set_alloc(ctx, 2 * n_edge);
332 graph->inter_hmap = isl_hmap_map_basic_set_alloc(ctx, 2 * n_edge);
334 if (!graph->node || !graph->region || !graph->stack || !graph->edge ||
335 !graph->sorted)
336 return -1;
338 for(i = 0; i < graph->n; ++i)
339 graph->sorted[i] = i;
341 return 0;
344 static void graph_free(isl_ctx *ctx, struct isl_sched_graph *graph)
346 int i;
348 isl_hmap_map_basic_set_free(ctx, graph->intra_hmap);
349 isl_hmap_map_basic_set_free(ctx, graph->inter_hmap);
351 for (i = 0; i < graph->n; ++i) {
352 isl_space_free(graph->node[i].dim);
353 isl_mat_free(graph->node[i].sched);
354 isl_map_free(graph->node[i].sched_map);
355 isl_mat_free(graph->node[i].cmap);
356 if (graph->root) {
357 free(graph->node[i].band);
358 free(graph->node[i].band_id);
359 free(graph->node[i].zero);
362 free(graph->node);
363 free(graph->sorted);
364 for (i = 0; i < graph->n_edge; ++i)
365 isl_map_free(graph->edge[i].map);
366 free(graph->edge);
367 free(graph->region);
368 free(graph->stack);
369 isl_hash_table_free(ctx, graph->edge_table);
370 isl_hash_table_free(ctx, graph->node_table);
371 isl_basic_set_free(graph->lp);
374 /* Add a new node to the graph representing the given set.
376 static int extract_node(__isl_take isl_set *set, void *user)
378 int nvar, nparam;
379 isl_ctx *ctx;
380 isl_space *dim;
381 isl_mat *sched;
382 struct isl_sched_graph *graph = user;
383 int *band, *band_id, *zero;
385 ctx = isl_set_get_ctx(set);
386 dim = isl_set_get_space(set);
387 isl_set_free(set);
388 nvar = isl_space_dim(dim, isl_dim_set);
389 nparam = isl_space_dim(dim, isl_dim_param);
390 if (!ctx->opt->schedule_parametric)
391 nparam = 0;
392 sched = isl_mat_alloc(ctx, 0, 1 + nparam + nvar);
393 graph->node[graph->n].dim = dim;
394 graph->node[graph->n].nvar = nvar;
395 graph->node[graph->n].nparam = nparam;
396 graph->node[graph->n].sched = sched;
397 graph->node[graph->n].sched_map = NULL;
398 band = isl_alloc_array(ctx, int, graph->n_edge + nvar);
399 graph->node[graph->n].band = band;
400 band_id = isl_calloc_array(ctx, int, graph->n_edge + nvar);
401 graph->node[graph->n].band_id = band_id;
402 zero = isl_calloc_array(ctx, int, graph->n_edge + nvar);
403 graph->node[graph->n].zero = zero;
404 graph->n++;
406 if (!sched || !band || !band_id || !zero)
407 return -1;
409 return 0;
412 /* Add a new edge to the graph based on the given map.
413 * Edges are first extracted from the validity dependences,
414 * from which the edge_table is constructed.
415 * Afterwards, the proximity dependences are added. If a proximity
416 * dependence relation happens to be identical to one of the
417 * validity dependence relations added before, then we don't create
418 * a new edge, but instead mark the original edge as also representing
419 * a proximity dependence.
421 static int extract_edge(__isl_take isl_map *map, void *user)
423 isl_ctx *ctx = isl_map_get_ctx(map);
424 struct isl_sched_graph *graph = user;
425 struct isl_sched_node *src, *dst;
426 isl_space *dim;
428 dim = isl_space_domain(isl_map_get_space(map));
429 src = graph_find_node(ctx, graph, dim);
430 isl_space_free(dim);
431 dim = isl_space_range(isl_map_get_space(map));
432 dst = graph_find_node(ctx, graph, dim);
433 isl_space_free(dim);
435 if (!src || !dst) {
436 isl_map_free(map);
437 return 0;
440 graph->edge[graph->n_edge].src = src;
441 graph->edge[graph->n_edge].dst = dst;
442 graph->edge[graph->n_edge].map = map;
443 graph->edge[graph->n_edge].validity = !graph->edge_table;
444 graph->edge[graph->n_edge].proximity = !!graph->edge_table;
445 graph->n_edge++;
447 if (graph->edge_table) {
448 uint32_t hash;
449 struct isl_hash_table_entry *entry;
450 struct isl_sched_edge *edge;
451 int is_equal;
453 hash = isl_hash_init();
454 hash = isl_hash_builtin(hash, src);
455 hash = isl_hash_builtin(hash, dst);
456 entry = isl_hash_table_find(ctx, graph->edge_table, hash,
457 &edge_has_src_and_dst,
458 &graph->edge[graph->n_edge - 1], 0);
459 if (!entry)
460 return 0;
461 edge = entry->data;
462 is_equal = isl_map_plain_is_equal(map, edge->map);
463 if (is_equal < 0)
464 return -1;
465 if (!is_equal)
466 return 0;
468 graph->n_edge--;
469 edge->proximity = 1;
470 isl_map_free(map);
473 return 0;
476 /* Check whether there is a validity dependence from src to dst,
477 * forcing dst to follow src.
479 static int node_follows(struct isl_sched_graph *graph,
480 struct isl_sched_node *dst, struct isl_sched_node *src)
482 return graph_has_edge(graph, src, dst);
485 /* Perform Tarjan's algorithm for computing the strongly connected components
486 * in the dependence graph (only validity edges).
487 * If directed is not set, we consider the graph to be undirected and
488 * we effectively compute the (weakly) connected components.
490 static int detect_sccs_tarjan(struct isl_sched_graph *g, int i, int directed)
492 int j;
494 g->node[i].index = g->index;
495 g->node[i].min_index = g->index;
496 g->node[i].on_stack = 1;
497 g->index++;
498 g->stack[g->sp++] = i;
500 for (j = g->n - 1; j >= 0; --j) {
501 int f;
503 if (j == i)
504 continue;
505 if (g->node[j].index >= 0 &&
506 (!g->node[j].on_stack ||
507 g->node[j].index > g->node[i].min_index))
508 continue;
510 f = node_follows(g, &g->node[i], &g->node[j]);
511 if (f < 0)
512 return -1;
513 if (!f && !directed) {
514 f = node_follows(g, &g->node[j], &g->node[i]);
515 if (f < 0)
516 return -1;
518 if (!f)
519 continue;
520 if (g->node[j].index < 0) {
521 detect_sccs_tarjan(g, j, directed);
522 if (g->node[j].min_index < g->node[i].min_index)
523 g->node[i].min_index = g->node[j].min_index;
524 } else if (g->node[j].index < g->node[i].min_index)
525 g->node[i].min_index = g->node[j].index;
528 if (g->node[i].index != g->node[i].min_index)
529 return 0;
531 do {
532 j = g->stack[--g->sp];
533 g->node[j].on_stack = 0;
534 g->node[j].scc = g->scc;
535 } while (j != i);
536 g->scc++;
538 return 0;
541 static int detect_ccs(struct isl_sched_graph *graph, int directed)
543 int i;
545 graph->index = 0;
546 graph->sp = 0;
547 graph->scc = 0;
548 for (i = graph->n - 1; i >= 0; --i)
549 graph->node[i].index = -1;
551 for (i = graph->n - 1; i >= 0; --i) {
552 if (graph->node[i].index >= 0)
553 continue;
554 if (detect_sccs_tarjan(graph, i, directed) < 0)
555 return -1;
558 return 0;
561 /* Apply Tarjan's algorithm to detect the strongly connected components
562 * in the dependence graph.
564 static int detect_sccs(struct isl_sched_graph *graph)
566 return detect_ccs(graph, 1);
569 /* Apply Tarjan's algorithm to detect the (weakly) connected components
570 * in the dependence graph.
572 static int detect_wccs(struct isl_sched_graph *graph)
574 return detect_ccs(graph, 0);
577 static int cmp_scc(const void *a, const void *b, void *data)
579 struct isl_sched_graph *graph = data;
580 const int *i1 = a;
581 const int *i2 = b;
583 return graph->node[*i1].scc - graph->node[*i2].scc;
586 /* Sort the elements of graph->sorted according to the corresponding SCCs.
588 static void sort_sccs(struct isl_sched_graph *graph)
590 isl_quicksort(graph->sorted, graph->n, sizeof(int), &cmp_scc, graph);
593 /* Given a dependence relation R from a node to itself,
594 * construct the set of coefficients of valid constraints for elements
595 * in that dependence relation.
596 * In particular, the result contains tuples of coefficients
597 * c_0, c_n, c_x such that
599 * c_0 + c_n n + c_x y - c_x x >= 0 for each (x,y) in R
601 * or, equivalently,
603 * c_0 + c_n n + c_x d >= 0 for each d in delta R = { y - x | (x,y) in R }
605 * We choose here to compute the dual of delta R.
606 * Alternatively, we could have computed the dual of R, resulting
607 * in a set of tuples c_0, c_n, c_x, c_y, and then
608 * plugged in (c_0, c_n, c_x, -c_x).
610 static __isl_give isl_basic_set *intra_coefficients(
611 struct isl_sched_graph *graph, __isl_take isl_map *map)
613 isl_ctx *ctx = isl_map_get_ctx(map);
614 isl_set *delta;
615 isl_basic_set *coef;
617 if (isl_hmap_map_basic_set_has(ctx, graph->intra_hmap, map))
618 return isl_hmap_map_basic_set_get(ctx, graph->intra_hmap, map);
620 delta = isl_set_remove_divs(isl_map_deltas(isl_map_copy(map)));
621 coef = isl_set_coefficients(delta);
622 isl_hmap_map_basic_set_set(ctx, graph->intra_hmap, map,
623 isl_basic_set_copy(coef));
625 return coef;
628 /* Given a dependence relation R, * construct the set of coefficients
629 * of valid constraints for elements in that dependence relation.
630 * In particular, the result contains tuples of coefficients
631 * c_0, c_n, c_x, c_y such that
633 * c_0 + c_n n + c_x x + c_y y >= 0 for each (x,y) in R
636 static __isl_give isl_basic_set *inter_coefficients(
637 struct isl_sched_graph *graph, __isl_take isl_map *map)
639 isl_ctx *ctx = isl_map_get_ctx(map);
640 isl_set *set;
641 isl_basic_set *coef;
643 if (isl_hmap_map_basic_set_has(ctx, graph->inter_hmap, map))
644 return isl_hmap_map_basic_set_get(ctx, graph->inter_hmap, map);
646 set = isl_map_wrap(isl_map_remove_divs(isl_map_copy(map)));
647 coef = isl_set_coefficients(set);
648 isl_hmap_map_basic_set_set(ctx, graph->inter_hmap, map,
649 isl_basic_set_copy(coef));
651 return coef;
654 /* Add constraints to graph->lp that force validity for the given
655 * dependence from a node i to itself.
656 * That is, add constraints that enforce
658 * (c_i_0 + c_i_n n + c_i_x y) - (c_i_0 + c_i_n n + c_i_x x)
659 * = c_i_x (y - x) >= 0
661 * for each (x,y) in R.
662 * We obtain general constraints on coefficients (c_0, c_n, c_x)
663 * of valid constraints for (y - x) and then plug in (0, 0, c_i_x^+ - c_i_x^-),
664 * where c_i_x = c_i_x^+ - c_i_x^-, with c_i_x^+ and c_i_x^- non-negative.
665 * In graph->lp, the c_i_x^- appear before their c_i_x^+ counterpart.
667 * Actually, we do not construct constraints for the c_i_x themselves,
668 * but for the coefficients of c_i_x written as a linear combination
669 * of the columns in node->cmap.
671 static int add_intra_validity_constraints(struct isl_sched_graph *graph,
672 struct isl_sched_edge *edge)
674 unsigned total;
675 isl_map *map = isl_map_copy(edge->map);
676 isl_ctx *ctx = isl_map_get_ctx(map);
677 isl_space *dim;
678 isl_dim_map *dim_map;
679 isl_basic_set *coef;
680 struct isl_sched_node *node = edge->src;
682 coef = intra_coefficients(graph, map);
684 dim = isl_space_domain(isl_space_unwrap(isl_basic_set_get_space(coef)));
686 coef = isl_basic_set_transform_dims(coef, isl_dim_set,
687 isl_space_dim(dim, isl_dim_set), isl_mat_copy(node->cmap));
689 total = isl_basic_set_total_dim(graph->lp);
690 dim_map = isl_dim_map_alloc(ctx, total);
691 isl_dim_map_range(dim_map, node->start + 2 * node->nparam + 1, 2,
692 isl_space_dim(dim, isl_dim_set), 1,
693 node->nvar, -1);
694 isl_dim_map_range(dim_map, node->start + 2 * node->nparam + 2, 2,
695 isl_space_dim(dim, isl_dim_set), 1,
696 node->nvar, 1);
697 graph->lp = isl_basic_set_extend_constraints(graph->lp,
698 coef->n_eq, coef->n_ineq);
699 graph->lp = isl_basic_set_add_constraints_dim_map(graph->lp,
700 coef, dim_map);
701 isl_space_free(dim);
703 return 0;
706 /* Add constraints to graph->lp that force validity for the given
707 * dependence from node i to node j.
708 * That is, add constraints that enforce
710 * (c_j_0 + c_j_n n + c_j_x y) - (c_i_0 + c_i_n n + c_i_x x) >= 0
712 * for each (x,y) in R.
713 * We obtain general constraints on coefficients (c_0, c_n, c_x, c_y)
714 * of valid constraints for R and then plug in
715 * (c_j_0 - c_i_0, c_j_n^+ - c_j_n^- - (c_i_n^+ - c_i_n^-),
716 * c_j_x^+ - c_j_x^- - (c_i_x^+ - c_i_x^-)),
717 * where c_* = c_*^+ - c_*^-, with c_*^+ and c_*^- non-negative.
718 * In graph->lp, the c_*^- appear before their c_*^+ counterpart.
720 * Actually, we do not construct constraints for the c_*_x themselves,
721 * but for the coefficients of c_*_x written as a linear combination
722 * of the columns in node->cmap.
724 static int add_inter_validity_constraints(struct isl_sched_graph *graph,
725 struct isl_sched_edge *edge)
727 unsigned total;
728 isl_map *map = isl_map_copy(edge->map);
729 isl_ctx *ctx = isl_map_get_ctx(map);
730 isl_space *dim;
731 isl_dim_map *dim_map;
732 isl_basic_set *coef;
733 struct isl_sched_node *src = edge->src;
734 struct isl_sched_node *dst = edge->dst;
736 coef = inter_coefficients(graph, map);
738 dim = isl_space_domain(isl_space_unwrap(isl_basic_set_get_space(coef)));
740 coef = isl_basic_set_transform_dims(coef, isl_dim_set,
741 isl_space_dim(dim, isl_dim_set), isl_mat_copy(src->cmap));
742 coef = isl_basic_set_transform_dims(coef, isl_dim_set,
743 isl_space_dim(dim, isl_dim_set) + src->nvar,
744 isl_mat_copy(dst->cmap));
746 total = isl_basic_set_total_dim(graph->lp);
747 dim_map = isl_dim_map_alloc(ctx, total);
749 isl_dim_map_range(dim_map, dst->start, 0, 0, 0, 1, 1);
750 isl_dim_map_range(dim_map, dst->start + 1, 2, 1, 1, dst->nparam, -1);
751 isl_dim_map_range(dim_map, dst->start + 2, 2, 1, 1, dst->nparam, 1);
752 isl_dim_map_range(dim_map, dst->start + 2 * dst->nparam + 1, 2,
753 isl_space_dim(dim, isl_dim_set) + src->nvar, 1,
754 dst->nvar, -1);
755 isl_dim_map_range(dim_map, dst->start + 2 * dst->nparam + 2, 2,
756 isl_space_dim(dim, isl_dim_set) + src->nvar, 1,
757 dst->nvar, 1);
759 isl_dim_map_range(dim_map, src->start, 0, 0, 0, 1, -1);
760 isl_dim_map_range(dim_map, src->start + 1, 2, 1, 1, src->nparam, 1);
761 isl_dim_map_range(dim_map, src->start + 2, 2, 1, 1, src->nparam, -1);
762 isl_dim_map_range(dim_map, src->start + 2 * src->nparam + 1, 2,
763 isl_space_dim(dim, isl_dim_set), 1,
764 src->nvar, 1);
765 isl_dim_map_range(dim_map, src->start + 2 * src->nparam + 2, 2,
766 isl_space_dim(dim, isl_dim_set), 1,
767 src->nvar, -1);
769 edge->start = graph->lp->n_ineq;
770 graph->lp = isl_basic_set_extend_constraints(graph->lp,
771 coef->n_eq, coef->n_ineq);
772 graph->lp = isl_basic_set_add_constraints_dim_map(graph->lp,
773 coef, dim_map);
774 isl_space_free(dim);
775 edge->end = graph->lp->n_ineq;
777 return 0;
780 /* Add constraints to graph->lp that bound the dependence distance for the given
781 * dependence from a node i to itself.
782 * If s = 1, we add the constraint
784 * c_i_x (y - x) <= m_0 + m_n n
786 * or
788 * -c_i_x (y - x) + m_0 + m_n n >= 0
790 * for each (x,y) in R.
791 * If s = -1, we add the constraint
793 * -c_i_x (y - x) <= m_0 + m_n n
795 * or
797 * c_i_x (y - x) + m_0 + m_n n >= 0
799 * for each (x,y) in R.
800 * We obtain general constraints on coefficients (c_0, c_n, c_x)
801 * of valid constraints for (y - x) and then plug in (m_0, m_n, -s * c_i_x),
802 * with each coefficient (except m_0) represented as a pair of non-negative
803 * coefficients.
805 * Actually, we do not construct constraints for the c_i_x themselves,
806 * but for the coefficients of c_i_x written as a linear combination
807 * of the columns in node->cmap.
809 static int add_intra_proximity_constraints(struct isl_sched_graph *graph,
810 struct isl_sched_edge *edge, int s)
812 unsigned total;
813 unsigned nparam;
814 isl_map *map = isl_map_copy(edge->map);
815 isl_ctx *ctx = isl_map_get_ctx(map);
816 isl_space *dim;
817 isl_dim_map *dim_map;
818 isl_basic_set *coef;
819 struct isl_sched_node *node = edge->src;
821 coef = intra_coefficients(graph, map);
823 dim = isl_space_domain(isl_space_unwrap(isl_basic_set_get_space(coef)));
825 coef = isl_basic_set_transform_dims(coef, isl_dim_set,
826 isl_space_dim(dim, isl_dim_set), isl_mat_copy(node->cmap));
828 nparam = isl_space_dim(node->dim, isl_dim_param);
829 total = isl_basic_set_total_dim(graph->lp);
830 dim_map = isl_dim_map_alloc(ctx, total);
831 isl_dim_map_range(dim_map, 1, 0, 0, 0, 1, 1);
832 isl_dim_map_range(dim_map, 4, 2, 1, 1, nparam, -1);
833 isl_dim_map_range(dim_map, 5, 2, 1, 1, nparam, 1);
834 isl_dim_map_range(dim_map, node->start + 2 * node->nparam + 1, 2,
835 isl_space_dim(dim, isl_dim_set), 1,
836 node->nvar, s);
837 isl_dim_map_range(dim_map, node->start + 2 * node->nparam + 2, 2,
838 isl_space_dim(dim, isl_dim_set), 1,
839 node->nvar, -s);
840 graph->lp = isl_basic_set_extend_constraints(graph->lp,
841 coef->n_eq, coef->n_ineq);
842 graph->lp = isl_basic_set_add_constraints_dim_map(graph->lp,
843 coef, dim_map);
844 isl_space_free(dim);
846 return 0;
849 /* Add constraints to graph->lp that bound the dependence distance for the given
850 * dependence from node i to node j.
851 * If s = 1, we add the constraint
853 * (c_j_0 + c_j_n n + c_j_x y) - (c_i_0 + c_i_n n + c_i_x x)
854 * <= m_0 + m_n n
856 * or
858 * -(c_j_0 + c_j_n n + c_j_x y) + (c_i_0 + c_i_n n + c_i_x x) +
859 * m_0 + m_n n >= 0
861 * for each (x,y) in R.
862 * If s = -1, we add the constraint
864 * -((c_j_0 + c_j_n n + c_j_x y) - (c_i_0 + c_i_n n + c_i_x x))
865 * <= m_0 + m_n n
867 * or
869 * (c_j_0 + c_j_n n + c_j_x y) - (c_i_0 + c_i_n n + c_i_x x) +
870 * m_0 + m_n n >= 0
872 * for each (x,y) in R.
873 * We obtain general constraints on coefficients (c_0, c_n, c_x, c_y)
874 * of valid constraints for R and then plug in
875 * (m_0 - s*c_j_0 + s*c_i_0, m_n - s*c_j_n + s*c_i_n,
876 * -s*c_j_x+s*c_i_x)
877 * with each coefficient (except m_0, c_j_0 and c_i_0)
878 * represented as a pair of non-negative coefficients.
880 * Actually, we do not construct constraints for the c_*_x themselves,
881 * but for the coefficients of c_*_x written as a linear combination
882 * of the columns in node->cmap.
884 static int add_inter_proximity_constraints(struct isl_sched_graph *graph,
885 struct isl_sched_edge *edge, int s)
887 unsigned total;
888 unsigned nparam;
889 isl_map *map = isl_map_copy(edge->map);
890 isl_ctx *ctx = isl_map_get_ctx(map);
891 isl_space *dim;
892 isl_dim_map *dim_map;
893 isl_basic_set *coef;
894 struct isl_sched_node *src = edge->src;
895 struct isl_sched_node *dst = edge->dst;
897 coef = inter_coefficients(graph, map);
899 dim = isl_space_domain(isl_space_unwrap(isl_basic_set_get_space(coef)));
901 coef = isl_basic_set_transform_dims(coef, isl_dim_set,
902 isl_space_dim(dim, isl_dim_set), isl_mat_copy(src->cmap));
903 coef = isl_basic_set_transform_dims(coef, isl_dim_set,
904 isl_space_dim(dim, isl_dim_set) + src->nvar,
905 isl_mat_copy(dst->cmap));
907 nparam = isl_space_dim(src->dim, isl_dim_param);
908 total = isl_basic_set_total_dim(graph->lp);
909 dim_map = isl_dim_map_alloc(ctx, total);
911 isl_dim_map_range(dim_map, 1, 0, 0, 0, 1, 1);
912 isl_dim_map_range(dim_map, 4, 2, 1, 1, nparam, -1);
913 isl_dim_map_range(dim_map, 5, 2, 1, 1, nparam, 1);
915 isl_dim_map_range(dim_map, dst->start, 0, 0, 0, 1, -s);
916 isl_dim_map_range(dim_map, dst->start + 1, 2, 1, 1, dst->nparam, s);
917 isl_dim_map_range(dim_map, dst->start + 2, 2, 1, 1, dst->nparam, -s);
918 isl_dim_map_range(dim_map, dst->start + 2 * dst->nparam + 1, 2,
919 isl_space_dim(dim, isl_dim_set) + src->nvar, 1,
920 dst->nvar, s);
921 isl_dim_map_range(dim_map, dst->start + 2 * dst->nparam + 2, 2,
922 isl_space_dim(dim, isl_dim_set) + src->nvar, 1,
923 dst->nvar, -s);
925 isl_dim_map_range(dim_map, src->start, 0, 0, 0, 1, s);
926 isl_dim_map_range(dim_map, src->start + 1, 2, 1, 1, src->nparam, -s);
927 isl_dim_map_range(dim_map, src->start + 2, 2, 1, 1, src->nparam, s);
928 isl_dim_map_range(dim_map, src->start + 2 * src->nparam + 1, 2,
929 isl_space_dim(dim, isl_dim_set), 1,
930 src->nvar, -s);
931 isl_dim_map_range(dim_map, src->start + 2 * src->nparam + 2, 2,
932 isl_space_dim(dim, isl_dim_set), 1,
933 src->nvar, s);
935 graph->lp = isl_basic_set_extend_constraints(graph->lp,
936 coef->n_eq, coef->n_ineq);
937 graph->lp = isl_basic_set_add_constraints_dim_map(graph->lp,
938 coef, dim_map);
939 isl_space_free(dim);
941 return 0;
944 static int add_all_validity_constraints(struct isl_sched_graph *graph)
946 int i;
948 for (i = 0; i < graph->n_edge; ++i) {
949 struct isl_sched_edge *edge= &graph->edge[i];
950 if (!edge->validity)
951 continue;
952 if (edge->src != edge->dst)
953 continue;
954 if (add_intra_validity_constraints(graph, edge) < 0)
955 return -1;
958 for (i = 0; i < graph->n_edge; ++i) {
959 struct isl_sched_edge *edge = &graph->edge[i];
960 if (!edge->validity)
961 continue;
962 if (edge->src == edge->dst)
963 continue;
964 if (add_inter_validity_constraints(graph, edge) < 0)
965 return -1;
968 return 0;
971 /* Add constraints to graph->lp that bound the dependence distance
972 * for all dependence relations.
973 * If a given proximity dependence is identical to a validity
974 * dependence, then the dependence distance is already bounded
975 * from below (by zero), so we only need to bound the distance
976 * from above.
977 * Otherwise, we need to bound the distance both from above and from below.
979 static int add_all_proximity_constraints(struct isl_sched_graph *graph)
981 int i;
983 for (i = 0; i < graph->n_edge; ++i) {
984 struct isl_sched_edge *edge= &graph->edge[i];
985 if (!edge->proximity)
986 continue;
987 if (edge->src == edge->dst &&
988 add_intra_proximity_constraints(graph, edge, 1) < 0)
989 return -1;
990 if (edge->src != edge->dst &&
991 add_inter_proximity_constraints(graph, edge, 1) < 0)
992 return -1;
993 if (edge->validity)
994 continue;
995 if (edge->src == edge->dst &&
996 add_intra_proximity_constraints(graph, edge, -1) < 0)
997 return -1;
998 if (edge->src != edge->dst &&
999 add_inter_proximity_constraints(graph, edge, -1) < 0)
1000 return -1;
1003 return 0;
1006 /* Compute a basis for the rows in the linear part of the schedule
1007 * and extend this basis to a full basis. The remaining rows
1008 * can then be used to force linear independence from the rows
1009 * in the schedule.
1011 * In particular, given the schedule rows S, we compute
1013 * S = H Q
1015 * with H the Hermite normal form of S. That is, all but the
1016 * first rank columns of Q are zero and so each row in S is
1017 * a linear combination of the first rank rows of Q.
1018 * The matrix Q is then transposed because we will write the
1019 * coefficients of the next schedule row as a column vector s
1020 * and express this s as a linear combination s = Q c of the
1021 * computed basis.
1023 static int node_update_cmap(struct isl_sched_node *node)
1025 isl_mat *H, *Q;
1026 int n_row = isl_mat_rows(node->sched);
1028 H = isl_mat_sub_alloc(node->sched, 0, n_row,
1029 1 + node->nparam, node->nvar);
1031 H = isl_mat_left_hermite(H, 0, NULL, &Q);
1032 isl_mat_free(node->cmap);
1033 node->cmap = isl_mat_transpose(Q);
1034 node->rank = isl_mat_initial_non_zero_cols(H);
1035 isl_mat_free(H);
1037 if (!node->cmap || node->rank < 0)
1038 return -1;
1039 return 0;
1042 /* Count the number of equality and inequality constraints
1043 * that will be added for the given map.
1044 * If once is set, then we count
1045 * each edge exactly once. Otherwise, we count as follows
1046 * validity -> 1 (>= 0)
1047 * validity+proximity -> 2 (>= 0 and upper bound)
1048 * proximity -> 2 (lower and upper bound)
1050 static int count_map_constraints(struct isl_sched_graph *graph,
1051 struct isl_sched_edge *edge, __isl_take isl_map *map,
1052 int *n_eq, int *n_ineq, int once)
1054 isl_basic_set *coef;
1055 int f = once ? 1 : edge->proximity ? 2 : 1;
1057 if (edge->src == edge->dst)
1058 coef = intra_coefficients(graph, map);
1059 else
1060 coef = inter_coefficients(graph, map);
1061 if (!coef)
1062 return -1;
1063 *n_eq += f * coef->n_eq;
1064 *n_ineq += f * coef->n_ineq;
1065 isl_basic_set_free(coef);
1067 return 0;
1070 /* Count the number of equality and inequality constraints
1071 * that will be added to the main lp problem.
1072 * If once is set, then we count
1073 * each edge exactly once. Otherwise, we count as follows
1074 * validity -> 1 (>= 0)
1075 * validity+proximity -> 2 (>= 0 and upper bound)
1076 * proximity -> 2 (lower and upper bound)
1078 static int count_constraints(struct isl_sched_graph *graph,
1079 int *n_eq, int *n_ineq, int once)
1081 int i;
1083 *n_eq = *n_ineq = 0;
1084 for (i = 0; i < graph->n_edge; ++i) {
1085 struct isl_sched_edge *edge= &graph->edge[i];
1086 isl_map *map = isl_map_copy(edge->map);
1088 if (count_map_constraints(graph, edge, map,
1089 n_eq, n_ineq, once) < 0)
1090 return -1;
1093 return 0;
1096 /* Construct an ILP problem for finding schedule coefficients
1097 * that result in non-negative, but small dependence distances
1098 * over all dependences.
1099 * In particular, the dependence distances over proximity edges
1100 * are bounded by m_0 + m_n n and we compute schedule coefficients
1101 * with small values (preferably zero) of m_n and m_0.
1103 * All variables of the ILP are non-negative. The actual coefficients
1104 * may be negative, so each coefficient is represented as the difference
1105 * of two non-negative variables. The negative part always appears
1106 * immediately before the positive part.
1107 * Other than that, the variables have the following order
1109 * - sum of positive and negative parts of m_n coefficients
1110 * - m_0
1111 * - sum of positive and negative parts of all c_n coefficients
1112 * (unconstrained when computing non-parametric schedules)
1113 * - sum of positive and negative parts of all c_x coefficients
1114 * - positive and negative parts of m_n coefficients
1115 * - for each node
1116 * - c_i_0
1117 * - positive and negative parts of c_i_n (if parametric)
1118 * - positive and negative parts of c_i_x
1120 * The c_i_x are not represented directly, but through the columns of
1121 * node->cmap. That is, the computed values are for variable t_i_x
1122 * such that c_i_x = Q t_i_x with Q equal to node->cmap.
1124 * The constraints are those from the edges plus two or three equalities
1125 * to express the sums.
1127 * If force_zero is set, then we add equalities to ensure that
1128 * the sum of the m_n coefficients and m_0 are both zero.
1130 static int setup_lp(isl_ctx *ctx, struct isl_sched_graph *graph,
1131 int force_zero)
1133 int i, j;
1134 int k;
1135 unsigned nparam;
1136 unsigned total;
1137 isl_space *dim;
1138 int parametric;
1139 int param_pos;
1140 int n_eq, n_ineq;
1142 parametric = ctx->opt->schedule_parametric;
1143 nparam = isl_space_dim(graph->node[0].dim, isl_dim_param);
1144 param_pos = 4;
1145 total = param_pos + 2 * nparam;
1146 for (i = 0; i < graph->n; ++i) {
1147 struct isl_sched_node *node = &graph->node[graph->sorted[i]];
1148 if (node_update_cmap(node) < 0)
1149 return -1;
1150 node->start = total;
1151 total += 1 + 2 * (node->nparam + node->nvar);
1154 if (count_constraints(graph, &n_eq, &n_ineq, 0) < 0)
1155 return -1;
1157 dim = isl_space_set_alloc(ctx, 0, total);
1158 isl_basic_set_free(graph->lp);
1159 n_eq += 2 + parametric + force_zero;
1160 graph->lp = isl_basic_set_alloc_space(dim, 0, n_eq, n_ineq);
1162 k = isl_basic_set_alloc_equality(graph->lp);
1163 if (k < 0)
1164 return -1;
1165 isl_seq_clr(graph->lp->eq[k], 1 + total);
1166 if (!force_zero)
1167 isl_int_set_si(graph->lp->eq[k][1], -1);
1168 for (i = 0; i < 2 * nparam; ++i)
1169 isl_int_set_si(graph->lp->eq[k][1 + param_pos + i], 1);
1171 if (force_zero) {
1172 k = isl_basic_set_alloc_equality(graph->lp);
1173 if (k < 0)
1174 return -1;
1175 isl_seq_clr(graph->lp->eq[k], 1 + total);
1176 isl_int_set_si(graph->lp->eq[k][2], -1);
1179 if (parametric) {
1180 k = isl_basic_set_alloc_equality(graph->lp);
1181 if (k < 0)
1182 return -1;
1183 isl_seq_clr(graph->lp->eq[k], 1 + total);
1184 isl_int_set_si(graph->lp->eq[k][3], -1);
1185 for (i = 0; i < graph->n; ++i) {
1186 int pos = 1 + graph->node[i].start + 1;
1188 for (j = 0; j < 2 * graph->node[i].nparam; ++j)
1189 isl_int_set_si(graph->lp->eq[k][pos + j], 1);
1193 k = isl_basic_set_alloc_equality(graph->lp);
1194 if (k < 0)
1195 return -1;
1196 isl_seq_clr(graph->lp->eq[k], 1 + total);
1197 isl_int_set_si(graph->lp->eq[k][4], -1);
1198 for (i = 0; i < graph->n; ++i) {
1199 struct isl_sched_node *node = &graph->node[i];
1200 int pos = 1 + node->start + 1 + 2 * node->nparam;
1202 for (j = 0; j < 2 * node->nvar; ++j)
1203 isl_int_set_si(graph->lp->eq[k][pos + j], 1);
1206 if (add_all_validity_constraints(graph) < 0)
1207 return -1;
1208 if (add_all_proximity_constraints(graph) < 0)
1209 return -1;
1211 return 0;
1214 /* Analyze the conflicting constraint found by
1215 * isl_tab_basic_set_non_trivial_lexmin. If it corresponds to the validity
1216 * constraint of one of the edges between distinct nodes, living, moreover
1217 * in distinct SCCs, then record the source and sink SCC as this may
1218 * be a good place to cut between SCCs.
1220 static int check_conflict(int con, void *user)
1222 int i;
1223 struct isl_sched_graph *graph = user;
1225 if (graph->src_scc >= 0)
1226 return 0;
1228 con -= graph->lp->n_eq;
1230 if (con >= graph->lp->n_ineq)
1231 return 0;
1233 for (i = 0; i < graph->n_edge; ++i) {
1234 if (!graph->edge[i].validity)
1235 continue;
1236 if (graph->edge[i].src == graph->edge[i].dst)
1237 continue;
1238 if (graph->edge[i].src->scc == graph->edge[i].dst->scc)
1239 continue;
1240 if (graph->edge[i].start > con)
1241 continue;
1242 if (graph->edge[i].end <= con)
1243 continue;
1244 graph->src_scc = graph->edge[i].src->scc;
1245 graph->dst_scc = graph->edge[i].dst->scc;
1248 return 0;
1251 /* Check whether the next schedule row of the given node needs to be
1252 * non-trivial. Lower-dimensional domains may have some trivial rows,
1253 * but as soon as the number of remaining required non-trivial rows
1254 * is as large as the number or remaining rows to be computed,
1255 * all remaining rows need to be non-trivial.
1257 static int needs_row(struct isl_sched_graph *graph, struct isl_sched_node *node)
1259 return node->nvar - node->rank >= graph->maxvar - graph->n_row;
1262 /* Solve the ILP problem constructed in setup_lp.
1263 * For each node such that all the remaining rows of its schedule
1264 * need to be non-trivial, we construct a non-triviality region.
1265 * This region imposes that the next row is independent of previous rows.
1266 * In particular the coefficients c_i_x are represented by t_i_x
1267 * variables with c_i_x = Q t_i_x and Q a unimodular matrix such that
1268 * its first columns span the rows of the previously computed part
1269 * of the schedule. The non-triviality region enforces that at least
1270 * one of the remaining components of t_i_x is non-zero, i.e.,
1271 * that the new schedule row depends on at least one of the remaining
1272 * columns of Q.
1274 static __isl_give isl_vec *solve_lp(struct isl_sched_graph *graph)
1276 int i;
1277 isl_vec *sol;
1278 isl_basic_set *lp;
1280 for (i = 0; i < graph->n; ++i) {
1281 struct isl_sched_node *node = &graph->node[i];
1282 int skip = node->rank;
1283 graph->region[i].pos = node->start + 1 + 2*(node->nparam+skip);
1284 if (needs_row(graph, node))
1285 graph->region[i].len = 2 * (node->nvar - skip);
1286 else
1287 graph->region[i].len = 0;
1289 lp = isl_basic_set_copy(graph->lp);
1290 sol = isl_tab_basic_set_non_trivial_lexmin(lp, 2, graph->n,
1291 graph->region, &check_conflict, graph);
1292 return sol;
1295 /* Update the schedules of all nodes based on the given solution
1296 * of the LP problem.
1297 * The new row is added to the current band.
1298 * All possibly negative coefficients are encoded as a difference
1299 * of two non-negative variables, so we need to perform the subtraction
1300 * here. Moreover, if use_cmap is set, then the solution does
1301 * not refer to the actual coefficients c_i_x, but instead to variables
1302 * t_i_x such that c_i_x = Q t_i_x and Q is equal to node->cmap.
1303 * In this case, we then also need to perform this multiplication
1304 * to obtain the values of c_i_x.
1306 * If check_zero is set, then the first two coordinates of sol are
1307 * assumed to correspond to the dependence distance. If these two
1308 * coordinates are zero, then the corresponding scheduling dimension
1309 * is marked as being zero distance.
1311 static int update_schedule(struct isl_sched_graph *graph,
1312 __isl_take isl_vec *sol, int use_cmap, int check_zero)
1314 int i, j;
1315 int zero = 0;
1316 isl_vec *csol = NULL;
1318 if (!sol)
1319 goto error;
1320 if (sol->size == 0)
1321 isl_die(sol->ctx, isl_error_internal,
1322 "no solution found", goto error);
1324 if (check_zero)
1325 zero = isl_int_is_zero(sol->el[1]) &&
1326 isl_int_is_zero(sol->el[2]);
1328 for (i = 0; i < graph->n; ++i) {
1329 struct isl_sched_node *node = &graph->node[i];
1330 int pos = node->start;
1331 int row = isl_mat_rows(node->sched);
1333 isl_vec_free(csol);
1334 csol = isl_vec_alloc(sol->ctx, node->nvar);
1335 if (!csol)
1336 goto error;
1338 isl_map_free(node->sched_map);
1339 node->sched_map = NULL;
1340 node->sched = isl_mat_add_rows(node->sched, 1);
1341 if (!node->sched)
1342 goto error;
1343 node->sched = isl_mat_set_element(node->sched, row, 0,
1344 sol->el[1 + pos]);
1345 for (j = 0; j < node->nparam + node->nvar; ++j)
1346 isl_int_sub(sol->el[1 + pos + 1 + 2 * j + 1],
1347 sol->el[1 + pos + 1 + 2 * j + 1],
1348 sol->el[1 + pos + 1 + 2 * j]);
1349 for (j = 0; j < node->nparam; ++j)
1350 node->sched = isl_mat_set_element(node->sched,
1351 row, 1 + j, sol->el[1+pos+1+2*j+1]);
1352 for (j = 0; j < node->nvar; ++j)
1353 isl_int_set(csol->el[j],
1354 sol->el[1+pos+1+2*(node->nparam+j)+1]);
1355 if (use_cmap)
1356 csol = isl_mat_vec_product(isl_mat_copy(node->cmap),
1357 csol);
1358 if (!csol)
1359 goto error;
1360 for (j = 0; j < node->nvar; ++j)
1361 node->sched = isl_mat_set_element(node->sched,
1362 row, 1 + node->nparam + j, csol->el[j]);
1363 node->band[graph->n_total_row] = graph->n_band;
1364 node->zero[graph->n_total_row] = zero;
1366 isl_vec_free(sol);
1367 isl_vec_free(csol);
1369 graph->n_row++;
1370 graph->n_total_row++;
1372 return 0;
1373 error:
1374 isl_vec_free(sol);
1375 isl_vec_free(csol);
1376 return -1;
1379 /* Convert node->sched into a map and return this map.
1380 * We simply add equality constraints that express each output variable
1381 * as the affine combination of parameters and input variables specified
1382 * by the schedule matrix.
1384 * The result is cached in node->sched_map, which needs to be released
1385 * whenever node->sched is updated.
1387 static __isl_give isl_map *node_extract_schedule(struct isl_sched_node *node)
1389 int i, j;
1390 isl_space *dim;
1391 isl_basic_map *bmap;
1392 isl_constraint *c;
1393 int nrow, ncol;
1394 isl_int v;
1396 if (node->sched_map)
1397 return isl_map_copy(node->sched_map);
1399 nrow = isl_mat_rows(node->sched);
1400 ncol = isl_mat_cols(node->sched) - 1;
1401 dim = isl_space_from_domain(isl_space_copy(node->dim));
1402 dim = isl_space_add_dims(dim, isl_dim_out, nrow);
1403 bmap = isl_basic_map_universe(isl_space_copy(dim));
1405 isl_int_init(v);
1407 for (i = 0; i < nrow; ++i) {
1408 c = isl_equality_alloc(isl_space_copy(dim));
1409 isl_constraint_set_coefficient_si(c, isl_dim_out, i, -1);
1410 isl_mat_get_element(node->sched, i, 0, &v);
1411 isl_constraint_set_constant(c, v);
1412 for (j = 0; j < node->nparam; ++j) {
1413 isl_mat_get_element(node->sched, i, 1 + j, &v);
1414 isl_constraint_set_coefficient(c, isl_dim_param, j, v);
1416 for (j = 0; j < node->nvar; ++j) {
1417 isl_mat_get_element(node->sched,
1418 i, 1 + node->nparam + j, &v);
1419 isl_constraint_set_coefficient(c, isl_dim_in, j, v);
1421 bmap = isl_basic_map_add_constraint(bmap, c);
1424 isl_int_clear(v);
1426 isl_space_free(dim);
1428 node->sched_map = isl_map_from_basic_map(bmap);
1429 return isl_map_copy(node->sched_map);
1432 /* Update the given dependence relation based on the current schedule.
1433 * That is, intersect the dependence relation with a map expressing
1434 * that source and sink are executed within the same iteration of
1435 * the current schedule.
1436 * This is not the most efficient way, but this shouldn't be a critical
1437 * operation.
1439 static __isl_give isl_map *specialize(__isl_take isl_map *map,
1440 struct isl_sched_node *src, struct isl_sched_node *dst)
1442 isl_map *src_sched, *dst_sched, *id;
1444 src_sched = node_extract_schedule(src);
1445 dst_sched = node_extract_schedule(dst);
1446 id = isl_map_apply_range(src_sched, isl_map_reverse(dst_sched));
1447 return isl_map_intersect(map, id);
1450 /* Update the dependence relations of all edges based on the current schedule.
1451 * If a dependence is carried completely by the current schedule, then
1452 * it is removed and edge_table is updated accordingly.
1454 static int update_edges(isl_ctx *ctx, struct isl_sched_graph *graph)
1456 int i;
1457 int reset_table = 0;
1459 for (i = graph->n_edge - 1; i >= 0; --i) {
1460 struct isl_sched_edge *edge = &graph->edge[i];
1461 edge->map = specialize(edge->map, edge->src, edge->dst);
1462 if (!edge->map)
1463 return -1;
1465 if (isl_map_plain_is_empty(edge->map)) {
1466 reset_table = 1;
1467 isl_map_free(edge->map);
1468 if (i != graph->n_edge - 1)
1469 graph->edge[i] = graph->edge[graph->n_edge - 1];
1470 graph->n_edge--;
1474 if (reset_table) {
1475 isl_hash_table_free(ctx, graph->edge_table);
1476 graph->edge_table = NULL;
1477 return graph_init_edge_table(ctx, graph);
1480 return 0;
1483 static void next_band(struct isl_sched_graph *graph)
1485 graph->band_start = graph->n_total_row;
1486 graph->n_band++;
1489 /* Topologically sort statements mapped to same schedule iteration
1490 * and add a row to the schedule corresponding to this order.
1492 static int sort_statements(isl_ctx *ctx, struct isl_sched_graph *graph)
1494 int i, j;
1496 if (graph->n <= 1)
1497 return 0;
1499 if (update_edges(ctx, graph) < 0)
1500 return -1;
1502 if (graph->n_edge == 0)
1503 return 0;
1505 if (detect_sccs(graph) < 0)
1506 return -1;
1508 for (i = 0; i < graph->n; ++i) {
1509 struct isl_sched_node *node = &graph->node[i];
1510 int row = isl_mat_rows(node->sched);
1511 int cols = isl_mat_cols(node->sched);
1513 isl_map_free(node->sched_map);
1514 node->sched_map = NULL;
1515 node->sched = isl_mat_add_rows(node->sched, 1);
1516 if (!node->sched)
1517 return -1;
1518 node->sched = isl_mat_set_element_si(node->sched, row, 0,
1519 node->scc);
1520 for (j = 1; j < cols; ++j)
1521 node->sched = isl_mat_set_element_si(node->sched,
1522 row, j, 0);
1523 node->band[graph->n_total_row] = graph->n_band;
1526 graph->n_total_row++;
1527 next_band(graph);
1529 return 0;
1532 /* Construct an isl_schedule based on the computed schedule stored
1533 * in graph and with parameters specified by dim.
1535 static __isl_give isl_schedule *extract_schedule(struct isl_sched_graph *graph,
1536 __isl_take isl_space *dim)
1538 int i;
1539 isl_ctx *ctx;
1540 isl_schedule *sched = NULL;
1542 if (!dim)
1543 return NULL;
1545 ctx = isl_space_get_ctx(dim);
1546 sched = isl_calloc(ctx, struct isl_schedule,
1547 sizeof(struct isl_schedule) +
1548 (graph->n - 1) * sizeof(struct isl_schedule_node));
1549 if (!sched)
1550 goto error;
1552 sched->ref = 1;
1553 sched->n = graph->n;
1554 sched->n_band = graph->n_band;
1555 sched->n_total_row = graph->n_total_row;
1557 for (i = 0; i < sched->n; ++i) {
1558 int r, b;
1559 int *band_end, *band_id, *zero;
1561 band_end = isl_alloc_array(ctx, int, graph->n_band);
1562 band_id = isl_alloc_array(ctx, int, graph->n_band);
1563 zero = isl_alloc_array(ctx, int, graph->n_total_row);
1564 sched->node[i].sched = node_extract_schedule(&graph->node[i]);
1565 sched->node[i].band_end = band_end;
1566 sched->node[i].band_id = band_id;
1567 sched->node[i].zero = zero;
1568 if (!band_end || !band_id || !zero)
1569 goto error;
1571 for (r = 0; r < graph->n_total_row; ++r)
1572 zero[r] = graph->node[i].zero[r];
1573 for (r = b = 0; r < graph->n_total_row; ++r) {
1574 if (graph->node[i].band[r] == b)
1575 continue;
1576 band_end[b++] = r;
1577 if (graph->node[i].band[r] == -1)
1578 break;
1580 if (r == graph->n_total_row)
1581 band_end[b++] = r;
1582 sched->node[i].n_band = b;
1583 for (--b; b >= 0; --b)
1584 band_id[b] = graph->node[i].band_id[b];
1587 sched->dim = dim;
1589 return sched;
1590 error:
1591 isl_space_free(dim);
1592 isl_schedule_free(sched);
1593 return NULL;
1596 /* Copy nodes that satisfy node_pred from the src dependence graph
1597 * to the dst dependence graph.
1599 static int copy_nodes(struct isl_sched_graph *dst, struct isl_sched_graph *src,
1600 int (*node_pred)(struct isl_sched_node *node, int data), int data)
1602 int i;
1604 dst->n = 0;
1605 for (i = 0; i < src->n; ++i) {
1606 if (!node_pred(&src->node[i], data))
1607 continue;
1608 dst->node[dst->n].dim = isl_space_copy(src->node[i].dim);
1609 dst->node[dst->n].nvar = src->node[i].nvar;
1610 dst->node[dst->n].nparam = src->node[i].nparam;
1611 dst->node[dst->n].sched = isl_mat_copy(src->node[i].sched);
1612 dst->node[dst->n].sched_map =
1613 isl_map_copy(src->node[i].sched_map);
1614 dst->node[dst->n].band = src->node[i].band;
1615 dst->node[dst->n].band_id = src->node[i].band_id;
1616 dst->node[dst->n].zero = src->node[i].zero;
1617 dst->n++;
1620 return 0;
1623 /* Copy non-empty edges that satisfy edge_pred from the src dependence graph
1624 * to the dst dependence graph.
1626 static int copy_edges(isl_ctx *ctx, struct isl_sched_graph *dst,
1627 struct isl_sched_graph *src,
1628 int (*edge_pred)(struct isl_sched_edge *edge, int data), int data)
1630 int i;
1632 dst->n_edge = 0;
1633 for (i = 0; i < src->n_edge; ++i) {
1634 struct isl_sched_edge *edge = &src->edge[i];
1635 isl_map *map;
1637 if (!edge_pred(edge, data))
1638 continue;
1640 if (isl_map_plain_is_empty(edge->map))
1641 continue;
1643 map = isl_map_copy(edge->map);
1645 dst->edge[dst->n_edge].src =
1646 graph_find_node(ctx, dst, edge->src->dim);
1647 dst->edge[dst->n_edge].dst =
1648 graph_find_node(ctx, dst, edge->dst->dim);
1649 dst->edge[dst->n_edge].map = map;
1650 dst->edge[dst->n_edge].validity = edge->validity;
1651 dst->edge[dst->n_edge].proximity = edge->proximity;
1652 dst->n_edge++;
1655 return 0;
1658 /* Given a "src" dependence graph that contains the nodes from "dst"
1659 * that satisfy node_pred, copy the schedule computed in "src"
1660 * for those nodes back to "dst".
1662 static int copy_schedule(struct isl_sched_graph *dst,
1663 struct isl_sched_graph *src,
1664 int (*node_pred)(struct isl_sched_node *node, int data), int data)
1666 int i;
1668 src->n = 0;
1669 for (i = 0; i < dst->n; ++i) {
1670 if (!node_pred(&dst->node[i], data))
1671 continue;
1672 isl_mat_free(dst->node[i].sched);
1673 isl_map_free(dst->node[i].sched_map);
1674 dst->node[i].sched = isl_mat_copy(src->node[src->n].sched);
1675 dst->node[i].sched_map =
1676 isl_map_copy(src->node[src->n].sched_map);
1677 src->n++;
1680 dst->n_total_row = src->n_total_row;
1681 dst->n_band = src->n_band;
1683 return 0;
1686 /* Compute the maximal number of variables over all nodes.
1687 * This is the maximal number of linearly independent schedule
1688 * rows that we need to compute.
1689 * Just in case we end up in a part of the dependence graph
1690 * with only lower-dimensional domains, we make sure we will
1691 * compute the required amount of extra linearly independent rows.
1693 static int compute_maxvar(struct isl_sched_graph *graph)
1695 int i;
1697 graph->maxvar = 0;
1698 for (i = 0; i < graph->n; ++i) {
1699 struct isl_sched_node *node = &graph->node[i];
1700 int nvar;
1702 if (node_update_cmap(node) < 0)
1703 return -1;
1704 nvar = node->nvar + graph->n_row - node->rank;
1705 if (nvar > graph->maxvar)
1706 graph->maxvar = nvar;
1709 return 0;
1712 static int compute_schedule(isl_ctx *ctx, struct isl_sched_graph *graph);
1713 static int compute_schedule_wcc(isl_ctx *ctx, struct isl_sched_graph *graph);
1715 /* Compute a schedule for a subgraph of "graph". In particular, for
1716 * the graph composed of nodes that satisfy node_pred and edges that
1717 * that satisfy edge_pred. The caller should precompute the number
1718 * of nodes and edges that satisfy these predicates and pass them along
1719 * as "n" and "n_edge".
1720 * If the subgraph is known to consist of a single component, then wcc should
1721 * be set and then we call compute_schedule_wcc on the constructed subgraph.
1722 * Otherwise, we call compute_schedule, which will check whether the subgraph
1723 * is connected.
1725 static int compute_sub_schedule(isl_ctx *ctx,
1726 struct isl_sched_graph *graph, int n, int n_edge,
1727 int (*node_pred)(struct isl_sched_node *node, int data),
1728 int (*edge_pred)(struct isl_sched_edge *edge, int data),
1729 int data, int wcc)
1731 struct isl_sched_graph split = { 0 };
1733 if (graph_alloc(ctx, &split, n, n_edge) < 0)
1734 goto error;
1735 if (copy_nodes(&split, graph, node_pred, data) < 0)
1736 goto error;
1737 if (graph_init_table(ctx, &split) < 0)
1738 goto error;
1739 if (copy_edges(ctx, &split, graph, edge_pred, data) < 0)
1740 goto error;
1741 if (graph_init_edge_table(ctx, &split) < 0)
1742 goto error;
1743 split.n_row = graph->n_row;
1744 split.n_total_row = graph->n_total_row;
1745 split.n_band = graph->n_band;
1746 split.band_start = graph->band_start;
1748 if (wcc && compute_schedule_wcc(ctx, &split) < 0)
1749 goto error;
1750 if (!wcc && compute_schedule(ctx, &split) < 0)
1751 goto error;
1753 copy_schedule(graph, &split, node_pred, data);
1755 graph_free(ctx, &split);
1756 return 0;
1757 error:
1758 graph_free(ctx, &split);
1759 return -1;
1762 static int node_scc_exactly(struct isl_sched_node *node, int scc)
1764 return node->scc == scc;
1767 static int node_scc_at_most(struct isl_sched_node *node, int scc)
1769 return node->scc <= scc;
1772 static int node_scc_at_least(struct isl_sched_node *node, int scc)
1774 return node->scc >= scc;
1777 static int edge_src_scc_exactly(struct isl_sched_edge *edge, int scc)
1779 return edge->src->scc == scc;
1782 static int edge_dst_scc_at_most(struct isl_sched_edge *edge, int scc)
1784 return edge->dst->scc <= scc;
1787 static int edge_src_scc_at_least(struct isl_sched_edge *edge, int scc)
1789 return edge->src->scc >= scc;
1792 /* Pad the schedules of all nodes with zero rows such that in the end
1793 * they all have graph->n_total_row rows.
1794 * The extra rows don't belong to any band, so they get assigned band number -1.
1796 static int pad_schedule(struct isl_sched_graph *graph)
1798 int i, j;
1800 for (i = 0; i < graph->n; ++i) {
1801 struct isl_sched_node *node = &graph->node[i];
1802 int row = isl_mat_rows(node->sched);
1803 if (graph->n_total_row > row) {
1804 isl_map_free(node->sched_map);
1805 node->sched_map = NULL;
1807 node->sched = isl_mat_add_zero_rows(node->sched,
1808 graph->n_total_row - row);
1809 if (!node->sched)
1810 return -1;
1811 for (j = row; j < graph->n_total_row; ++j)
1812 node->band[j] = -1;
1815 return 0;
1818 /* Split the current graph into two parts and compute a schedule for each
1819 * part individually. In particular, one part consists of all SCCs up
1820 * to and including graph->src_scc, while the other part contains the other
1821 * SCCS.
1823 * The split is enforced in the schedule by constant rows with two different
1824 * values (0 and 1). These constant rows replace the previously computed rows
1825 * in the current band.
1826 * It would be possible to reuse them as the first rows in the next
1827 * band, but recomputing them may result in better rows as we are looking
1828 * at a smaller part of the dependence graph.
1830 * The band_id of the second group is set to n, where n is the number
1831 * of nodes in the first group. This ensures that the band_ids over
1832 * the two groups remain disjoint, even if either or both of the two
1833 * groups contain independent components.
1835 static int compute_split_schedule(isl_ctx *ctx, struct isl_sched_graph *graph)
1837 int i, j, n, e1, e2;
1838 int n_total_row, orig_total_row;
1839 int n_band, orig_band;
1840 int drop;
1842 drop = graph->n_total_row - graph->band_start;
1843 graph->n_total_row -= drop;
1844 graph->n_row -= drop;
1846 n = 0;
1847 for (i = 0; i < graph->n; ++i) {
1848 struct isl_sched_node *node = &graph->node[i];
1849 int row = isl_mat_rows(node->sched) - drop;
1850 int cols = isl_mat_cols(node->sched);
1851 int before = node->scc <= graph->src_scc;
1853 if (before)
1854 n++;
1856 isl_map_free(node->sched_map);
1857 node->sched_map = NULL;
1858 node->sched = isl_mat_drop_rows(node->sched,
1859 graph->band_start, drop);
1860 node->sched = isl_mat_add_rows(node->sched, 1);
1861 if (!node->sched)
1862 return -1;
1863 node->sched = isl_mat_set_element_si(node->sched, row, 0,
1864 !before);
1865 for (j = 1; j < cols; ++j)
1866 node->sched = isl_mat_set_element_si(node->sched,
1867 row, j, 0);
1868 node->band[graph->n_total_row] = graph->n_band;
1871 e1 = e2 = 0;
1872 for (i = 0; i < graph->n_edge; ++i) {
1873 if (graph->edge[i].dst->scc <= graph->src_scc)
1874 e1++;
1875 if (graph->edge[i].src->scc > graph->src_scc)
1876 e2++;
1879 graph->n_total_row++;
1880 next_band(graph);
1882 for (i = 0; i < graph->n; ++i) {
1883 struct isl_sched_node *node = &graph->node[i];
1884 if (node->scc > graph->src_scc)
1885 node->band_id[graph->n_band] = n;
1888 orig_total_row = graph->n_total_row;
1889 orig_band = graph->n_band;
1890 if (compute_sub_schedule(ctx, graph, n, e1,
1891 &node_scc_at_most, &edge_dst_scc_at_most,
1892 graph->src_scc, 0) < 0)
1893 return -1;
1894 n_total_row = graph->n_total_row;
1895 graph->n_total_row = orig_total_row;
1896 n_band = graph->n_band;
1897 graph->n_band = orig_band;
1898 if (compute_sub_schedule(ctx, graph, graph->n - n, e2,
1899 &node_scc_at_least, &edge_src_scc_at_least,
1900 graph->src_scc + 1, 0) < 0)
1901 return -1;
1902 if (n_total_row > graph->n_total_row)
1903 graph->n_total_row = n_total_row;
1904 if (n_band > graph->n_band)
1905 graph->n_band = n_band;
1907 return pad_schedule(graph);
1910 /* Compute the next band of the schedule after updating the dependence
1911 * relations based on the the current schedule.
1913 static int compute_next_band(isl_ctx *ctx, struct isl_sched_graph *graph)
1915 if (update_edges(ctx, graph) < 0)
1916 return -1;
1917 next_band(graph);
1919 return compute_schedule(ctx, graph);
1922 /* Add constraints to graph->lp that force the dependence "map" (which
1923 * is part of the dependence relation of "edge")
1924 * to be respected and attempt to carry it, where the edge is one from
1925 * a node j to itself. "pos" is the sequence number of the given map.
1926 * That is, add constraints that enforce
1928 * (c_j_0 + c_j_n n + c_j_x y) - (c_j_0 + c_j_n n + c_j_x x)
1929 * = c_j_x (y - x) >= e_i
1931 * for each (x,y) in R.
1932 * We obtain general constraints on coefficients (c_0, c_n, c_x)
1933 * of valid constraints for (y - x) and then plug in (-e_i, 0, c_j_x),
1934 * with each coefficient in c_j_x represented as a pair of non-negative
1935 * coefficients.
1937 static int add_intra_constraints(struct isl_sched_graph *graph,
1938 struct isl_sched_edge *edge, __isl_take isl_map *map, int pos)
1940 unsigned total;
1941 isl_ctx *ctx = isl_map_get_ctx(map);
1942 isl_space *dim;
1943 isl_dim_map *dim_map;
1944 isl_basic_set *coef;
1945 struct isl_sched_node *node = edge->src;
1947 coef = intra_coefficients(graph, map);
1949 dim = isl_space_domain(isl_space_unwrap(isl_basic_set_get_space(coef)));
1951 total = isl_basic_set_total_dim(graph->lp);
1952 dim_map = isl_dim_map_alloc(ctx, total);
1953 isl_dim_map_range(dim_map, 3 + pos, 0, 0, 0, 1, -1);
1954 isl_dim_map_range(dim_map, node->start + 2 * node->nparam + 1, 2,
1955 isl_space_dim(dim, isl_dim_set), 1,
1956 node->nvar, -1);
1957 isl_dim_map_range(dim_map, node->start + 2 * node->nparam + 2, 2,
1958 isl_space_dim(dim, isl_dim_set), 1,
1959 node->nvar, 1);
1960 graph->lp = isl_basic_set_extend_constraints(graph->lp,
1961 coef->n_eq, coef->n_ineq);
1962 graph->lp = isl_basic_set_add_constraints_dim_map(graph->lp,
1963 coef, dim_map);
1964 isl_space_free(dim);
1966 return 0;
1969 /* Add constraints to graph->lp that force the dependence "map" (which
1970 * is part of the dependence relation of "edge")
1971 * to be respected and attempt to carry it, where the edge is one from
1972 * node j to node k. "pos" is the sequence number of the given map.
1973 * That is, add constraints that enforce
1975 * (c_k_0 + c_k_n n + c_k_x y) - (c_j_0 + c_j_n n + c_j_x x) >= e_i
1977 * for each (x,y) in R.
1978 * We obtain general constraints on coefficients (c_0, c_n, c_x)
1979 * of valid constraints for R and then plug in
1980 * (-e_i + c_k_0 - c_j_0, c_k_n - c_j_n, c_k_x - c_j_x)
1981 * with each coefficient (except e_i, c_k_0 and c_j_0)
1982 * represented as a pair of non-negative coefficients.
1984 static int add_inter_constraints(struct isl_sched_graph *graph,
1985 struct isl_sched_edge *edge, __isl_take isl_map *map, int pos)
1987 unsigned total;
1988 isl_ctx *ctx = isl_map_get_ctx(map);
1989 isl_space *dim;
1990 isl_dim_map *dim_map;
1991 isl_basic_set *coef;
1992 struct isl_sched_node *src = edge->src;
1993 struct isl_sched_node *dst = edge->dst;
1995 coef = inter_coefficients(graph, map);
1997 dim = isl_space_domain(isl_space_unwrap(isl_basic_set_get_space(coef)));
1999 total = isl_basic_set_total_dim(graph->lp);
2000 dim_map = isl_dim_map_alloc(ctx, total);
2002 isl_dim_map_range(dim_map, 3 + pos, 0, 0, 0, 1, -1);
2004 isl_dim_map_range(dim_map, dst->start, 0, 0, 0, 1, 1);
2005 isl_dim_map_range(dim_map, dst->start + 1, 2, 1, 1, dst->nparam, -1);
2006 isl_dim_map_range(dim_map, dst->start + 2, 2, 1, 1, dst->nparam, 1);
2007 isl_dim_map_range(dim_map, dst->start + 2 * dst->nparam + 1, 2,
2008 isl_space_dim(dim, isl_dim_set) + src->nvar, 1,
2009 dst->nvar, -1);
2010 isl_dim_map_range(dim_map, dst->start + 2 * dst->nparam + 2, 2,
2011 isl_space_dim(dim, isl_dim_set) + src->nvar, 1,
2012 dst->nvar, 1);
2014 isl_dim_map_range(dim_map, src->start, 0, 0, 0, 1, -1);
2015 isl_dim_map_range(dim_map, src->start + 1, 2, 1, 1, src->nparam, 1);
2016 isl_dim_map_range(dim_map, src->start + 2, 2, 1, 1, src->nparam, -1);
2017 isl_dim_map_range(dim_map, src->start + 2 * src->nparam + 1, 2,
2018 isl_space_dim(dim, isl_dim_set), 1,
2019 src->nvar, 1);
2020 isl_dim_map_range(dim_map, src->start + 2 * src->nparam + 2, 2,
2021 isl_space_dim(dim, isl_dim_set), 1,
2022 src->nvar, -1);
2024 graph->lp = isl_basic_set_extend_constraints(graph->lp,
2025 coef->n_eq, coef->n_ineq);
2026 graph->lp = isl_basic_set_add_constraints_dim_map(graph->lp,
2027 coef, dim_map);
2028 isl_space_free(dim);
2030 return 0;
2033 /* Add constraints to graph->lp that force all dependence
2034 * to be respected and attempt to carry it.
2036 static int add_all_constraints(struct isl_sched_graph *graph)
2038 int i, j;
2039 int pos;
2041 pos = 0;
2042 for (i = 0; i < graph->n_edge; ++i) {
2043 struct isl_sched_edge *edge= &graph->edge[i];
2044 for (j = 0; j < edge->map->n; ++j) {
2045 isl_basic_map *bmap;
2046 isl_map *map;
2048 bmap = isl_basic_map_copy(edge->map->p[j]);
2049 map = isl_map_from_basic_map(bmap);
2051 if (edge->src == edge->dst &&
2052 add_intra_constraints(graph, edge, map, pos) < 0)
2053 return -1;
2054 if (edge->src != edge->dst &&
2055 add_inter_constraints(graph, edge, map, pos) < 0)
2056 return -1;
2057 ++pos;
2061 return 0;
2064 /* Count the number of equality and inequality constraints
2065 * that will be added to the carry_lp problem.
2066 * If once is set, then we count
2067 * each edge exactly once. Otherwise, we count as follows
2068 * validity -> 1 (>= 0)
2069 * validity+proximity -> 2 (>= 0 and upper bound)
2070 * proximity -> 2 (lower and upper bound)
2072 static int count_all_constraints(struct isl_sched_graph *graph,
2073 int *n_eq, int *n_ineq, int once)
2075 int i, j;
2077 *n_eq = *n_ineq = 0;
2078 for (i = 0; i < graph->n_edge; ++i) {
2079 struct isl_sched_edge *edge= &graph->edge[i];
2080 for (j = 0; j < edge->map->n; ++j) {
2081 isl_basic_map *bmap;
2082 isl_map *map;
2084 bmap = isl_basic_map_copy(edge->map->p[j]);
2085 map = isl_map_from_basic_map(bmap);
2087 if (count_map_constraints(graph, edge, map,
2088 n_eq, n_ineq, once) < 0)
2089 return -1;
2093 return 0;
2096 /* Construct an LP problem for finding schedule coefficients
2097 * such that the schedule carries as many dependences as possible.
2098 * In particular, for each dependence i, we bound the dependence distance
2099 * from below by e_i, with 0 <= e_i <= 1 and then maximize the sum
2100 * of all e_i's. Dependence with e_i = 0 in the solution are simply
2101 * respected, while those with e_i > 0 (in practice e_i = 1) are carried.
2102 * Note that if the dependence relation is a union of basic maps,
2103 * then we have to consider each basic map individually as it may only
2104 * be possible to carry the dependences expressed by some of those
2105 * basic maps and not all off them.
2106 * Below, we consider each of those basic maps as a separate "edge".
2108 * All variables of the LP are non-negative. The actual coefficients
2109 * may be negative, so each coefficient is represented as the difference
2110 * of two non-negative variables. The negative part always appears
2111 * immediately before the positive part.
2112 * Other than that, the variables have the following order
2114 * - sum of (1 - e_i) over all edges
2115 * - sum of positive and negative parts of all c_n coefficients
2116 * (unconstrained when computing non-parametric schedules)
2117 * - sum of positive and negative parts of all c_x coefficients
2118 * - for each edge
2119 * - e_i
2120 * - for each node
2121 * - c_i_0
2122 * - positive and negative parts of c_i_n (if parametric)
2123 * - positive and negative parts of c_i_x
2125 * The constraints are those from the edges plus three equalities
2126 * to express the sums and n_edge inequalities to express e_i <= 1.
2128 static int setup_carry_lp(isl_ctx *ctx, struct isl_sched_graph *graph)
2130 int i, j;
2131 int k;
2132 isl_space *dim;
2133 unsigned total;
2134 int n_eq, n_ineq;
2135 int n_edge;
2137 n_edge = 0;
2138 for (i = 0; i < graph->n_edge; ++i)
2139 n_edge += graph->edge[i].map->n;
2141 total = 3 + n_edge;
2142 for (i = 0; i < graph->n; ++i) {
2143 struct isl_sched_node *node = &graph->node[graph->sorted[i]];
2144 node->start = total;
2145 total += 1 + 2 * (node->nparam + node->nvar);
2148 if (count_all_constraints(graph, &n_eq, &n_ineq, 1) < 0)
2149 return -1;
2151 dim = isl_space_set_alloc(ctx, 0, total);
2152 isl_basic_set_free(graph->lp);
2153 n_eq += 3;
2154 n_ineq += n_edge;
2155 graph->lp = isl_basic_set_alloc_space(dim, 0, n_eq, n_ineq);
2156 graph->lp = isl_basic_set_set_rational(graph->lp);
2158 k = isl_basic_set_alloc_equality(graph->lp);
2159 if (k < 0)
2160 return -1;
2161 isl_seq_clr(graph->lp->eq[k], 1 + total);
2162 isl_int_set_si(graph->lp->eq[k][0], -n_edge);
2163 isl_int_set_si(graph->lp->eq[k][1], 1);
2164 for (i = 0; i < n_edge; ++i)
2165 isl_int_set_si(graph->lp->eq[k][4 + i], 1);
2167 k = isl_basic_set_alloc_equality(graph->lp);
2168 if (k < 0)
2169 return -1;
2170 isl_seq_clr(graph->lp->eq[k], 1 + total);
2171 isl_int_set_si(graph->lp->eq[k][2], -1);
2172 for (i = 0; i < graph->n; ++i) {
2173 int pos = 1 + graph->node[i].start + 1;
2175 for (j = 0; j < 2 * graph->node[i].nparam; ++j)
2176 isl_int_set_si(graph->lp->eq[k][pos + j], 1);
2179 k = isl_basic_set_alloc_equality(graph->lp);
2180 if (k < 0)
2181 return -1;
2182 isl_seq_clr(graph->lp->eq[k], 1 + total);
2183 isl_int_set_si(graph->lp->eq[k][3], -1);
2184 for (i = 0; i < graph->n; ++i) {
2185 struct isl_sched_node *node = &graph->node[i];
2186 int pos = 1 + node->start + 1 + 2 * node->nparam;
2188 for (j = 0; j < 2 * node->nvar; ++j)
2189 isl_int_set_si(graph->lp->eq[k][pos + j], 1);
2192 for (i = 0; i < n_edge; ++i) {
2193 k = isl_basic_set_alloc_inequality(graph->lp);
2194 if (k < 0)
2195 return -1;
2196 isl_seq_clr(graph->lp->ineq[k], 1 + total);
2197 isl_int_set_si(graph->lp->ineq[k][4 + i], -1);
2198 isl_int_set_si(graph->lp->ineq[k][0], 1);
2201 if (add_all_constraints(graph) < 0)
2202 return -1;
2204 return 0;
2207 /* If the schedule_split_parallel option is set and if the linear
2208 * parts of the scheduling rows for all nodes in the graphs are the same,
2209 * then split off the constant term from the linear part.
2210 * The constant term is then placed in a separate band and
2211 * the linear part is simplified.
2213 static int split_parallel(isl_ctx *ctx, struct isl_sched_graph *graph)
2215 int i;
2216 int equal = 1;
2217 int row, cols;
2218 struct isl_sched_node *node0;
2220 if (!ctx->opt->schedule_split_parallel)
2221 return 0;
2222 if (graph->n <= 1)
2223 return 0;
2225 node0 = &graph->node[0];
2226 row = isl_mat_rows(node0->sched) - 1;
2227 cols = isl_mat_cols(node0->sched);
2228 for (i = 1; i < graph->n; ++i) {
2229 struct isl_sched_node *node = &graph->node[i];
2231 if (!isl_seq_eq(node0->sched->row[row] + 1,
2232 node->sched->row[row] + 1, cols - 1))
2233 return 0;
2234 if (equal &&
2235 isl_int_ne(node0->sched->row[row][0],
2236 node->sched->row[row][0]))
2237 equal = 0;
2239 if (equal)
2240 return 0;
2242 next_band(graph);
2244 for (i = 0; i < graph->n; ++i) {
2245 struct isl_sched_node *node = &graph->node[i];
2247 isl_map_free(node->sched_map);
2248 node->sched_map = NULL;
2249 node->sched = isl_mat_add_zero_rows(node->sched, 1);
2250 if (!node->sched)
2251 return -1;
2252 isl_int_set(node->sched->row[row + 1][0],
2253 node->sched->row[row][0]);
2254 isl_int_set_si(node->sched->row[row][0], 0);
2255 node->sched = isl_mat_normalize_row(node->sched, row);
2256 if (!node->sched)
2257 return -1;
2258 node->band[graph->n_total_row] = graph->n_band;
2261 graph->n_total_row++;
2263 return 0;
2266 /* Construct a schedule row for each node such that as many dependences
2267 * as possible are carried and then continue with the next band.
2269 static int carry_dependences(isl_ctx *ctx, struct isl_sched_graph *graph)
2271 int i;
2272 int n_edge;
2273 isl_vec *sol;
2274 isl_basic_set *lp;
2276 n_edge = 0;
2277 for (i = 0; i < graph->n_edge; ++i)
2278 n_edge += graph->edge[i].map->n;
2280 if (setup_carry_lp(ctx, graph) < 0)
2281 return -1;
2283 lp = isl_basic_set_copy(graph->lp);
2284 sol = isl_tab_basic_set_non_neg_lexmin(lp);
2285 if (!sol)
2286 return -1;
2288 if (sol->size == 0) {
2289 isl_vec_free(sol);
2290 isl_die(ctx, isl_error_internal,
2291 "error in schedule construction", return -1);
2294 if (isl_int_cmp_si(sol->el[1], n_edge) >= 0) {
2295 isl_vec_free(sol);
2296 isl_die(ctx, isl_error_unknown,
2297 "unable to carry dependences", return -1);
2300 if (update_schedule(graph, sol, 0, 0) < 0)
2301 return -1;
2303 if (split_parallel(ctx, graph) < 0)
2304 return -1;
2306 return compute_next_band(ctx, graph);
2309 /* Compute a schedule for a connected dependence graph.
2310 * We try to find a sequence of as many schedule rows as possible that result
2311 * in non-negative dependence distances (independent of the previous rows
2312 * in the sequence, i.e., such that the sequence is tilable).
2313 * If we can't find any more rows we either
2314 * - split between SCCs and start over (assuming we found an interesting
2315 * pair of SCCs between which to split)
2316 * - continue with the next band (assuming the current band has at least
2317 * one row)
2318 * - try to carry as many dependences as possible and continue with the next
2319 * band
2321 * If we manage to complete the schedule, we finish off by topologically
2322 * sorting the statements based on the remaining dependences.
2324 * If ctx->opt->schedule_outer_zero_distance is set, then we force the
2325 * outermost dimension in the current band to be zero distance. If this
2326 * turns out to be impossible, we fall back on the general scheme above
2327 * and try to carry as many dependences as possible.
2329 static int compute_schedule_wcc(isl_ctx *ctx, struct isl_sched_graph *graph)
2331 int force_zero = 0;
2333 if (detect_sccs(graph) < 0)
2334 return -1;
2335 sort_sccs(graph);
2337 if (compute_maxvar(graph) < 0)
2338 return -1;
2340 if (ctx->opt->schedule_outer_zero_distance)
2341 force_zero = 1;
2343 while (graph->n_row < graph->maxvar) {
2344 isl_vec *sol;
2346 graph->src_scc = -1;
2347 graph->dst_scc = -1;
2349 if (setup_lp(ctx, graph, force_zero) < 0)
2350 return -1;
2351 sol = solve_lp(graph);
2352 if (!sol)
2353 return -1;
2354 if (sol->size == 0) {
2355 isl_vec_free(sol);
2356 if (!ctx->opt->schedule_maximize_band_depth &&
2357 graph->n_total_row > graph->band_start)
2358 return compute_next_band(ctx, graph);
2359 if (graph->src_scc >= 0)
2360 return compute_split_schedule(ctx, graph);
2361 if (graph->n_total_row > graph->band_start)
2362 return compute_next_band(ctx, graph);
2363 return carry_dependences(ctx, graph);
2365 if (update_schedule(graph, sol, 1, 1) < 0)
2366 return -1;
2367 force_zero = 0;
2370 if (graph->n_total_row > graph->band_start)
2371 next_band(graph);
2372 return sort_statements(ctx, graph);
2375 /* Compute a schedule for each component (identified by node->scc)
2376 * of the dependence graph separately and then combine the results.
2378 * The band_id is adjusted such that each component has a separate id.
2379 * Note that the band_id may have already been set to a value different
2380 * from zero by compute_split_schedule.
2382 static int compute_component_schedule(isl_ctx *ctx,
2383 struct isl_sched_graph *graph)
2385 int wcc, i;
2386 int n, n_edge;
2387 int n_total_row, orig_total_row;
2388 int n_band, orig_band;
2390 n_total_row = 0;
2391 orig_total_row = graph->n_total_row;
2392 n_band = 0;
2393 orig_band = graph->n_band;
2394 for (i = 0; i < graph->n; ++i)
2395 graph->node[i].band_id[graph->n_band] += graph->node[i].scc;
2396 for (wcc = 0; wcc < graph->scc; ++wcc) {
2397 n = 0;
2398 for (i = 0; i < graph->n; ++i)
2399 if (graph->node[i].scc == wcc)
2400 n++;
2401 n_edge = 0;
2402 for (i = 0; i < graph->n_edge; ++i)
2403 if (graph->edge[i].src->scc == wcc)
2404 n_edge++;
2406 if (compute_sub_schedule(ctx, graph, n, n_edge,
2407 &node_scc_exactly,
2408 &edge_src_scc_exactly, wcc, 1) < 0)
2409 return -1;
2410 if (graph->n_total_row > n_total_row)
2411 n_total_row = graph->n_total_row;
2412 graph->n_total_row = orig_total_row;
2413 if (graph->n_band > n_band)
2414 n_band = graph->n_band;
2415 graph->n_band = orig_band;
2418 graph->n_total_row = n_total_row;
2419 graph->n_band = n_band;
2421 return pad_schedule(graph);
2424 /* Compute a schedule for the given dependence graph.
2425 * We first check if the graph is connected (through validity dependences)
2426 * and if so compute a schedule for each component separately.
2428 static int compute_schedule(isl_ctx *ctx, struct isl_sched_graph *graph)
2430 if (detect_wccs(graph) < 0)
2431 return -1;
2433 if (graph->scc > 1)
2434 return compute_component_schedule(ctx, graph);
2436 return compute_schedule_wcc(ctx, graph);
2439 /* Compute a schedule for the given union of domains that respects
2440 * all the validity dependences and tries to minimize the dependence
2441 * distances over the proximity dependences.
2443 __isl_give isl_schedule *isl_union_set_compute_schedule(
2444 __isl_take isl_union_set *domain,
2445 __isl_take isl_union_map *validity,
2446 __isl_take isl_union_map *proximity)
2448 isl_ctx *ctx = isl_union_set_get_ctx(domain);
2449 isl_space *dim;
2450 struct isl_sched_graph graph = { 0 };
2451 isl_schedule *sched;
2453 domain = isl_union_set_align_params(domain,
2454 isl_union_map_get_space(validity));
2455 domain = isl_union_set_align_params(domain,
2456 isl_union_map_get_space(proximity));
2457 dim = isl_union_set_get_space(domain);
2458 validity = isl_union_map_align_params(validity, isl_space_copy(dim));
2459 proximity = isl_union_map_align_params(proximity, dim);
2461 if (!domain)
2462 goto error;
2464 graph.n = isl_union_set_n_set(domain);
2465 if (graph.n == 0)
2466 goto empty;
2467 if (graph_alloc(ctx, &graph, graph.n,
2468 isl_union_map_n_map(validity) + isl_union_map_n_map(proximity)) < 0)
2469 goto error;
2470 graph.root = 1;
2471 graph.n = 0;
2472 if (isl_union_set_foreach_set(domain, &extract_node, &graph) < 0)
2473 goto error;
2474 if (graph_init_table(ctx, &graph) < 0)
2475 goto error;
2476 graph.n_edge = 0;
2477 if (isl_union_map_foreach_map(validity, &extract_edge, &graph) < 0)
2478 goto error;
2479 if (graph_init_edge_table(ctx, &graph) < 0)
2480 goto error;
2481 if (isl_union_map_foreach_map(proximity, &extract_edge, &graph) < 0)
2482 goto error;
2484 if (compute_schedule(ctx, &graph) < 0)
2485 goto error;
2487 empty:
2488 sched = extract_schedule(&graph, isl_union_set_get_space(domain));
2490 graph_free(ctx, &graph);
2491 isl_union_set_free(domain);
2492 isl_union_map_free(validity);
2493 isl_union_map_free(proximity);
2495 return sched;
2496 error:
2497 graph_free(ctx, &graph);
2498 isl_union_set_free(domain);
2499 isl_union_map_free(validity);
2500 isl_union_map_free(proximity);
2501 return NULL;
2504 void *isl_schedule_free(__isl_take isl_schedule *sched)
2506 int i;
2507 if (!sched)
2508 return NULL;
2510 if (--sched->ref > 0)
2511 return NULL;
2513 for (i = 0; i < sched->n; ++i) {
2514 isl_map_free(sched->node[i].sched);
2515 free(sched->node[i].band_end);
2516 free(sched->node[i].band_id);
2517 free(sched->node[i].zero);
2519 isl_space_free(sched->dim);
2520 isl_band_list_free(sched->band_forest);
2521 free(sched);
2522 return NULL;
2525 isl_ctx *isl_schedule_get_ctx(__isl_keep isl_schedule *schedule)
2527 return schedule ? isl_space_get_ctx(schedule->dim) : NULL;
2530 __isl_give isl_union_map *isl_schedule_get_map(__isl_keep isl_schedule *sched)
2532 int i;
2533 isl_union_map *umap;
2535 if (!sched)
2536 return NULL;
2538 umap = isl_union_map_empty(isl_space_copy(sched->dim));
2539 for (i = 0; i < sched->n; ++i)
2540 umap = isl_union_map_add_map(umap,
2541 isl_map_copy(sched->node[i].sched));
2543 return umap;
2546 static __isl_give isl_band_list *construct_band_list(
2547 __isl_keep isl_schedule *schedule, __isl_keep isl_band *parent,
2548 int band_nr, int *parent_active, int n_active);
2550 /* Construct an isl_band structure for the band in the given schedule
2551 * with sequence number band_nr for the n_active nodes marked by active.
2552 * If the nodes don't have a band with the given sequence number,
2553 * then a band without members is created.
2555 * Because of the way the schedule is constructed, we know that
2556 * the position of the band inside the schedule of a node is the same
2557 * for all active nodes.
2559 static __isl_give isl_band *construct_band(__isl_keep isl_schedule *schedule,
2560 __isl_keep isl_band *parent,
2561 int band_nr, int *active, int n_active)
2563 int i, j;
2564 isl_ctx *ctx = isl_schedule_get_ctx(schedule);
2565 isl_band *band;
2566 unsigned start, end;
2568 band = isl_calloc_type(ctx, isl_band);
2569 if (!band)
2570 return NULL;
2572 band->ref = 1;
2573 band->schedule = schedule;
2574 band->parent = parent;
2576 for (i = 0; i < schedule->n; ++i)
2577 if (active[i] && schedule->node[i].n_band > band_nr + 1)
2578 break;
2580 if (i < schedule->n) {
2581 band->children = construct_band_list(schedule, band,
2582 band_nr + 1, active, n_active);
2583 if (!band->children)
2584 goto error;
2587 for (i = 0; i < schedule->n; ++i)
2588 if (active[i])
2589 break;
2591 if (i >= schedule->n)
2592 isl_die(ctx, isl_error_internal,
2593 "band without active statements", goto error);
2595 start = band_nr ? schedule->node[i].band_end[band_nr - 1] : 0;
2596 end = band_nr < schedule->node[i].n_band ?
2597 schedule->node[i].band_end[band_nr] : start;
2598 band->n = end - start;
2600 band->zero = isl_alloc_array(ctx, int, band->n);
2601 if (!band->zero)
2602 goto error;
2604 for (j = 0; j < band->n; ++j)
2605 band->zero[j] = schedule->node[i].zero[start + j];
2607 band->map = isl_union_map_empty(isl_space_copy(schedule->dim));
2608 for (i = 0; i < schedule->n; ++i) {
2609 isl_map *map;
2610 unsigned n_out;
2612 if (!active[i])
2613 continue;
2615 map = isl_map_copy(schedule->node[i].sched);
2616 n_out = isl_map_dim(map, isl_dim_out);
2617 map = isl_map_project_out(map, isl_dim_out, end, n_out - end);
2618 map = isl_map_project_out(map, isl_dim_out, 0, start);
2619 band->map = isl_union_map_union(band->map,
2620 isl_union_map_from_map(map));
2622 if (!band->map)
2623 goto error;
2625 return band;
2626 error:
2627 isl_band_free(band);
2628 return NULL;
2631 /* Construct a list of bands that start at the same position (with
2632 * sequence number band_nr) in the schedules of the nodes that
2633 * were active in the parent band.
2635 * A separate isl_band structure is created for each band_id
2636 * and for each node that does not have a band with sequence
2637 * number band_nr. In the latter case, a band without members
2638 * is created.
2639 * This ensures that if a band has any children, then each node
2640 * that was active in the band is active in exactly one of the children.
2642 static __isl_give isl_band_list *construct_band_list(
2643 __isl_keep isl_schedule *schedule, __isl_keep isl_band *parent,
2644 int band_nr, int *parent_active, int n_active)
2646 int i, j;
2647 isl_ctx *ctx = isl_schedule_get_ctx(schedule);
2648 int *active;
2649 int n_band;
2650 isl_band_list *list;
2652 n_band = 0;
2653 for (i = 0; i < n_active; ++i) {
2654 for (j = 0; j < schedule->n; ++j) {
2655 if (!parent_active[j])
2656 continue;
2657 if (schedule->node[j].n_band <= band_nr)
2658 continue;
2659 if (schedule->node[j].band_id[band_nr] == i) {
2660 n_band++;
2661 break;
2665 for (j = 0; j < schedule->n; ++j)
2666 if (schedule->node[j].n_band <= band_nr)
2667 n_band++;
2669 if (n_band == 1) {
2670 isl_band *band;
2671 list = isl_band_list_alloc(ctx, n_band);
2672 band = construct_band(schedule, parent, band_nr,
2673 parent_active, n_active);
2674 return isl_band_list_add(list, band);
2677 active = isl_alloc_array(ctx, int, schedule->n);
2678 if (!active)
2679 return NULL;
2681 list = isl_band_list_alloc(ctx, n_band);
2683 for (i = 0; i < n_active; ++i) {
2684 int n = 0;
2685 isl_band *band;
2687 for (j = 0; j < schedule->n; ++j) {
2688 active[j] = parent_active[j] &&
2689 schedule->node[j].n_band > band_nr &&
2690 schedule->node[j].band_id[band_nr] == i;
2691 if (active[j])
2692 n++;
2694 if (n == 0)
2695 continue;
2697 band = construct_band(schedule, parent, band_nr, active, n);
2699 list = isl_band_list_add(list, band);
2701 for (i = 0; i < schedule->n; ++i) {
2702 isl_band *band;
2703 if (!parent_active[i])
2704 continue;
2705 if (schedule->node[i].n_band > band_nr)
2706 continue;
2707 for (j = 0; j < schedule->n; ++j)
2708 active[j] = j == i;
2709 band = construct_band(schedule, parent, band_nr, active, 1);
2710 list = isl_band_list_add(list, band);
2713 free(active);
2715 return list;
2718 /* Construct a band forest representation of the schedule and
2719 * return the list of roots.
2721 static __isl_give isl_band_list *construct_forest(
2722 __isl_keep isl_schedule *schedule)
2724 int i;
2725 isl_ctx *ctx = isl_schedule_get_ctx(schedule);
2726 isl_band_list *forest;
2727 int *active;
2729 active = isl_alloc_array(ctx, int, schedule->n);
2730 if (!active)
2731 return NULL;
2733 for (i = 0; i < schedule->n; ++i)
2734 active[i] = 1;
2736 forest = construct_band_list(schedule, NULL, 0, active, schedule->n);
2738 free(active);
2740 return forest;
2743 /* Return the roots of a band forest representation of the schedule.
2745 __isl_give isl_band_list *isl_schedule_get_band_forest(
2746 __isl_keep isl_schedule *schedule)
2748 if (!schedule)
2749 return NULL;
2750 if (!schedule->band_forest)
2751 schedule->band_forest = construct_forest(schedule);
2752 return isl_band_list_dup(schedule->band_forest);
2755 static __isl_give isl_printer *print_band_list(__isl_take isl_printer *p,
2756 __isl_keep isl_band_list *list);
2758 static __isl_give isl_printer *print_band(__isl_take isl_printer *p,
2759 __isl_keep isl_band *band)
2761 isl_band_list *children;
2763 p = isl_printer_start_line(p);
2764 p = isl_printer_print_union_map(p, band->map);
2765 p = isl_printer_end_line(p);
2767 if (!isl_band_has_children(band))
2768 return p;
2770 children = isl_band_get_children(band);
2772 p = isl_printer_indent(p, 4);
2773 p = print_band_list(p, children);
2774 p = isl_printer_indent(p, -4);
2776 isl_band_list_free(children);
2778 return p;
2781 static __isl_give isl_printer *print_band_list(__isl_take isl_printer *p,
2782 __isl_keep isl_band_list *list)
2784 int i, n;
2786 n = isl_band_list_n_band(list);
2787 for (i = 0; i < n; ++i) {
2788 isl_band *band;
2789 band = isl_band_list_get_band(list, i);
2790 p = print_band(p, band);
2791 isl_band_free(band);
2794 return p;
2797 __isl_give isl_printer *isl_printer_print_schedule(__isl_take isl_printer *p,
2798 __isl_keep isl_schedule *schedule)
2800 isl_band_list *forest;
2802 forest = isl_schedule_get_band_forest(schedule);
2804 p = print_band_list(p, forest);
2806 isl_band_list_free(forest);
2808 return p;
2811 void isl_schedule_dump(__isl_keep isl_schedule *schedule)
2813 isl_printer *printer;
2815 if (!schedule)
2816 return;
2818 printer = isl_printer_to_file(isl_schedule_get_ctx(schedule), stderr);
2819 printer = isl_printer_print_schedule(printer, schedule);
2821 isl_printer_free(printer);