isl_scheduler.c: setup_lp: extract out add_sum_constraint
[isl.git] / isl_scheduler.c
blob31c74479d3c77e4bca1990743e9fe0ca305fb284
1 /*
2 * Copyright 2011 INRIA Saclay
3 * Copyright 2012-2014 Ecole Normale Superieure
4 * Copyright 2015-2016 Sven Verdoolaege
6 * Use of this software is governed by the MIT license
8 * Written by Sven Verdoolaege, INRIA Saclay - Ile-de-France,
9 * Parc Club Orsay Universite, ZAC des vignes, 4 rue Jacques Monod,
10 * 91893 Orsay, France
11 * and Ecole Normale Superieure, 45 rue d'Ulm, 75230 Paris, France
14 #include <isl_ctx_private.h>
15 #include <isl_map_private.h>
16 #include <isl_space_private.h>
17 #include <isl_aff_private.h>
18 #include <isl/hash.h>
19 #include <isl/constraint.h>
20 #include <isl/schedule.h>
21 #include <isl/schedule_node.h>
22 #include <isl_mat_private.h>
23 #include <isl_vec_private.h>
24 #include <isl/set.h>
25 #include <isl/union_set.h>
26 #include <isl_seq.h>
27 #include <isl_tab.h>
28 #include <isl_dim_map.h>
29 #include <isl/map_to_basic_set.h>
30 #include <isl_sort.h>
31 #include <isl_options_private.h>
32 #include <isl_tarjan.h>
33 #include <isl_morph.h>
36 * The scheduling algorithm implemented in this file was inspired by
37 * Bondhugula et al., "Automatic Transformations for Communication-Minimized
38 * Parallelization and Locality Optimization in the Polyhedral Model".
41 enum isl_edge_type {
42 isl_edge_validity = 0,
43 isl_edge_first = isl_edge_validity,
44 isl_edge_coincidence,
45 isl_edge_condition,
46 isl_edge_conditional_validity,
47 isl_edge_proximity,
48 isl_edge_last = isl_edge_proximity,
49 isl_edge_local
52 /* The constraints that need to be satisfied by a schedule on "domain".
54 * "context" specifies extra constraints on the parameters.
56 * "validity" constraints map domain elements i to domain elements
57 * that should be scheduled after i. (Hard constraint)
58 * "proximity" constraints map domain elements i to domains elements
59 * that should be scheduled as early as possible after i (or before i).
60 * (Soft constraint)
62 * "condition" and "conditional_validity" constraints map possibly "tagged"
63 * domain elements i -> s to "tagged" domain elements j -> t.
64 * The elements of the "conditional_validity" constraints, but without the
65 * tags (i.e., the elements i -> j) are treated as validity constraints,
66 * except that during the construction of a tilable band,
67 * the elements of the "conditional_validity" constraints may be violated
68 * provided that all adjacent elements of the "condition" constraints
69 * are local within the band.
70 * A dependence is local within a band if domain and range are mapped
71 * to the same schedule point by the band.
73 struct isl_schedule_constraints {
74 isl_union_set *domain;
75 isl_set *context;
77 isl_union_map *constraint[isl_edge_last + 1];
80 __isl_give isl_schedule_constraints *isl_schedule_constraints_copy(
81 __isl_keep isl_schedule_constraints *sc)
83 isl_ctx *ctx;
84 isl_schedule_constraints *sc_copy;
85 enum isl_edge_type i;
87 ctx = isl_union_set_get_ctx(sc->domain);
88 sc_copy = isl_calloc_type(ctx, struct isl_schedule_constraints);
89 if (!sc_copy)
90 return NULL;
92 sc_copy->domain = isl_union_set_copy(sc->domain);
93 sc_copy->context = isl_set_copy(sc->context);
94 if (!sc_copy->domain || !sc_copy->context)
95 return isl_schedule_constraints_free(sc_copy);
97 for (i = isl_edge_first; i <= isl_edge_last; ++i) {
98 sc_copy->constraint[i] = isl_union_map_copy(sc->constraint[i]);
99 if (!sc_copy->constraint[i])
100 return isl_schedule_constraints_free(sc_copy);
103 return sc_copy;
107 /* Construct an isl_schedule_constraints object for computing a schedule
108 * on "domain". The initial object does not impose any constraints.
110 __isl_give isl_schedule_constraints *isl_schedule_constraints_on_domain(
111 __isl_take isl_union_set *domain)
113 isl_ctx *ctx;
114 isl_space *space;
115 isl_schedule_constraints *sc;
116 isl_union_map *empty;
117 enum isl_edge_type i;
119 if (!domain)
120 return NULL;
122 ctx = isl_union_set_get_ctx(domain);
123 sc = isl_calloc_type(ctx, struct isl_schedule_constraints);
124 if (!sc)
125 goto error;
127 space = isl_union_set_get_space(domain);
128 sc->domain = domain;
129 sc->context = isl_set_universe(isl_space_copy(space));
130 empty = isl_union_map_empty(space);
131 for (i = isl_edge_first; i <= isl_edge_last; ++i) {
132 sc->constraint[i] = isl_union_map_copy(empty);
133 if (!sc->constraint[i])
134 sc->domain = isl_union_set_free(sc->domain);
136 isl_union_map_free(empty);
138 if (!sc->domain || !sc->context)
139 return isl_schedule_constraints_free(sc);
141 return sc;
142 error:
143 isl_union_set_free(domain);
144 return NULL;
147 /* Replace the context of "sc" by "context".
149 __isl_give isl_schedule_constraints *isl_schedule_constraints_set_context(
150 __isl_take isl_schedule_constraints *sc, __isl_take isl_set *context)
152 if (!sc || !context)
153 goto error;
155 isl_set_free(sc->context);
156 sc->context = context;
158 return sc;
159 error:
160 isl_schedule_constraints_free(sc);
161 isl_set_free(context);
162 return NULL;
165 /* Replace the validity constraints of "sc" by "validity".
167 __isl_give isl_schedule_constraints *isl_schedule_constraints_set_validity(
168 __isl_take isl_schedule_constraints *sc,
169 __isl_take isl_union_map *validity)
171 if (!sc || !validity)
172 goto error;
174 isl_union_map_free(sc->constraint[isl_edge_validity]);
175 sc->constraint[isl_edge_validity] = validity;
177 return sc;
178 error:
179 isl_schedule_constraints_free(sc);
180 isl_union_map_free(validity);
181 return NULL;
184 /* Replace the coincidence constraints of "sc" by "coincidence".
186 __isl_give isl_schedule_constraints *isl_schedule_constraints_set_coincidence(
187 __isl_take isl_schedule_constraints *sc,
188 __isl_take isl_union_map *coincidence)
190 if (!sc || !coincidence)
191 goto error;
193 isl_union_map_free(sc->constraint[isl_edge_coincidence]);
194 sc->constraint[isl_edge_coincidence] = coincidence;
196 return sc;
197 error:
198 isl_schedule_constraints_free(sc);
199 isl_union_map_free(coincidence);
200 return NULL;
203 /* Replace the proximity constraints of "sc" by "proximity".
205 __isl_give isl_schedule_constraints *isl_schedule_constraints_set_proximity(
206 __isl_take isl_schedule_constraints *sc,
207 __isl_take isl_union_map *proximity)
209 if (!sc || !proximity)
210 goto error;
212 isl_union_map_free(sc->constraint[isl_edge_proximity]);
213 sc->constraint[isl_edge_proximity] = proximity;
215 return sc;
216 error:
217 isl_schedule_constraints_free(sc);
218 isl_union_map_free(proximity);
219 return NULL;
222 /* Replace the conditional validity constraints of "sc" by "condition"
223 * and "validity".
225 __isl_give isl_schedule_constraints *
226 isl_schedule_constraints_set_conditional_validity(
227 __isl_take isl_schedule_constraints *sc,
228 __isl_take isl_union_map *condition,
229 __isl_take isl_union_map *validity)
231 if (!sc || !condition || !validity)
232 goto error;
234 isl_union_map_free(sc->constraint[isl_edge_condition]);
235 sc->constraint[isl_edge_condition] = condition;
236 isl_union_map_free(sc->constraint[isl_edge_conditional_validity]);
237 sc->constraint[isl_edge_conditional_validity] = validity;
239 return sc;
240 error:
241 isl_schedule_constraints_free(sc);
242 isl_union_map_free(condition);
243 isl_union_map_free(validity);
244 return NULL;
247 __isl_null isl_schedule_constraints *isl_schedule_constraints_free(
248 __isl_take isl_schedule_constraints *sc)
250 enum isl_edge_type i;
252 if (!sc)
253 return NULL;
255 isl_union_set_free(sc->domain);
256 isl_set_free(sc->context);
257 for (i = isl_edge_first; i <= isl_edge_last; ++i)
258 isl_union_map_free(sc->constraint[i]);
260 free(sc);
262 return NULL;
265 isl_ctx *isl_schedule_constraints_get_ctx(
266 __isl_keep isl_schedule_constraints *sc)
268 return sc ? isl_union_set_get_ctx(sc->domain) : NULL;
271 /* Return the domain of "sc".
273 __isl_give isl_union_set *isl_schedule_constraints_get_domain(
274 __isl_keep isl_schedule_constraints *sc)
276 if (!sc)
277 return NULL;
279 return isl_union_set_copy(sc->domain);
282 /* Return the validity constraints of "sc".
284 __isl_give isl_union_map *isl_schedule_constraints_get_validity(
285 __isl_keep isl_schedule_constraints *sc)
287 if (!sc)
288 return NULL;
290 return isl_union_map_copy(sc->constraint[isl_edge_validity]);
293 /* Return the coincidence constraints of "sc".
295 __isl_give isl_union_map *isl_schedule_constraints_get_coincidence(
296 __isl_keep isl_schedule_constraints *sc)
298 if (!sc)
299 return NULL;
301 return isl_union_map_copy(sc->constraint[isl_edge_coincidence]);
304 /* Return the proximity constraints of "sc".
306 __isl_give isl_union_map *isl_schedule_constraints_get_proximity(
307 __isl_keep isl_schedule_constraints *sc)
309 if (!sc)
310 return NULL;
312 return isl_union_map_copy(sc->constraint[isl_edge_proximity]);
315 /* Return the conditional validity constraints of "sc".
317 __isl_give isl_union_map *isl_schedule_constraints_get_conditional_validity(
318 __isl_keep isl_schedule_constraints *sc)
320 if (!sc)
321 return NULL;
323 return
324 isl_union_map_copy(sc->constraint[isl_edge_conditional_validity]);
327 /* Return the conditions for the conditional validity constraints of "sc".
329 __isl_give isl_union_map *
330 isl_schedule_constraints_get_conditional_validity_condition(
331 __isl_keep isl_schedule_constraints *sc)
333 if (!sc)
334 return NULL;
336 return isl_union_map_copy(sc->constraint[isl_edge_condition]);
339 /* Can a schedule constraint of type "type" be tagged?
341 static int may_be_tagged(enum isl_edge_type type)
343 if (type == isl_edge_condition || type == isl_edge_conditional_validity)
344 return 1;
345 return 0;
348 /* Apply "umap" to the domains of the wrapped relations
349 * inside the domain and range of "c".
351 * That is, for each map of the form
353 * [D -> S] -> [E -> T]
355 * in "c", apply "umap" to D and E.
357 * D is exposed by currying the relation to
359 * D -> [S -> [E -> T]]
361 * E is exposed by doing the same to the inverse of "c".
363 static __isl_give isl_union_map *apply_factor_domain(
364 __isl_take isl_union_map *c, __isl_keep isl_union_map *umap)
366 c = isl_union_map_curry(c);
367 c = isl_union_map_apply_domain(c, isl_union_map_copy(umap));
368 c = isl_union_map_uncurry(c);
370 c = isl_union_map_reverse(c);
371 c = isl_union_map_curry(c);
372 c = isl_union_map_apply_domain(c, isl_union_map_copy(umap));
373 c = isl_union_map_uncurry(c);
374 c = isl_union_map_reverse(c);
376 return c;
379 /* Apply "umap" to domain and range of "c".
380 * If "tag" is set, then "c" may contain tags and then "umap"
381 * needs to be applied to the domains of the wrapped relations
382 * inside the domain and range of "c".
384 static __isl_give isl_union_map *apply(__isl_take isl_union_map *c,
385 __isl_keep isl_union_map *umap, int tag)
387 isl_union_map *t;
389 if (tag)
390 t = isl_union_map_copy(c);
391 c = isl_union_map_apply_domain(c, isl_union_map_copy(umap));
392 c = isl_union_map_apply_range(c, isl_union_map_copy(umap));
393 if (!tag)
394 return c;
395 t = apply_factor_domain(t, umap);
396 c = isl_union_map_union(c, t);
397 return c;
400 /* Apply "umap" to the domain of the schedule constraints "sc".
402 * The two sides of the various schedule constraints are adjusted
403 * accordingly.
405 __isl_give isl_schedule_constraints *isl_schedule_constraints_apply(
406 __isl_take isl_schedule_constraints *sc,
407 __isl_take isl_union_map *umap)
409 enum isl_edge_type i;
411 if (!sc || !umap)
412 goto error;
414 for (i = isl_edge_first; i <= isl_edge_last; ++i) {
415 int tag = may_be_tagged(i);
417 sc->constraint[i] = apply(sc->constraint[i], umap, tag);
418 if (!sc->constraint[i])
419 goto error;
421 sc->domain = isl_union_set_apply(sc->domain, umap);
422 if (!sc->domain)
423 return isl_schedule_constraints_free(sc);
425 return sc;
426 error:
427 isl_schedule_constraints_free(sc);
428 isl_union_map_free(umap);
429 return NULL;
432 void isl_schedule_constraints_dump(__isl_keep isl_schedule_constraints *sc)
434 if (!sc)
435 return;
437 fprintf(stderr, "domain: ");
438 isl_union_set_dump(sc->domain);
439 fprintf(stderr, "context: ");
440 isl_set_dump(sc->context);
441 fprintf(stderr, "validity: ");
442 isl_union_map_dump(sc->constraint[isl_edge_validity]);
443 fprintf(stderr, "proximity: ");
444 isl_union_map_dump(sc->constraint[isl_edge_proximity]);
445 fprintf(stderr, "coincidence: ");
446 isl_union_map_dump(sc->constraint[isl_edge_coincidence]);
447 fprintf(stderr, "condition: ");
448 isl_union_map_dump(sc->constraint[isl_edge_condition]);
449 fprintf(stderr, "conditional_validity: ");
450 isl_union_map_dump(sc->constraint[isl_edge_conditional_validity]);
453 /* Align the parameters of the fields of "sc".
455 static __isl_give isl_schedule_constraints *
456 isl_schedule_constraints_align_params(__isl_take isl_schedule_constraints *sc)
458 isl_space *space;
459 enum isl_edge_type i;
461 if (!sc)
462 return NULL;
464 space = isl_union_set_get_space(sc->domain);
465 space = isl_space_align_params(space, isl_set_get_space(sc->context));
466 for (i = isl_edge_first; i <= isl_edge_last; ++i)
467 space = isl_space_align_params(space,
468 isl_union_map_get_space(sc->constraint[i]));
470 for (i = isl_edge_first; i <= isl_edge_last; ++i) {
471 sc->constraint[i] = isl_union_map_align_params(
472 sc->constraint[i], isl_space_copy(space));
473 if (!sc->constraint[i])
474 space = isl_space_free(space);
476 sc->context = isl_set_align_params(sc->context, isl_space_copy(space));
477 sc->domain = isl_union_set_align_params(sc->domain, space);
478 if (!sc->context || !sc->domain)
479 return isl_schedule_constraints_free(sc);
481 return sc;
484 /* Return the total number of isl_maps in the constraints of "sc".
486 static __isl_give int isl_schedule_constraints_n_map(
487 __isl_keep isl_schedule_constraints *sc)
489 enum isl_edge_type i;
490 int n = 0;
492 for (i = isl_edge_first; i <= isl_edge_last; ++i)
493 n += isl_union_map_n_map(sc->constraint[i]);
495 return n;
498 /* Internal information about a node that is used during the construction
499 * of a schedule.
500 * space represents the space in which the domain lives
501 * sched is a matrix representation of the schedule being constructed
502 * for this node; if compressed is set, then this schedule is
503 * defined over the compressed domain space
504 * sched_map is an isl_map representation of the same (partial) schedule
505 * sched_map may be NULL; if compressed is set, then this map
506 * is defined over the uncompressed domain space
507 * rank is the number of linearly independent rows in the linear part
508 * of sched
509 * the columns of cmap represent a change of basis for the schedule
510 * coefficients; the first rank columns span the linear part of
511 * the schedule rows
512 * cinv is the inverse of cmap.
513 * ctrans is the transpose of cmap.
514 * start is the first variable in the LP problem in the sequences that
515 * represents the schedule coefficients of this node
516 * nvar is the dimension of the domain
517 * nparam is the number of parameters or 0 if we are not constructing
518 * a parametric schedule
520 * If compressed is set, then hull represents the constraints
521 * that were used to derive the compression, while compress and
522 * decompress map the original space to the compressed space and
523 * vice versa.
525 * scc is the index of SCC (or WCC) this node belongs to
527 * "cluster" is only used inside extract_clusters and identifies
528 * the cluster of SCCs that the node belongs to.
530 * coincident contains a boolean for each of the rows of the schedule,
531 * indicating whether the corresponding scheduling dimension satisfies
532 * the coincidence constraints in the sense that the corresponding
533 * dependence distances are zero.
535 struct isl_sched_node {
536 isl_space *space;
537 int compressed;
538 isl_set *hull;
539 isl_multi_aff *compress;
540 isl_multi_aff *decompress;
541 isl_mat *sched;
542 isl_map *sched_map;
543 int rank;
544 isl_mat *cmap;
545 isl_mat *cinv;
546 isl_mat *ctrans;
547 int start;
548 int nvar;
549 int nparam;
551 int scc;
552 int cluster;
554 int *coincident;
557 static int node_has_space(const void *entry, const void *val)
559 struct isl_sched_node *node = (struct isl_sched_node *)entry;
560 isl_space *dim = (isl_space *)val;
562 return isl_space_is_equal(node->space, dim);
565 static int node_scc_exactly(struct isl_sched_node *node, int scc)
567 return node->scc == scc;
570 static int node_scc_at_most(struct isl_sched_node *node, int scc)
572 return node->scc <= scc;
575 static int node_scc_at_least(struct isl_sched_node *node, int scc)
577 return node->scc >= scc;
580 /* An edge in the dependence graph. An edge may be used to
581 * ensure validity of the generated schedule, to minimize the dependence
582 * distance or both
584 * map is the dependence relation, with i -> j in the map if j depends on i
585 * tagged_condition and tagged_validity contain the union of all tagged
586 * condition or conditional validity dependence relations that
587 * specialize the dependence relation "map"; that is,
588 * if (i -> a) -> (j -> b) is an element of "tagged_condition"
589 * or "tagged_validity", then i -> j is an element of "map".
590 * If these fields are NULL, then they represent the empty relation.
591 * src is the source node
592 * dst is the sink node
594 * types is a bit vector containing the types of this edge.
595 * validity is set if the edge is used to ensure correctness
596 * coincidence is used to enforce zero dependence distances
597 * proximity is set if the edge is used to minimize dependence distances
598 * condition is set if the edge represents a condition
599 * for a conditional validity schedule constraint
600 * local can only be set for condition edges and indicates that
601 * the dependence distance over the edge should be zero
602 * conditional_validity is set if the edge is used to conditionally
603 * ensure correctness
605 * For validity edges, start and end mark the sequence of inequality
606 * constraints in the LP problem that encode the validity constraint
607 * corresponding to this edge.
609 * During clustering, an edge may be marked "no_merge" if it should
610 * not be used to merge clusters.
611 * The weight is also only used during clustering and it is
612 * an indication of how many schedule dimensions on either side
613 * of the schedule constraints can be aligned.
614 * If the weight is negative, then this means that this edge was postponed
615 * by has_bounded_distances or any_no_merge. The original weight can
616 * be retrieved by adding 1 + graph->max_weight, with "graph"
617 * the graph containing this edge.
619 struct isl_sched_edge {
620 isl_map *map;
621 isl_union_map *tagged_condition;
622 isl_union_map *tagged_validity;
624 struct isl_sched_node *src;
625 struct isl_sched_node *dst;
627 unsigned types;
629 int start;
630 int end;
632 int no_merge;
633 int weight;
636 /* Is "edge" marked as being of type "type"?
638 static int is_type(struct isl_sched_edge *edge, enum isl_edge_type type)
640 return ISL_FL_ISSET(edge->types, 1 << type);
643 /* Mark "edge" as being of type "type".
645 static void set_type(struct isl_sched_edge *edge, enum isl_edge_type type)
647 ISL_FL_SET(edge->types, 1 << type);
650 /* No longer mark "edge" as being of type "type"?
652 static void clear_type(struct isl_sched_edge *edge, enum isl_edge_type type)
654 ISL_FL_CLR(edge->types, 1 << type);
657 /* Is "edge" marked as a validity edge?
659 static int is_validity(struct isl_sched_edge *edge)
661 return is_type(edge, isl_edge_validity);
664 /* Mark "edge" as a validity edge.
666 static void set_validity(struct isl_sched_edge *edge)
668 set_type(edge, isl_edge_validity);
671 /* Is "edge" marked as a proximity edge?
673 static int is_proximity(struct isl_sched_edge *edge)
675 return is_type(edge, isl_edge_proximity);
678 /* Is "edge" marked as a local edge?
680 static int is_local(struct isl_sched_edge *edge)
682 return is_type(edge, isl_edge_local);
685 /* Mark "edge" as a local edge.
687 static void set_local(struct isl_sched_edge *edge)
689 set_type(edge, isl_edge_local);
692 /* No longer mark "edge" as a local edge.
694 static void clear_local(struct isl_sched_edge *edge)
696 clear_type(edge, isl_edge_local);
699 /* Is "edge" marked as a coincidence edge?
701 static int is_coincidence(struct isl_sched_edge *edge)
703 return is_type(edge, isl_edge_coincidence);
706 /* Is "edge" marked as a condition edge?
708 static int is_condition(struct isl_sched_edge *edge)
710 return is_type(edge, isl_edge_condition);
713 /* Is "edge" marked as a conditional validity edge?
715 static int is_conditional_validity(struct isl_sched_edge *edge)
717 return is_type(edge, isl_edge_conditional_validity);
720 /* Internal information about the dependence graph used during
721 * the construction of the schedule.
723 * intra_hmap is a cache, mapping dependence relations to their dual,
724 * for dependences from a node to itself
725 * inter_hmap is a cache, mapping dependence relations to their dual,
726 * for dependences between distinct nodes
727 * if compression is involved then the key for these maps
728 * is the original, uncompressed dependence relation, while
729 * the value is the dual of the compressed dependence relation.
731 * n is the number of nodes
732 * node is the list of nodes
733 * maxvar is the maximal number of variables over all nodes
734 * max_row is the allocated number of rows in the schedule
735 * n_row is the current (maximal) number of linearly independent
736 * rows in the node schedules
737 * n_total_row is the current number of rows in the node schedules
738 * band_start is the starting row in the node schedules of the current band
739 * root is set if this graph is the original dependence graph,
740 * without any splitting
742 * sorted contains a list of node indices sorted according to the
743 * SCC to which a node belongs
745 * n_edge is the number of edges
746 * edge is the list of edges
747 * max_edge contains the maximal number of edges of each type;
748 * in particular, it contains the number of edges in the inital graph.
749 * edge_table contains pointers into the edge array, hashed on the source
750 * and sink spaces; there is one such table for each type;
751 * a given edge may be referenced from more than one table
752 * if the corresponding relation appears in more than one of the
753 * sets of dependences; however, for each type there is only
754 * a single edge between a given pair of source and sink space
755 * in the entire graph
757 * node_table contains pointers into the node array, hashed on the space
759 * region contains a list of variable sequences that should be non-trivial
761 * lp contains the (I)LP problem used to obtain new schedule rows
763 * src_scc and dst_scc are the source and sink SCCs of an edge with
764 * conflicting constraints
766 * scc represents the number of components
767 * weak is set if the components are weakly connected
769 * max_weight is used during clustering and represents the maximal
770 * weight of the relevant proximity edges.
772 struct isl_sched_graph {
773 isl_map_to_basic_set *intra_hmap;
774 isl_map_to_basic_set *inter_hmap;
776 struct isl_sched_node *node;
777 int n;
778 int maxvar;
779 int max_row;
780 int n_row;
782 int *sorted;
784 int n_total_row;
785 int band_start;
787 int root;
789 struct isl_sched_edge *edge;
790 int n_edge;
791 int max_edge[isl_edge_last + 1];
792 struct isl_hash_table *edge_table[isl_edge_last + 1];
794 struct isl_hash_table *node_table;
795 struct isl_region *region;
797 isl_basic_set *lp;
799 int src_scc;
800 int dst_scc;
802 int scc;
803 int weak;
805 int max_weight;
808 /* Initialize node_table based on the list of nodes.
810 static int graph_init_table(isl_ctx *ctx, struct isl_sched_graph *graph)
812 int i;
814 graph->node_table = isl_hash_table_alloc(ctx, graph->n);
815 if (!graph->node_table)
816 return -1;
818 for (i = 0; i < graph->n; ++i) {
819 struct isl_hash_table_entry *entry;
820 uint32_t hash;
822 hash = isl_space_get_hash(graph->node[i].space);
823 entry = isl_hash_table_find(ctx, graph->node_table, hash,
824 &node_has_space,
825 graph->node[i].space, 1);
826 if (!entry)
827 return -1;
828 entry->data = &graph->node[i];
831 return 0;
834 /* Return a pointer to the node that lives within the given space,
835 * or NULL if there is no such node.
837 static struct isl_sched_node *graph_find_node(isl_ctx *ctx,
838 struct isl_sched_graph *graph, __isl_keep isl_space *dim)
840 struct isl_hash_table_entry *entry;
841 uint32_t hash;
843 hash = isl_space_get_hash(dim);
844 entry = isl_hash_table_find(ctx, graph->node_table, hash,
845 &node_has_space, dim, 0);
847 return entry ? entry->data : NULL;
850 static int edge_has_src_and_dst(const void *entry, const void *val)
852 const struct isl_sched_edge *edge = entry;
853 const struct isl_sched_edge *temp = val;
855 return edge->src == temp->src && edge->dst == temp->dst;
858 /* Add the given edge to graph->edge_table[type].
860 static isl_stat graph_edge_table_add(isl_ctx *ctx,
861 struct isl_sched_graph *graph, enum isl_edge_type type,
862 struct isl_sched_edge *edge)
864 struct isl_hash_table_entry *entry;
865 uint32_t hash;
867 hash = isl_hash_init();
868 hash = isl_hash_builtin(hash, edge->src);
869 hash = isl_hash_builtin(hash, edge->dst);
870 entry = isl_hash_table_find(ctx, graph->edge_table[type], hash,
871 &edge_has_src_and_dst, edge, 1);
872 if (!entry)
873 return isl_stat_error;
874 entry->data = edge;
876 return isl_stat_ok;
879 /* Allocate the edge_tables based on the maximal number of edges of
880 * each type.
882 static int graph_init_edge_tables(isl_ctx *ctx, struct isl_sched_graph *graph)
884 int i;
886 for (i = 0; i <= isl_edge_last; ++i) {
887 graph->edge_table[i] = isl_hash_table_alloc(ctx,
888 graph->max_edge[i]);
889 if (!graph->edge_table[i])
890 return -1;
893 return 0;
896 /* If graph->edge_table[type] contains an edge from the given source
897 * to the given destination, then return the hash table entry of this edge.
898 * Otherwise, return NULL.
900 static struct isl_hash_table_entry *graph_find_edge_entry(
901 struct isl_sched_graph *graph,
902 enum isl_edge_type type,
903 struct isl_sched_node *src, struct isl_sched_node *dst)
905 isl_ctx *ctx = isl_space_get_ctx(src->space);
906 uint32_t hash;
907 struct isl_sched_edge temp = { .src = src, .dst = dst };
909 hash = isl_hash_init();
910 hash = isl_hash_builtin(hash, temp.src);
911 hash = isl_hash_builtin(hash, temp.dst);
912 return isl_hash_table_find(ctx, graph->edge_table[type], hash,
913 &edge_has_src_and_dst, &temp, 0);
917 /* If graph->edge_table[type] contains an edge from the given source
918 * to the given destination, then return this edge.
919 * Otherwise, return NULL.
921 static struct isl_sched_edge *graph_find_edge(struct isl_sched_graph *graph,
922 enum isl_edge_type type,
923 struct isl_sched_node *src, struct isl_sched_node *dst)
925 struct isl_hash_table_entry *entry;
927 entry = graph_find_edge_entry(graph, type, src, dst);
928 if (!entry)
929 return NULL;
931 return entry->data;
934 /* Check whether the dependence graph has an edge of the given type
935 * between the given two nodes.
937 static isl_bool graph_has_edge(struct isl_sched_graph *graph,
938 enum isl_edge_type type,
939 struct isl_sched_node *src, struct isl_sched_node *dst)
941 struct isl_sched_edge *edge;
942 isl_bool empty;
944 edge = graph_find_edge(graph, type, src, dst);
945 if (!edge)
946 return 0;
948 empty = isl_map_plain_is_empty(edge->map);
949 if (empty < 0)
950 return isl_bool_error;
952 return !empty;
955 /* Look for any edge with the same src, dst and map fields as "model".
957 * Return the matching edge if one can be found.
958 * Return "model" if no matching edge is found.
959 * Return NULL on error.
961 static struct isl_sched_edge *graph_find_matching_edge(
962 struct isl_sched_graph *graph, struct isl_sched_edge *model)
964 enum isl_edge_type i;
965 struct isl_sched_edge *edge;
967 for (i = isl_edge_first; i <= isl_edge_last; ++i) {
968 int is_equal;
970 edge = graph_find_edge(graph, i, model->src, model->dst);
971 if (!edge)
972 continue;
973 is_equal = isl_map_plain_is_equal(model->map, edge->map);
974 if (is_equal < 0)
975 return NULL;
976 if (is_equal)
977 return edge;
980 return model;
983 /* Remove the given edge from all the edge_tables that refer to it.
985 static void graph_remove_edge(struct isl_sched_graph *graph,
986 struct isl_sched_edge *edge)
988 isl_ctx *ctx = isl_map_get_ctx(edge->map);
989 enum isl_edge_type i;
991 for (i = isl_edge_first; i <= isl_edge_last; ++i) {
992 struct isl_hash_table_entry *entry;
994 entry = graph_find_edge_entry(graph, i, edge->src, edge->dst);
995 if (!entry)
996 continue;
997 if (entry->data != edge)
998 continue;
999 isl_hash_table_remove(ctx, graph->edge_table[i], entry);
1003 /* Check whether the dependence graph has any edge
1004 * between the given two nodes.
1006 static isl_bool graph_has_any_edge(struct isl_sched_graph *graph,
1007 struct isl_sched_node *src, struct isl_sched_node *dst)
1009 enum isl_edge_type i;
1010 isl_bool r;
1012 for (i = isl_edge_first; i <= isl_edge_last; ++i) {
1013 r = graph_has_edge(graph, i, src, dst);
1014 if (r < 0 || r)
1015 return r;
1018 return r;
1021 /* Check whether the dependence graph has a validity edge
1022 * between the given two nodes.
1024 * Conditional validity edges are essentially validity edges that
1025 * can be ignored if the corresponding condition edges are iteration private.
1026 * Here, we are only checking for the presence of validity
1027 * edges, so we need to consider the conditional validity edges too.
1028 * In particular, this function is used during the detection
1029 * of strongly connected components and we cannot ignore
1030 * conditional validity edges during this detection.
1032 static isl_bool graph_has_validity_edge(struct isl_sched_graph *graph,
1033 struct isl_sched_node *src, struct isl_sched_node *dst)
1035 isl_bool r;
1037 r = graph_has_edge(graph, isl_edge_validity, src, dst);
1038 if (r < 0 || r)
1039 return r;
1041 return graph_has_edge(graph, isl_edge_conditional_validity, src, dst);
1044 static int graph_alloc(isl_ctx *ctx, struct isl_sched_graph *graph,
1045 int n_node, int n_edge)
1047 int i;
1049 graph->n = n_node;
1050 graph->n_edge = n_edge;
1051 graph->node = isl_calloc_array(ctx, struct isl_sched_node, graph->n);
1052 graph->sorted = isl_calloc_array(ctx, int, graph->n);
1053 graph->region = isl_alloc_array(ctx, struct isl_region, graph->n);
1054 graph->edge = isl_calloc_array(ctx,
1055 struct isl_sched_edge, graph->n_edge);
1057 graph->intra_hmap = isl_map_to_basic_set_alloc(ctx, 2 * n_edge);
1058 graph->inter_hmap = isl_map_to_basic_set_alloc(ctx, 2 * n_edge);
1060 if (!graph->node || !graph->region || (graph->n_edge && !graph->edge) ||
1061 !graph->sorted)
1062 return -1;
1064 for(i = 0; i < graph->n; ++i)
1065 graph->sorted[i] = i;
1067 return 0;
1070 static void graph_free(isl_ctx *ctx, struct isl_sched_graph *graph)
1072 int i;
1074 isl_map_to_basic_set_free(graph->intra_hmap);
1075 isl_map_to_basic_set_free(graph->inter_hmap);
1077 if (graph->node)
1078 for (i = 0; i < graph->n; ++i) {
1079 isl_space_free(graph->node[i].space);
1080 isl_set_free(graph->node[i].hull);
1081 isl_multi_aff_free(graph->node[i].compress);
1082 isl_multi_aff_free(graph->node[i].decompress);
1083 isl_mat_free(graph->node[i].sched);
1084 isl_map_free(graph->node[i].sched_map);
1085 isl_mat_free(graph->node[i].cmap);
1086 isl_mat_free(graph->node[i].cinv);
1087 isl_mat_free(graph->node[i].ctrans);
1088 if (graph->root)
1089 free(graph->node[i].coincident);
1091 free(graph->node);
1092 free(graph->sorted);
1093 if (graph->edge)
1094 for (i = 0; i < graph->n_edge; ++i) {
1095 isl_map_free(graph->edge[i].map);
1096 isl_union_map_free(graph->edge[i].tagged_condition);
1097 isl_union_map_free(graph->edge[i].tagged_validity);
1099 free(graph->edge);
1100 free(graph->region);
1101 for (i = 0; i <= isl_edge_last; ++i)
1102 isl_hash_table_free(ctx, graph->edge_table[i]);
1103 isl_hash_table_free(ctx, graph->node_table);
1104 isl_basic_set_free(graph->lp);
1107 /* For each "set" on which this function is called, increment
1108 * graph->n by one and update graph->maxvar.
1110 static isl_stat init_n_maxvar(__isl_take isl_set *set, void *user)
1112 struct isl_sched_graph *graph = user;
1113 int nvar = isl_set_dim(set, isl_dim_set);
1115 graph->n++;
1116 if (nvar > graph->maxvar)
1117 graph->maxvar = nvar;
1119 isl_set_free(set);
1121 return isl_stat_ok;
1124 /* Add the number of basic maps in "map" to *n.
1126 static isl_stat add_n_basic_map(__isl_take isl_map *map, void *user)
1128 int *n = user;
1130 *n += isl_map_n_basic_map(map);
1131 isl_map_free(map);
1133 return isl_stat_ok;
1136 /* Compute the number of rows that should be allocated for the schedule.
1137 * In particular, we need one row for each variable or one row
1138 * for each basic map in the dependences.
1139 * Note that it is practically impossible to exhaust both
1140 * the number of dependences and the number of variables.
1142 static int compute_max_row(struct isl_sched_graph *graph,
1143 __isl_keep isl_schedule_constraints *sc)
1145 enum isl_edge_type i;
1146 int n_edge;
1148 graph->n = 0;
1149 graph->maxvar = 0;
1150 if (isl_union_set_foreach_set(sc->domain, &init_n_maxvar, graph) < 0)
1151 return -1;
1152 n_edge = 0;
1153 for (i = isl_edge_first; i <= isl_edge_last; ++i)
1154 if (isl_union_map_foreach_map(sc->constraint[i],
1155 &add_n_basic_map, &n_edge) < 0)
1156 return -1;
1157 graph->max_row = n_edge + graph->maxvar;
1159 return 0;
1162 /* Does "bset" have any defining equalities for its set variables?
1164 static int has_any_defining_equality(__isl_keep isl_basic_set *bset)
1166 int i, n;
1168 if (!bset)
1169 return -1;
1171 n = isl_basic_set_dim(bset, isl_dim_set);
1172 for (i = 0; i < n; ++i) {
1173 int has;
1175 has = isl_basic_set_has_defining_equality(bset, isl_dim_set, i,
1176 NULL);
1177 if (has < 0 || has)
1178 return has;
1181 return 0;
1184 /* Add a new node to the graph representing the given space.
1185 * "nvar" is the (possibly compressed) number of variables and
1186 * may be smaller than then number of set variables in "space"
1187 * if "compressed" is set.
1188 * If "compressed" is set, then "hull" represents the constraints
1189 * that were used to derive the compression, while "compress" and
1190 * "decompress" map the original space to the compressed space and
1191 * vice versa.
1192 * If "compressed" is not set, then "hull", "compress" and "decompress"
1193 * should be NULL.
1195 static isl_stat add_node(struct isl_sched_graph *graph,
1196 __isl_take isl_space *space, int nvar, int compressed,
1197 __isl_take isl_set *hull, __isl_take isl_multi_aff *compress,
1198 __isl_take isl_multi_aff *decompress)
1200 int nparam;
1201 isl_ctx *ctx;
1202 isl_mat *sched;
1203 int *coincident;
1205 if (!space)
1206 return isl_stat_error;
1208 ctx = isl_space_get_ctx(space);
1209 nparam = isl_space_dim(space, isl_dim_param);
1210 if (!ctx->opt->schedule_parametric)
1211 nparam = 0;
1212 sched = isl_mat_alloc(ctx, 0, 1 + nparam + nvar);
1213 graph->node[graph->n].space = space;
1214 graph->node[graph->n].nvar = nvar;
1215 graph->node[graph->n].nparam = nparam;
1216 graph->node[graph->n].sched = sched;
1217 graph->node[graph->n].sched_map = NULL;
1218 coincident = isl_calloc_array(ctx, int, graph->max_row);
1219 graph->node[graph->n].coincident = coincident;
1220 graph->node[graph->n].compressed = compressed;
1221 graph->node[graph->n].hull = hull;
1222 graph->node[graph->n].compress = compress;
1223 graph->node[graph->n].decompress = decompress;
1224 graph->n++;
1226 if (!space || !sched || (graph->max_row && !coincident))
1227 return isl_stat_error;
1228 if (compressed && (!hull || !compress || !decompress))
1229 return isl_stat_error;
1231 return isl_stat_ok;
1234 /* Add a new node to the graph representing the given set.
1236 * If any of the set variables is defined by an equality, then
1237 * we perform variable compression such that we can perform
1238 * the scheduling on the compressed domain.
1240 static isl_stat extract_node(__isl_take isl_set *set, void *user)
1242 int nvar;
1243 int has_equality;
1244 isl_space *space;
1245 isl_basic_set *hull;
1246 isl_set *hull_set;
1247 isl_morph *morph;
1248 isl_multi_aff *compress, *decompress;
1249 struct isl_sched_graph *graph = user;
1251 space = isl_set_get_space(set);
1252 hull = isl_set_affine_hull(set);
1253 hull = isl_basic_set_remove_divs(hull);
1254 nvar = isl_space_dim(space, isl_dim_set);
1255 has_equality = has_any_defining_equality(hull);
1257 if (has_equality < 0)
1258 goto error;
1259 if (!has_equality) {
1260 isl_basic_set_free(hull);
1261 return add_node(graph, space, nvar, 0, NULL, NULL, NULL);
1264 morph = isl_basic_set_variable_compression(hull, isl_dim_set);
1265 nvar = isl_morph_ran_dim(morph, isl_dim_set);
1266 compress = isl_morph_get_var_multi_aff(morph);
1267 morph = isl_morph_inverse(morph);
1268 decompress = isl_morph_get_var_multi_aff(morph);
1269 isl_morph_free(morph);
1271 hull_set = isl_set_from_basic_set(hull);
1272 return add_node(graph, space, nvar, 1, hull_set, compress, decompress);
1273 error:
1274 isl_basic_set_free(hull);
1275 isl_space_free(space);
1276 return isl_stat_error;
1279 struct isl_extract_edge_data {
1280 enum isl_edge_type type;
1281 struct isl_sched_graph *graph;
1284 /* Merge edge2 into edge1, freeing the contents of edge2.
1285 * Return 0 on success and -1 on failure.
1287 * edge1 and edge2 are assumed to have the same value for the map field.
1289 static int merge_edge(struct isl_sched_edge *edge1,
1290 struct isl_sched_edge *edge2)
1292 edge1->types |= edge2->types;
1293 isl_map_free(edge2->map);
1295 if (is_condition(edge2)) {
1296 if (!edge1->tagged_condition)
1297 edge1->tagged_condition = edge2->tagged_condition;
1298 else
1299 edge1->tagged_condition =
1300 isl_union_map_union(edge1->tagged_condition,
1301 edge2->tagged_condition);
1304 if (is_conditional_validity(edge2)) {
1305 if (!edge1->tagged_validity)
1306 edge1->tagged_validity = edge2->tagged_validity;
1307 else
1308 edge1->tagged_validity =
1309 isl_union_map_union(edge1->tagged_validity,
1310 edge2->tagged_validity);
1313 if (is_condition(edge2) && !edge1->tagged_condition)
1314 return -1;
1315 if (is_conditional_validity(edge2) && !edge1->tagged_validity)
1316 return -1;
1318 return 0;
1321 /* Insert dummy tags in domain and range of "map".
1323 * In particular, if "map" is of the form
1325 * A -> B
1327 * then return
1329 * [A -> dummy_tag] -> [B -> dummy_tag]
1331 * where the dummy_tags are identical and equal to any dummy tags
1332 * introduced by any other call to this function.
1334 static __isl_give isl_map *insert_dummy_tags(__isl_take isl_map *map)
1336 static char dummy;
1337 isl_ctx *ctx;
1338 isl_id *id;
1339 isl_space *space;
1340 isl_set *domain, *range;
1342 ctx = isl_map_get_ctx(map);
1344 id = isl_id_alloc(ctx, NULL, &dummy);
1345 space = isl_space_params(isl_map_get_space(map));
1346 space = isl_space_set_from_params(space);
1347 space = isl_space_set_tuple_id(space, isl_dim_set, id);
1348 space = isl_space_map_from_set(space);
1350 domain = isl_map_wrap(map);
1351 range = isl_map_wrap(isl_map_universe(space));
1352 map = isl_map_from_domain_and_range(domain, range);
1353 map = isl_map_zip(map);
1355 return map;
1358 /* Given that at least one of "src" or "dst" is compressed, return
1359 * a map between the spaces of these nodes restricted to the affine
1360 * hull that was used in the compression.
1362 static __isl_give isl_map *extract_hull(struct isl_sched_node *src,
1363 struct isl_sched_node *dst)
1365 isl_set *dom, *ran;
1367 if (src->compressed)
1368 dom = isl_set_copy(src->hull);
1369 else
1370 dom = isl_set_universe(isl_space_copy(src->space));
1371 if (dst->compressed)
1372 ran = isl_set_copy(dst->hull);
1373 else
1374 ran = isl_set_universe(isl_space_copy(dst->space));
1376 return isl_map_from_domain_and_range(dom, ran);
1379 /* Intersect the domains of the nested relations in domain and range
1380 * of "tagged" with "map".
1382 static __isl_give isl_map *map_intersect_domains(__isl_take isl_map *tagged,
1383 __isl_keep isl_map *map)
1385 isl_set *set;
1387 tagged = isl_map_zip(tagged);
1388 set = isl_map_wrap(isl_map_copy(map));
1389 tagged = isl_map_intersect_domain(tagged, set);
1390 tagged = isl_map_zip(tagged);
1391 return tagged;
1394 /* Return a pointer to the node that lives in the domain space of "map"
1395 * or NULL if there is no such node.
1397 static struct isl_sched_node *find_domain_node(isl_ctx *ctx,
1398 struct isl_sched_graph *graph, __isl_keep isl_map *map)
1400 struct isl_sched_node *node;
1401 isl_space *space;
1403 space = isl_space_domain(isl_map_get_space(map));
1404 node = graph_find_node(ctx, graph, space);
1405 isl_space_free(space);
1407 return node;
1410 /* Return a pointer to the node that lives in the range space of "map"
1411 * or NULL if there is no such node.
1413 static struct isl_sched_node *find_range_node(isl_ctx *ctx,
1414 struct isl_sched_graph *graph, __isl_keep isl_map *map)
1416 struct isl_sched_node *node;
1417 isl_space *space;
1419 space = isl_space_range(isl_map_get_space(map));
1420 node = graph_find_node(ctx, graph, space);
1421 isl_space_free(space);
1423 return node;
1426 /* Add a new edge to the graph based on the given map
1427 * and add it to data->graph->edge_table[data->type].
1428 * If a dependence relation of a given type happens to be identical
1429 * to one of the dependence relations of a type that was added before,
1430 * then we don't create a new edge, but instead mark the original edge
1431 * as also representing a dependence of the current type.
1433 * Edges of type isl_edge_condition or isl_edge_conditional_validity
1434 * may be specified as "tagged" dependence relations. That is, "map"
1435 * may contain elements (i -> a) -> (j -> b), where i -> j denotes
1436 * the dependence on iterations and a and b are tags.
1437 * edge->map is set to the relation containing the elements i -> j,
1438 * while edge->tagged_condition and edge->tagged_validity contain
1439 * the union of all the "map" relations
1440 * for which extract_edge is called that result in the same edge->map.
1442 * If the source or the destination node is compressed, then
1443 * intersect both "map" and "tagged" with the constraints that
1444 * were used to construct the compression.
1445 * This ensures that there are no schedule constraints defined
1446 * outside of these domains, while the scheduler no longer has
1447 * any control over those outside parts.
1449 static isl_stat extract_edge(__isl_take isl_map *map, void *user)
1451 isl_ctx *ctx = isl_map_get_ctx(map);
1452 struct isl_extract_edge_data *data = user;
1453 struct isl_sched_graph *graph = data->graph;
1454 struct isl_sched_node *src, *dst;
1455 struct isl_sched_edge *edge;
1456 isl_map *tagged = NULL;
1458 if (data->type == isl_edge_condition ||
1459 data->type == isl_edge_conditional_validity) {
1460 if (isl_map_can_zip(map)) {
1461 tagged = isl_map_copy(map);
1462 map = isl_set_unwrap(isl_map_domain(isl_map_zip(map)));
1463 } else {
1464 tagged = insert_dummy_tags(isl_map_copy(map));
1468 src = find_domain_node(ctx, graph, map);
1469 dst = find_range_node(ctx, graph, map);
1471 if (!src || !dst) {
1472 isl_map_free(map);
1473 isl_map_free(tagged);
1474 return isl_stat_ok;
1477 if (src->compressed || dst->compressed) {
1478 isl_map *hull;
1479 hull = extract_hull(src, dst);
1480 if (tagged)
1481 tagged = map_intersect_domains(tagged, hull);
1482 map = isl_map_intersect(map, hull);
1485 graph->edge[graph->n_edge].src = src;
1486 graph->edge[graph->n_edge].dst = dst;
1487 graph->edge[graph->n_edge].map = map;
1488 graph->edge[graph->n_edge].types = 0;
1489 graph->edge[graph->n_edge].tagged_condition = NULL;
1490 graph->edge[graph->n_edge].tagged_validity = NULL;
1491 set_type(&graph->edge[graph->n_edge], data->type);
1492 if (data->type == isl_edge_condition)
1493 graph->edge[graph->n_edge].tagged_condition =
1494 isl_union_map_from_map(tagged);
1495 if (data->type == isl_edge_conditional_validity)
1496 graph->edge[graph->n_edge].tagged_validity =
1497 isl_union_map_from_map(tagged);
1499 edge = graph_find_matching_edge(graph, &graph->edge[graph->n_edge]);
1500 if (!edge) {
1501 graph->n_edge++;
1502 return isl_stat_error;
1504 if (edge == &graph->edge[graph->n_edge])
1505 return graph_edge_table_add(ctx, graph, data->type,
1506 &graph->edge[graph->n_edge++]);
1508 if (merge_edge(edge, &graph->edge[graph->n_edge]) < 0)
1509 return -1;
1511 return graph_edge_table_add(ctx, graph, data->type, edge);
1514 /* Initialize the schedule graph "graph" from the schedule constraints "sc".
1516 * The context is included in the domain before the nodes of
1517 * the graphs are extracted in order to be able to exploit
1518 * any possible additional equalities.
1519 * Note that this intersection is only performed locally here.
1521 static isl_stat graph_init(struct isl_sched_graph *graph,
1522 __isl_keep isl_schedule_constraints *sc)
1524 isl_ctx *ctx;
1525 isl_union_set *domain;
1526 struct isl_extract_edge_data data;
1527 enum isl_edge_type i;
1528 isl_stat r;
1530 if (!sc)
1531 return isl_stat_error;
1533 ctx = isl_schedule_constraints_get_ctx(sc);
1535 domain = isl_schedule_constraints_get_domain(sc);
1536 graph->n = isl_union_set_n_set(domain);
1537 isl_union_set_free(domain);
1539 if (graph_alloc(ctx, graph, graph->n,
1540 isl_schedule_constraints_n_map(sc)) < 0)
1541 return isl_stat_error;
1543 if (compute_max_row(graph, sc) < 0)
1544 return isl_stat_error;
1545 graph->root = 1;
1546 graph->n = 0;
1547 domain = isl_schedule_constraints_get_domain(sc);
1548 domain = isl_union_set_intersect_params(domain,
1549 isl_set_copy(sc->context));
1550 r = isl_union_set_foreach_set(domain, &extract_node, graph);
1551 isl_union_set_free(domain);
1552 if (r < 0)
1553 return isl_stat_error;
1554 if (graph_init_table(ctx, graph) < 0)
1555 return isl_stat_error;
1556 for (i = isl_edge_first; i <= isl_edge_last; ++i)
1557 graph->max_edge[i] = isl_union_map_n_map(sc->constraint[i]);
1558 if (graph_init_edge_tables(ctx, graph) < 0)
1559 return isl_stat_error;
1560 graph->n_edge = 0;
1561 data.graph = graph;
1562 for (i = isl_edge_first; i <= isl_edge_last; ++i) {
1563 data.type = i;
1564 if (isl_union_map_foreach_map(sc->constraint[i],
1565 &extract_edge, &data) < 0)
1566 return isl_stat_error;
1569 return isl_stat_ok;
1572 /* Check whether there is any dependence from node[j] to node[i]
1573 * or from node[i] to node[j].
1575 static isl_bool node_follows_weak(int i, int j, void *user)
1577 isl_bool f;
1578 struct isl_sched_graph *graph = user;
1580 f = graph_has_any_edge(graph, &graph->node[j], &graph->node[i]);
1581 if (f < 0 || f)
1582 return f;
1583 return graph_has_any_edge(graph, &graph->node[i], &graph->node[j]);
1586 /* Check whether there is a (conditional) validity dependence from node[j]
1587 * to node[i], forcing node[i] to follow node[j].
1589 static isl_bool node_follows_strong(int i, int j, void *user)
1591 struct isl_sched_graph *graph = user;
1593 return graph_has_validity_edge(graph, &graph->node[j], &graph->node[i]);
1596 /* Use Tarjan's algorithm for computing the strongly connected components
1597 * in the dependence graph only considering those edges defined by "follows".
1599 static int detect_ccs(isl_ctx *ctx, struct isl_sched_graph *graph,
1600 isl_bool (*follows)(int i, int j, void *user))
1602 int i, n;
1603 struct isl_tarjan_graph *g = NULL;
1605 g = isl_tarjan_graph_init(ctx, graph->n, follows, graph);
1606 if (!g)
1607 return -1;
1609 graph->scc = 0;
1610 i = 0;
1611 n = graph->n;
1612 while (n) {
1613 while (g->order[i] != -1) {
1614 graph->node[g->order[i]].scc = graph->scc;
1615 --n;
1616 ++i;
1618 ++i;
1619 graph->scc++;
1622 isl_tarjan_graph_free(g);
1624 return 0;
1627 /* Apply Tarjan's algorithm to detect the strongly connected components
1628 * in the dependence graph.
1629 * Only consider the (conditional) validity dependences and clear "weak".
1631 static int detect_sccs(isl_ctx *ctx, struct isl_sched_graph *graph)
1633 graph->weak = 0;
1634 return detect_ccs(ctx, graph, &node_follows_strong);
1637 /* Apply Tarjan's algorithm to detect the (weakly) connected components
1638 * in the dependence graph.
1639 * Consider all dependences and set "weak".
1641 static int detect_wccs(isl_ctx *ctx, struct isl_sched_graph *graph)
1643 graph->weak = 1;
1644 return detect_ccs(ctx, graph, &node_follows_weak);
1647 static int cmp_scc(const void *a, const void *b, void *data)
1649 struct isl_sched_graph *graph = data;
1650 const int *i1 = a;
1651 const int *i2 = b;
1653 return graph->node[*i1].scc - graph->node[*i2].scc;
1656 /* Sort the elements of graph->sorted according to the corresponding SCCs.
1658 static int sort_sccs(struct isl_sched_graph *graph)
1660 return isl_sort(graph->sorted, graph->n, sizeof(int), &cmp_scc, graph);
1663 /* Given a dependence relation R from "node" to itself,
1664 * construct the set of coefficients of valid constraints for elements
1665 * in that dependence relation.
1666 * In particular, the result contains tuples of coefficients
1667 * c_0, c_n, c_x such that
1669 * c_0 + c_n n + c_x y - c_x x >= 0 for each (x,y) in R
1671 * or, equivalently,
1673 * c_0 + c_n n + c_x d >= 0 for each d in delta R = { y - x | (x,y) in R }
1675 * We choose here to compute the dual of delta R.
1676 * Alternatively, we could have computed the dual of R, resulting
1677 * in a set of tuples c_0, c_n, c_x, c_y, and then
1678 * plugged in (c_0, c_n, c_x, -c_x).
1680 * If "node" has been compressed, then the dependence relation
1681 * is also compressed before the set of coefficients is computed.
1683 static __isl_give isl_basic_set *intra_coefficients(
1684 struct isl_sched_graph *graph, struct isl_sched_node *node,
1685 __isl_take isl_map *map)
1687 isl_set *delta;
1688 isl_map *key;
1689 isl_basic_set *coef;
1690 isl_maybe_isl_basic_set m;
1692 m = isl_map_to_basic_set_try_get(graph->intra_hmap, map);
1693 if (m.valid < 0 || m.valid) {
1694 isl_map_free(map);
1695 return m.value;
1698 key = isl_map_copy(map);
1699 if (node->compressed) {
1700 map = isl_map_preimage_domain_multi_aff(map,
1701 isl_multi_aff_copy(node->decompress));
1702 map = isl_map_preimage_range_multi_aff(map,
1703 isl_multi_aff_copy(node->decompress));
1705 delta = isl_set_remove_divs(isl_map_deltas(map));
1706 coef = isl_set_coefficients(delta);
1707 graph->intra_hmap = isl_map_to_basic_set_set(graph->intra_hmap, key,
1708 isl_basic_set_copy(coef));
1710 return coef;
1713 /* Given a dependence relation R, construct the set of coefficients
1714 * of valid constraints for elements in that dependence relation.
1715 * In particular, the result contains tuples of coefficients
1716 * c_0, c_n, c_x, c_y such that
1718 * c_0 + c_n n + c_x x + c_y y >= 0 for each (x,y) in R
1720 * If the source or destination nodes of "edge" have been compressed,
1721 * then the dependence relation is also compressed before
1722 * the set of coefficients is computed.
1724 static __isl_give isl_basic_set *inter_coefficients(
1725 struct isl_sched_graph *graph, struct isl_sched_edge *edge,
1726 __isl_take isl_map *map)
1728 isl_set *set;
1729 isl_map *key;
1730 isl_basic_set *coef;
1731 isl_maybe_isl_basic_set m;
1733 m = isl_map_to_basic_set_try_get(graph->inter_hmap, map);
1734 if (m.valid < 0 || m.valid) {
1735 isl_map_free(map);
1736 return m.value;
1739 key = isl_map_copy(map);
1740 if (edge->src->compressed)
1741 map = isl_map_preimage_domain_multi_aff(map,
1742 isl_multi_aff_copy(edge->src->decompress));
1743 if (edge->dst->compressed)
1744 map = isl_map_preimage_range_multi_aff(map,
1745 isl_multi_aff_copy(edge->dst->decompress));
1746 set = isl_map_wrap(isl_map_remove_divs(map));
1747 coef = isl_set_coefficients(set);
1748 graph->inter_hmap = isl_map_to_basic_set_set(graph->inter_hmap, key,
1749 isl_basic_set_copy(coef));
1751 return coef;
1754 /* Add constraints to graph->lp that force validity for the given
1755 * dependence from a node i to itself.
1756 * That is, add constraints that enforce
1758 * (c_i_0 + c_i_n n + c_i_x y) - (c_i_0 + c_i_n n + c_i_x x)
1759 * = c_i_x (y - x) >= 0
1761 * for each (x,y) in R.
1762 * We obtain general constraints on coefficients (c_0, c_n, c_x)
1763 * of valid constraints for (y - x) and then plug in (0, 0, c_i_x^+ - c_i_x^-),
1764 * where c_i_x = c_i_x^+ - c_i_x^-, with c_i_x^+ and c_i_x^- non-negative.
1765 * In graph->lp, the c_i_x^- appear before their c_i_x^+ counterpart.
1767 * Actually, we do not construct constraints for the c_i_x themselves,
1768 * but for the coefficients of c_i_x written as a linear combination
1769 * of the columns in node->cmap.
1771 static int add_intra_validity_constraints(struct isl_sched_graph *graph,
1772 struct isl_sched_edge *edge)
1774 unsigned total;
1775 isl_map *map = isl_map_copy(edge->map);
1776 isl_ctx *ctx = isl_map_get_ctx(map);
1777 isl_space *dim;
1778 isl_dim_map *dim_map;
1779 isl_basic_set *coef;
1780 struct isl_sched_node *node = edge->src;
1782 coef = intra_coefficients(graph, node, map);
1784 dim = isl_space_domain(isl_space_unwrap(isl_basic_set_get_space(coef)));
1786 coef = isl_basic_set_transform_dims(coef, isl_dim_set,
1787 isl_space_dim(dim, isl_dim_set), isl_mat_copy(node->cmap));
1788 if (!coef)
1789 goto error;
1791 total = isl_basic_set_total_dim(graph->lp);
1792 dim_map = isl_dim_map_alloc(ctx, total);
1793 isl_dim_map_range(dim_map, node->start + 2 * node->nparam + 1, 2,
1794 isl_space_dim(dim, isl_dim_set), 1,
1795 node->nvar, -1);
1796 isl_dim_map_range(dim_map, node->start + 2 * node->nparam + 2, 2,
1797 isl_space_dim(dim, isl_dim_set), 1,
1798 node->nvar, 1);
1799 graph->lp = isl_basic_set_extend_constraints(graph->lp,
1800 coef->n_eq, coef->n_ineq);
1801 graph->lp = isl_basic_set_add_constraints_dim_map(graph->lp,
1802 coef, dim_map);
1803 isl_space_free(dim);
1805 return 0;
1806 error:
1807 isl_space_free(dim);
1808 return -1;
1811 /* Add constraints to graph->lp that force validity for the given
1812 * dependence from node i to node j.
1813 * That is, add constraints that enforce
1815 * (c_j_0 + c_j_n n + c_j_x y) - (c_i_0 + c_i_n n + c_i_x x) >= 0
1817 * for each (x,y) in R.
1818 * We obtain general constraints on coefficients (c_0, c_n, c_x, c_y)
1819 * of valid constraints for R and then plug in
1820 * (c_j_0 - c_i_0, c_j_n^+ - c_j_n^- - (c_i_n^+ - c_i_n^-),
1821 * c_j_x^+ - c_j_x^- - (c_i_x^+ - c_i_x^-)),
1822 * where c_* = c_*^+ - c_*^-, with c_*^+ and c_*^- non-negative.
1823 * In graph->lp, the c_*^- appear before their c_*^+ counterpart.
1825 * Actually, we do not construct constraints for the c_*_x themselves,
1826 * but for the coefficients of c_*_x written as a linear combination
1827 * of the columns in node->cmap.
1829 static int add_inter_validity_constraints(struct isl_sched_graph *graph,
1830 struct isl_sched_edge *edge)
1832 unsigned total;
1833 isl_map *map = isl_map_copy(edge->map);
1834 isl_ctx *ctx = isl_map_get_ctx(map);
1835 isl_space *dim;
1836 isl_dim_map *dim_map;
1837 isl_basic_set *coef;
1838 struct isl_sched_node *src = edge->src;
1839 struct isl_sched_node *dst = edge->dst;
1841 coef = inter_coefficients(graph, edge, map);
1843 dim = isl_space_domain(isl_space_unwrap(isl_basic_set_get_space(coef)));
1845 coef = isl_basic_set_transform_dims(coef, isl_dim_set,
1846 isl_space_dim(dim, isl_dim_set), isl_mat_copy(src->cmap));
1847 coef = isl_basic_set_transform_dims(coef, isl_dim_set,
1848 isl_space_dim(dim, isl_dim_set) + src->nvar,
1849 isl_mat_copy(dst->cmap));
1850 if (!coef)
1851 goto error;
1853 total = isl_basic_set_total_dim(graph->lp);
1854 dim_map = isl_dim_map_alloc(ctx, total);
1856 isl_dim_map_range(dim_map, dst->start, 0, 0, 0, 1, 1);
1857 isl_dim_map_range(dim_map, dst->start + 1, 2, 1, 1, dst->nparam, -1);
1858 isl_dim_map_range(dim_map, dst->start + 2, 2, 1, 1, dst->nparam, 1);
1859 isl_dim_map_range(dim_map, dst->start + 2 * dst->nparam + 1, 2,
1860 isl_space_dim(dim, isl_dim_set) + src->nvar, 1,
1861 dst->nvar, -1);
1862 isl_dim_map_range(dim_map, dst->start + 2 * dst->nparam + 2, 2,
1863 isl_space_dim(dim, isl_dim_set) + src->nvar, 1,
1864 dst->nvar, 1);
1866 isl_dim_map_range(dim_map, src->start, 0, 0, 0, 1, -1);
1867 isl_dim_map_range(dim_map, src->start + 1, 2, 1, 1, src->nparam, 1);
1868 isl_dim_map_range(dim_map, src->start + 2, 2, 1, 1, src->nparam, -1);
1869 isl_dim_map_range(dim_map, src->start + 2 * src->nparam + 1, 2,
1870 isl_space_dim(dim, isl_dim_set), 1,
1871 src->nvar, 1);
1872 isl_dim_map_range(dim_map, src->start + 2 * src->nparam + 2, 2,
1873 isl_space_dim(dim, isl_dim_set), 1,
1874 src->nvar, -1);
1876 edge->start = graph->lp->n_ineq;
1877 graph->lp = isl_basic_set_extend_constraints(graph->lp,
1878 coef->n_eq, coef->n_ineq);
1879 graph->lp = isl_basic_set_add_constraints_dim_map(graph->lp,
1880 coef, dim_map);
1881 if (!graph->lp)
1882 goto error;
1883 isl_space_free(dim);
1884 edge->end = graph->lp->n_ineq;
1886 return 0;
1887 error:
1888 isl_space_free(dim);
1889 return -1;
1892 /* Add constraints to graph->lp that bound the dependence distance for the given
1893 * dependence from a node i to itself.
1894 * If s = 1, we add the constraint
1896 * c_i_x (y - x) <= m_0 + m_n n
1898 * or
1900 * -c_i_x (y - x) + m_0 + m_n n >= 0
1902 * for each (x,y) in R.
1903 * If s = -1, we add the constraint
1905 * -c_i_x (y - x) <= m_0 + m_n n
1907 * or
1909 * c_i_x (y - x) + m_0 + m_n n >= 0
1911 * for each (x,y) in R.
1912 * We obtain general constraints on coefficients (c_0, c_n, c_x)
1913 * of valid constraints for (y - x) and then plug in (m_0, m_n, -s * c_i_x),
1914 * with each coefficient (except m_0) represented as a pair of non-negative
1915 * coefficients.
1917 * Actually, we do not construct constraints for the c_i_x themselves,
1918 * but for the coefficients of c_i_x written as a linear combination
1919 * of the columns in node->cmap.
1922 * If "local" is set, then we add constraints
1924 * c_i_x (y - x) <= 0
1926 * or
1928 * -c_i_x (y - x) <= 0
1930 * instead, forcing the dependence distance to be (less than or) equal to 0.
1931 * That is, we plug in (0, 0, -s * c_i_x),
1932 * Note that dependences marked local are treated as validity constraints
1933 * by add_all_validity_constraints and therefore also have
1934 * their distances bounded by 0 from below.
1936 static int add_intra_proximity_constraints(struct isl_sched_graph *graph,
1937 struct isl_sched_edge *edge, int s, int local)
1939 unsigned total;
1940 unsigned nparam;
1941 isl_map *map = isl_map_copy(edge->map);
1942 isl_ctx *ctx = isl_map_get_ctx(map);
1943 isl_space *dim;
1944 isl_dim_map *dim_map;
1945 isl_basic_set *coef;
1946 struct isl_sched_node *node = edge->src;
1948 coef = intra_coefficients(graph, node, map);
1950 dim = isl_space_domain(isl_space_unwrap(isl_basic_set_get_space(coef)));
1952 coef = isl_basic_set_transform_dims(coef, isl_dim_set,
1953 isl_space_dim(dim, isl_dim_set), isl_mat_copy(node->cmap));
1954 if (!coef)
1955 goto error;
1957 nparam = isl_space_dim(node->space, isl_dim_param);
1958 total = isl_basic_set_total_dim(graph->lp);
1959 dim_map = isl_dim_map_alloc(ctx, total);
1961 if (!local) {
1962 isl_dim_map_range(dim_map, 1, 0, 0, 0, 1, 1);
1963 isl_dim_map_range(dim_map, 4, 2, 1, 1, nparam, -1);
1964 isl_dim_map_range(dim_map, 5, 2, 1, 1, nparam, 1);
1966 isl_dim_map_range(dim_map, node->start + 2 * node->nparam + 1, 2,
1967 isl_space_dim(dim, isl_dim_set), 1,
1968 node->nvar, s);
1969 isl_dim_map_range(dim_map, node->start + 2 * node->nparam + 2, 2,
1970 isl_space_dim(dim, isl_dim_set), 1,
1971 node->nvar, -s);
1972 graph->lp = isl_basic_set_extend_constraints(graph->lp,
1973 coef->n_eq, coef->n_ineq);
1974 graph->lp = isl_basic_set_add_constraints_dim_map(graph->lp,
1975 coef, dim_map);
1976 isl_space_free(dim);
1978 return 0;
1979 error:
1980 isl_space_free(dim);
1981 return -1;
1984 /* Add constraints to graph->lp that bound the dependence distance for the given
1985 * dependence from node i to node j.
1986 * If s = 1, we add the constraint
1988 * (c_j_0 + c_j_n n + c_j_x y) - (c_i_0 + c_i_n n + c_i_x x)
1989 * <= m_0 + m_n n
1991 * or
1993 * -(c_j_0 + c_j_n n + c_j_x y) + (c_i_0 + c_i_n n + c_i_x x) +
1994 * m_0 + m_n n >= 0
1996 * for each (x,y) in R.
1997 * If s = -1, we add the constraint
1999 * -((c_j_0 + c_j_n n + c_j_x y) - (c_i_0 + c_i_n n + c_i_x x))
2000 * <= m_0 + m_n n
2002 * or
2004 * (c_j_0 + c_j_n n + c_j_x y) - (c_i_0 + c_i_n n + c_i_x x) +
2005 * m_0 + m_n n >= 0
2007 * for each (x,y) in R.
2008 * We obtain general constraints on coefficients (c_0, c_n, c_x, c_y)
2009 * of valid constraints for R and then plug in
2010 * (m_0 - s*c_j_0 + s*c_i_0, m_n - s*c_j_n + s*c_i_n,
2011 * -s*c_j_x+s*c_i_x)
2012 * with each coefficient (except m_0, c_j_0 and c_i_0)
2013 * represented as a pair of non-negative coefficients.
2015 * Actually, we do not construct constraints for the c_*_x themselves,
2016 * but for the coefficients of c_*_x written as a linear combination
2017 * of the columns in node->cmap.
2020 * If "local" is set, then we add constraints
2022 * (c_j_0 + c_j_n n + c_j_x y) - (c_i_0 + c_i_n n + c_i_x x) <= 0
2024 * or
2026 * -((c_j_0 + c_j_n n + c_j_x y) - (c_i_0 + c_i_n n + c_i_x x)) <= 0
2028 * instead, forcing the dependence distance to be (less than or) equal to 0.
2029 * That is, we plug in
2030 * (-s*c_j_0 + s*c_i_0, -s*c_j_n + s*c_i_n, -s*c_j_x+s*c_i_x).
2031 * Note that dependences marked local are treated as validity constraints
2032 * by add_all_validity_constraints and therefore also have
2033 * their distances bounded by 0 from below.
2035 static int add_inter_proximity_constraints(struct isl_sched_graph *graph,
2036 struct isl_sched_edge *edge, int s, int local)
2038 unsigned total;
2039 unsigned nparam;
2040 isl_map *map = isl_map_copy(edge->map);
2041 isl_ctx *ctx = isl_map_get_ctx(map);
2042 isl_space *dim;
2043 isl_dim_map *dim_map;
2044 isl_basic_set *coef;
2045 struct isl_sched_node *src = edge->src;
2046 struct isl_sched_node *dst = edge->dst;
2048 coef = inter_coefficients(graph, edge, map);
2050 dim = isl_space_domain(isl_space_unwrap(isl_basic_set_get_space(coef)));
2052 coef = isl_basic_set_transform_dims(coef, isl_dim_set,
2053 isl_space_dim(dim, isl_dim_set), isl_mat_copy(src->cmap));
2054 coef = isl_basic_set_transform_dims(coef, isl_dim_set,
2055 isl_space_dim(dim, isl_dim_set) + src->nvar,
2056 isl_mat_copy(dst->cmap));
2057 if (!coef)
2058 goto error;
2060 nparam = isl_space_dim(src->space, isl_dim_param);
2061 total = isl_basic_set_total_dim(graph->lp);
2062 dim_map = isl_dim_map_alloc(ctx, total);
2064 if (!local) {
2065 isl_dim_map_range(dim_map, 1, 0, 0, 0, 1, 1);
2066 isl_dim_map_range(dim_map, 4, 2, 1, 1, nparam, -1);
2067 isl_dim_map_range(dim_map, 5, 2, 1, 1, nparam, 1);
2070 isl_dim_map_range(dim_map, dst->start, 0, 0, 0, 1, -s);
2071 isl_dim_map_range(dim_map, dst->start + 1, 2, 1, 1, dst->nparam, s);
2072 isl_dim_map_range(dim_map, dst->start + 2, 2, 1, 1, dst->nparam, -s);
2073 isl_dim_map_range(dim_map, dst->start + 2 * dst->nparam + 1, 2,
2074 isl_space_dim(dim, isl_dim_set) + src->nvar, 1,
2075 dst->nvar, s);
2076 isl_dim_map_range(dim_map, dst->start + 2 * dst->nparam + 2, 2,
2077 isl_space_dim(dim, isl_dim_set) + src->nvar, 1,
2078 dst->nvar, -s);
2080 isl_dim_map_range(dim_map, src->start, 0, 0, 0, 1, s);
2081 isl_dim_map_range(dim_map, src->start + 1, 2, 1, 1, src->nparam, -s);
2082 isl_dim_map_range(dim_map, src->start + 2, 2, 1, 1, src->nparam, s);
2083 isl_dim_map_range(dim_map, src->start + 2 * src->nparam + 1, 2,
2084 isl_space_dim(dim, isl_dim_set), 1,
2085 src->nvar, -s);
2086 isl_dim_map_range(dim_map, src->start + 2 * src->nparam + 2, 2,
2087 isl_space_dim(dim, isl_dim_set), 1,
2088 src->nvar, s);
2090 graph->lp = isl_basic_set_extend_constraints(graph->lp,
2091 coef->n_eq, coef->n_ineq);
2092 graph->lp = isl_basic_set_add_constraints_dim_map(graph->lp,
2093 coef, dim_map);
2094 isl_space_free(dim);
2096 return 0;
2097 error:
2098 isl_space_free(dim);
2099 return -1;
2102 /* Add all validity constraints to graph->lp.
2104 * An edge that is forced to be local needs to have its dependence
2105 * distances equal to zero. We take care of bounding them by 0 from below
2106 * here. add_all_proximity_constraints takes care of bounding them by 0
2107 * from above.
2109 * If "use_coincidence" is set, then we treat coincidence edges as local edges.
2110 * Otherwise, we ignore them.
2112 static int add_all_validity_constraints(struct isl_sched_graph *graph,
2113 int use_coincidence)
2115 int i;
2117 for (i = 0; i < graph->n_edge; ++i) {
2118 struct isl_sched_edge *edge= &graph->edge[i];
2119 int local;
2121 local = is_local(edge) ||
2122 (is_coincidence(edge) && use_coincidence);
2123 if (!is_validity(edge) && !local)
2124 continue;
2125 if (edge->src != edge->dst)
2126 continue;
2127 if (add_intra_validity_constraints(graph, edge) < 0)
2128 return -1;
2131 for (i = 0; i < graph->n_edge; ++i) {
2132 struct isl_sched_edge *edge = &graph->edge[i];
2133 int local;
2135 local = is_local(edge) ||
2136 (is_coincidence(edge) && use_coincidence);
2137 if (!is_validity(edge) && !local)
2138 continue;
2139 if (edge->src == edge->dst)
2140 continue;
2141 if (add_inter_validity_constraints(graph, edge) < 0)
2142 return -1;
2145 return 0;
2148 /* Add constraints to graph->lp that bound the dependence distance
2149 * for all dependence relations.
2150 * If a given proximity dependence is identical to a validity
2151 * dependence, then the dependence distance is already bounded
2152 * from below (by zero), so we only need to bound the distance
2153 * from above. (This includes the case of "local" dependences
2154 * which are treated as validity dependence by add_all_validity_constraints.)
2155 * Otherwise, we need to bound the distance both from above and from below.
2157 * If "use_coincidence" is set, then we treat coincidence edges as local edges.
2158 * Otherwise, we ignore them.
2160 static int add_all_proximity_constraints(struct isl_sched_graph *graph,
2161 int use_coincidence)
2163 int i;
2165 for (i = 0; i < graph->n_edge; ++i) {
2166 struct isl_sched_edge *edge= &graph->edge[i];
2167 int local;
2169 local = is_local(edge) ||
2170 (is_coincidence(edge) && use_coincidence);
2171 if (!is_proximity(edge) && !local)
2172 continue;
2173 if (edge->src == edge->dst &&
2174 add_intra_proximity_constraints(graph, edge, 1, local) < 0)
2175 return -1;
2176 if (edge->src != edge->dst &&
2177 add_inter_proximity_constraints(graph, edge, 1, local) < 0)
2178 return -1;
2179 if (is_validity(edge) || local)
2180 continue;
2181 if (edge->src == edge->dst &&
2182 add_intra_proximity_constraints(graph, edge, -1, 0) < 0)
2183 return -1;
2184 if (edge->src != edge->dst &&
2185 add_inter_proximity_constraints(graph, edge, -1, 0) < 0)
2186 return -1;
2189 return 0;
2192 /* Compute a basis for the rows in the linear part of the schedule
2193 * and extend this basis to a full basis. The remaining rows
2194 * can then be used to force linear independence from the rows
2195 * in the schedule.
2197 * In particular, given the schedule rows S, we compute
2199 * S = H Q
2200 * S U = H
2202 * with H the Hermite normal form of S. That is, all but the
2203 * first rank columns of H are zero and so each row in S is
2204 * a linear combination of the first rank rows of Q.
2205 * The matrix Q is then transposed because we will write the
2206 * coefficients of the next schedule row as a column vector s
2207 * and express this s as a linear combination s = Q c of the
2208 * computed basis.
2209 * Similarly, the matrix U is transposed such that we can
2210 * compute the coefficients c = U s from a schedule row s.
2212 static int node_update_cmap(struct isl_sched_node *node)
2214 isl_mat *H, *U, *Q;
2215 int n_row = isl_mat_rows(node->sched);
2217 H = isl_mat_sub_alloc(node->sched, 0, n_row,
2218 1 + node->nparam, node->nvar);
2220 H = isl_mat_left_hermite(H, 0, &U, &Q);
2221 isl_mat_free(node->cmap);
2222 isl_mat_free(node->cinv);
2223 isl_mat_free(node->ctrans);
2224 node->ctrans = isl_mat_copy(Q);
2225 node->cmap = isl_mat_transpose(Q);
2226 node->cinv = isl_mat_transpose(U);
2227 node->rank = isl_mat_initial_non_zero_cols(H);
2228 isl_mat_free(H);
2230 if (!node->cmap || !node->cinv || !node->ctrans || node->rank < 0)
2231 return -1;
2232 return 0;
2235 /* How many times should we count the constraints in "edge"?
2237 * If carry is set, then we are counting the number of
2238 * (validity or conditional validity) constraints that will be added
2239 * in setup_carry_lp and we count each edge exactly once.
2241 * Otherwise, we count as follows
2242 * validity -> 1 (>= 0)
2243 * validity+proximity -> 2 (>= 0 and upper bound)
2244 * proximity -> 2 (lower and upper bound)
2245 * local(+any) -> 2 (>= 0 and <= 0)
2247 * If an edge is only marked conditional_validity then it counts
2248 * as zero since it is only checked afterwards.
2250 * If "use_coincidence" is set, then we treat coincidence edges as local edges.
2251 * Otherwise, we ignore them.
2253 static int edge_multiplicity(struct isl_sched_edge *edge, int carry,
2254 int use_coincidence)
2256 if (carry && !is_validity(edge) && !is_conditional_validity(edge))
2257 return 0;
2258 if (carry)
2259 return 1;
2260 if (is_proximity(edge) || is_local(edge))
2261 return 2;
2262 if (use_coincidence && is_coincidence(edge))
2263 return 2;
2264 if (is_validity(edge))
2265 return 1;
2266 return 0;
2269 /* Count the number of equality and inequality constraints
2270 * that will be added for the given map.
2272 * "use_coincidence" is set if we should take into account coincidence edges.
2274 static int count_map_constraints(struct isl_sched_graph *graph,
2275 struct isl_sched_edge *edge, __isl_take isl_map *map,
2276 int *n_eq, int *n_ineq, int carry, int use_coincidence)
2278 isl_basic_set *coef;
2279 int f = edge_multiplicity(edge, carry, use_coincidence);
2281 if (f == 0) {
2282 isl_map_free(map);
2283 return 0;
2286 if (edge->src == edge->dst)
2287 coef = intra_coefficients(graph, edge->src, map);
2288 else
2289 coef = inter_coefficients(graph, edge, map);
2290 if (!coef)
2291 return -1;
2292 *n_eq += f * coef->n_eq;
2293 *n_ineq += f * coef->n_ineq;
2294 isl_basic_set_free(coef);
2296 return 0;
2299 /* Count the number of equality and inequality constraints
2300 * that will be added to the main lp problem.
2301 * We count as follows
2302 * validity -> 1 (>= 0)
2303 * validity+proximity -> 2 (>= 0 and upper bound)
2304 * proximity -> 2 (lower and upper bound)
2305 * local(+any) -> 2 (>= 0 and <= 0)
2307 * If "use_coincidence" is set, then we treat coincidence edges as local edges.
2308 * Otherwise, we ignore them.
2310 static int count_constraints(struct isl_sched_graph *graph,
2311 int *n_eq, int *n_ineq, int use_coincidence)
2313 int i;
2315 *n_eq = *n_ineq = 0;
2316 for (i = 0; i < graph->n_edge; ++i) {
2317 struct isl_sched_edge *edge= &graph->edge[i];
2318 isl_map *map = isl_map_copy(edge->map);
2320 if (count_map_constraints(graph, edge, map, n_eq, n_ineq,
2321 0, use_coincidence) < 0)
2322 return -1;
2325 return 0;
2328 /* Count the number of constraints that will be added by
2329 * add_bound_constant_constraints to bound the values of the constant terms
2330 * and increment *n_eq and *n_ineq accordingly.
2332 * In practice, add_bound_constant_constraints only adds inequalities.
2334 static isl_stat count_bound_constant_constraints(isl_ctx *ctx,
2335 struct isl_sched_graph *graph, int *n_eq, int *n_ineq)
2337 if (isl_options_get_schedule_max_constant_term(ctx) == -1)
2338 return isl_stat_ok;
2340 *n_ineq += graph->n;
2342 return isl_stat_ok;
2345 /* Add constraints to bound the values of the constant terms in the schedule,
2346 * if requested by the user.
2348 * The maximal value of the constant terms is defined by the option
2349 * "schedule_max_constant_term".
2351 * Within each node, the coefficients have the following order:
2352 * - c_i_0
2353 * - positive and negative parts of c_i_n (if parametric)
2354 * - positive and negative parts of c_i_x
2356 static isl_stat add_bound_constant_constraints(isl_ctx *ctx,
2357 struct isl_sched_graph *graph)
2359 int i, k;
2360 int max;
2361 int total;
2363 max = isl_options_get_schedule_max_constant_term(ctx);
2364 if (max == -1)
2365 return isl_stat_ok;
2367 total = isl_basic_set_dim(graph->lp, isl_dim_set);
2369 for (i = 0; i < graph->n; ++i) {
2370 struct isl_sched_node *node = &graph->node[i];
2371 k = isl_basic_set_alloc_inequality(graph->lp);
2372 if (k < 0)
2373 return isl_stat_error;
2374 isl_seq_clr(graph->lp->ineq[k], 1 + total);
2375 isl_int_set_si(graph->lp->ineq[k][1 + node->start], -1);
2376 isl_int_set_si(graph->lp->ineq[k][0], max);
2379 return isl_stat_ok;
2382 /* Count the number of constraints that will be added by
2383 * add_bound_coefficient_constraints and increment *n_eq and *n_ineq
2384 * accordingly.
2386 * In practice, add_bound_coefficient_constraints only adds inequalities.
2388 static int count_bound_coefficient_constraints(isl_ctx *ctx,
2389 struct isl_sched_graph *graph, int *n_eq, int *n_ineq)
2391 int i;
2393 if (ctx->opt->schedule_max_coefficient == -1)
2394 return 0;
2396 for (i = 0; i < graph->n; ++i)
2397 *n_ineq += 2 * graph->node[i].nparam + 2 * graph->node[i].nvar;
2399 return 0;
2402 /* Add constraints that bound the values of the variable and parameter
2403 * coefficients of the schedule.
2405 * The maximal value of the coefficients is defined by the option
2406 * 'schedule_max_coefficient'.
2408 static int add_bound_coefficient_constraints(isl_ctx *ctx,
2409 struct isl_sched_graph *graph)
2411 int i, j, k;
2412 int max_coefficient;
2413 int total;
2415 max_coefficient = ctx->opt->schedule_max_coefficient;
2417 if (max_coefficient == -1)
2418 return 0;
2420 total = isl_basic_set_total_dim(graph->lp);
2422 for (i = 0; i < graph->n; ++i) {
2423 struct isl_sched_node *node = &graph->node[i];
2424 for (j = 0; j < 2 * node->nparam + 2 * node->nvar; ++j) {
2425 int dim;
2426 k = isl_basic_set_alloc_inequality(graph->lp);
2427 if (k < 0)
2428 return -1;
2429 dim = 1 + node->start + 1 + j;
2430 isl_seq_clr(graph->lp->ineq[k], 1 + total);
2431 isl_int_set_si(graph->lp->ineq[k][dim], -1);
2432 isl_int_set_si(graph->lp->ineq[k][0], max_coefficient);
2436 return 0;
2439 /* Add a constraint to graph->lp that equates the value at position
2440 * "sum_pos" to the sum of the "n" values starting at "first".
2442 static isl_stat add_sum_constraint(struct isl_sched_graph *graph,
2443 int sum_pos, int first, int n)
2445 int i, k;
2446 int total;
2448 total = isl_basic_set_dim(graph->lp, isl_dim_set);
2450 k = isl_basic_set_alloc_equality(graph->lp);
2451 if (k < 0)
2452 return isl_stat_error;
2453 isl_seq_clr(graph->lp->eq[k], 1 + total);
2454 isl_int_set_si(graph->lp->eq[k][1 + sum_pos], -1);
2455 for (i = 0; i < n; ++i)
2456 isl_int_set_si(graph->lp->eq[k][1 + first + i], 1);
2458 return isl_stat_ok;
2461 /* Construct an ILP problem for finding schedule coefficients
2462 * that result in non-negative, but small dependence distances
2463 * over all dependences.
2464 * In particular, the dependence distances over proximity edges
2465 * are bounded by m_0 + m_n n and we compute schedule coefficients
2466 * with small values (preferably zero) of m_n and m_0.
2468 * All variables of the ILP are non-negative. The actual coefficients
2469 * may be negative, so each coefficient is represented as the difference
2470 * of two non-negative variables. The negative part always appears
2471 * immediately before the positive part.
2472 * Other than that, the variables have the following order
2474 * - sum of positive and negative parts of m_n coefficients
2475 * - m_0
2476 * - sum of positive and negative parts of all c_n coefficients
2477 * (unconstrained when computing non-parametric schedules)
2478 * - sum of positive and negative parts of all c_x coefficients
2479 * - positive and negative parts of m_n coefficients
2480 * - for each node
2481 * - c_i_0
2482 * - positive and negative parts of c_i_n (if parametric)
2483 * - positive and negative parts of c_i_x
2485 * The c_i_x are not represented directly, but through the columns of
2486 * node->cmap. That is, the computed values are for variable t_i_x
2487 * such that c_i_x = Q t_i_x with Q equal to node->cmap.
2489 * The constraints are those from the edges plus two or three equalities
2490 * to express the sums.
2492 * If "use_coincidence" is set, then we treat coincidence edges as local edges.
2493 * Otherwise, we ignore them.
2495 static isl_stat setup_lp(isl_ctx *ctx, struct isl_sched_graph *graph,
2496 int use_coincidence)
2498 int i, j;
2499 int k;
2500 unsigned nparam;
2501 unsigned total;
2502 isl_space *space;
2503 int parametric;
2504 int param_pos;
2505 int n_eq, n_ineq;
2507 parametric = ctx->opt->schedule_parametric;
2508 nparam = isl_space_dim(graph->node[0].space, isl_dim_param);
2509 param_pos = 4;
2510 total = param_pos + 2 * nparam;
2511 for (i = 0; i < graph->n; ++i) {
2512 struct isl_sched_node *node = &graph->node[graph->sorted[i]];
2513 if (node_update_cmap(node) < 0)
2514 return isl_stat_error;
2515 node->start = total;
2516 total += 1 + 2 * (node->nparam + node->nvar);
2519 if (count_constraints(graph, &n_eq, &n_ineq, use_coincidence) < 0)
2520 return isl_stat_error;
2521 if (count_bound_constant_constraints(ctx, graph, &n_eq, &n_ineq) < 0)
2522 return isl_stat_error;
2523 if (count_bound_coefficient_constraints(ctx, graph, &n_eq, &n_ineq) < 0)
2524 return isl_stat_error;
2526 space = isl_space_set_alloc(ctx, 0, total);
2527 isl_basic_set_free(graph->lp);
2528 n_eq += 2 + parametric;
2530 graph->lp = isl_basic_set_alloc_space(space, 0, n_eq, n_ineq);
2532 if (add_sum_constraint(graph, 0, param_pos, 2 * nparam) < 0)
2533 return isl_stat_error;
2535 if (parametric) {
2536 k = isl_basic_set_alloc_equality(graph->lp);
2537 if (k < 0)
2538 return isl_stat_error;
2539 isl_seq_clr(graph->lp->eq[k], 1 + total);
2540 isl_int_set_si(graph->lp->eq[k][3], -1);
2541 for (i = 0; i < graph->n; ++i) {
2542 int pos = 1 + graph->node[i].start + 1;
2544 for (j = 0; j < 2 * graph->node[i].nparam; ++j)
2545 isl_int_set_si(graph->lp->eq[k][pos + j], 1);
2549 k = isl_basic_set_alloc_equality(graph->lp);
2550 if (k < 0)
2551 return isl_stat_error;
2552 isl_seq_clr(graph->lp->eq[k], 1 + total);
2553 isl_int_set_si(graph->lp->eq[k][4], -1);
2554 for (i = 0; i < graph->n; ++i) {
2555 struct isl_sched_node *node = &graph->node[i];
2556 int pos = 1 + node->start + 1 + 2 * node->nparam;
2558 for (j = 0; j < 2 * node->nvar; ++j)
2559 isl_int_set_si(graph->lp->eq[k][pos + j], 1);
2562 if (add_bound_constant_constraints(ctx, graph) < 0)
2563 return isl_stat_error;
2564 if (add_bound_coefficient_constraints(ctx, graph) < 0)
2565 return isl_stat_error;
2566 if (add_all_validity_constraints(graph, use_coincidence) < 0)
2567 return isl_stat_error;
2568 if (add_all_proximity_constraints(graph, use_coincidence) < 0)
2569 return isl_stat_error;
2571 return isl_stat_ok;
2574 /* Analyze the conflicting constraint found by
2575 * isl_tab_basic_set_non_trivial_lexmin. If it corresponds to the validity
2576 * constraint of one of the edges between distinct nodes, living, moreover
2577 * in distinct SCCs, then record the source and sink SCC as this may
2578 * be a good place to cut between SCCs.
2580 static int check_conflict(int con, void *user)
2582 int i;
2583 struct isl_sched_graph *graph = user;
2585 if (graph->src_scc >= 0)
2586 return 0;
2588 con -= graph->lp->n_eq;
2590 if (con >= graph->lp->n_ineq)
2591 return 0;
2593 for (i = 0; i < graph->n_edge; ++i) {
2594 if (!is_validity(&graph->edge[i]))
2595 continue;
2596 if (graph->edge[i].src == graph->edge[i].dst)
2597 continue;
2598 if (graph->edge[i].src->scc == graph->edge[i].dst->scc)
2599 continue;
2600 if (graph->edge[i].start > con)
2601 continue;
2602 if (graph->edge[i].end <= con)
2603 continue;
2604 graph->src_scc = graph->edge[i].src->scc;
2605 graph->dst_scc = graph->edge[i].dst->scc;
2608 return 0;
2611 /* Check whether the next schedule row of the given node needs to be
2612 * non-trivial. Lower-dimensional domains may have some trivial rows,
2613 * but as soon as the number of remaining required non-trivial rows
2614 * is as large as the number or remaining rows to be computed,
2615 * all remaining rows need to be non-trivial.
2617 static int needs_row(struct isl_sched_graph *graph, struct isl_sched_node *node)
2619 return node->nvar - node->rank >= graph->maxvar - graph->n_row;
2622 /* Solve the ILP problem constructed in setup_lp.
2623 * For each node such that all the remaining rows of its schedule
2624 * need to be non-trivial, we construct a non-triviality region.
2625 * This region imposes that the next row is independent of previous rows.
2626 * In particular the coefficients c_i_x are represented by t_i_x
2627 * variables with c_i_x = Q t_i_x and Q a unimodular matrix such that
2628 * its first columns span the rows of the previously computed part
2629 * of the schedule. The non-triviality region enforces that at least
2630 * one of the remaining components of t_i_x is non-zero, i.e.,
2631 * that the new schedule row depends on at least one of the remaining
2632 * columns of Q.
2634 static __isl_give isl_vec *solve_lp(struct isl_sched_graph *graph)
2636 int i;
2637 isl_vec *sol;
2638 isl_basic_set *lp;
2640 for (i = 0; i < graph->n; ++i) {
2641 struct isl_sched_node *node = &graph->node[i];
2642 int skip = node->rank;
2643 graph->region[i].pos = node->start + 1 + 2*(node->nparam+skip);
2644 if (needs_row(graph, node))
2645 graph->region[i].len = 2 * (node->nvar - skip);
2646 else
2647 graph->region[i].len = 0;
2649 lp = isl_basic_set_copy(graph->lp);
2650 sol = isl_tab_basic_set_non_trivial_lexmin(lp, 2, graph->n,
2651 graph->region, &check_conflict, graph);
2652 return sol;
2655 /* Update the schedules of all nodes based on the given solution
2656 * of the LP problem.
2657 * The new row is added to the current band.
2658 * All possibly negative coefficients are encoded as a difference
2659 * of two non-negative variables, so we need to perform the subtraction
2660 * here. Moreover, if use_cmap is set, then the solution does
2661 * not refer to the actual coefficients c_i_x, but instead to variables
2662 * t_i_x such that c_i_x = Q t_i_x and Q is equal to node->cmap.
2663 * In this case, we then also need to perform this multiplication
2664 * to obtain the values of c_i_x.
2666 * If coincident is set, then the caller guarantees that the new
2667 * row satisfies the coincidence constraints.
2669 static int update_schedule(struct isl_sched_graph *graph,
2670 __isl_take isl_vec *sol, int use_cmap, int coincident)
2672 int i, j;
2673 isl_vec *csol = NULL;
2675 if (!sol)
2676 goto error;
2677 if (sol->size == 0)
2678 isl_die(sol->ctx, isl_error_internal,
2679 "no solution found", goto error);
2680 if (graph->n_total_row >= graph->max_row)
2681 isl_die(sol->ctx, isl_error_internal,
2682 "too many schedule rows", goto error);
2684 for (i = 0; i < graph->n; ++i) {
2685 struct isl_sched_node *node = &graph->node[i];
2686 int pos = node->start;
2687 int row = isl_mat_rows(node->sched);
2689 isl_vec_free(csol);
2690 csol = isl_vec_alloc(sol->ctx, node->nvar);
2691 if (!csol)
2692 goto error;
2694 isl_map_free(node->sched_map);
2695 node->sched_map = NULL;
2696 node->sched = isl_mat_add_rows(node->sched, 1);
2697 if (!node->sched)
2698 goto error;
2699 node->sched = isl_mat_set_element(node->sched, row, 0,
2700 sol->el[1 + pos]);
2701 for (j = 0; j < node->nparam + node->nvar; ++j)
2702 isl_int_sub(sol->el[1 + pos + 1 + 2 * j + 1],
2703 sol->el[1 + pos + 1 + 2 * j + 1],
2704 sol->el[1 + pos + 1 + 2 * j]);
2705 for (j = 0; j < node->nparam; ++j)
2706 node->sched = isl_mat_set_element(node->sched,
2707 row, 1 + j, sol->el[1+pos+1+2*j+1]);
2708 for (j = 0; j < node->nvar; ++j)
2709 isl_int_set(csol->el[j],
2710 sol->el[1+pos+1+2*(node->nparam+j)+1]);
2711 if (use_cmap)
2712 csol = isl_mat_vec_product(isl_mat_copy(node->cmap),
2713 csol);
2714 if (!csol)
2715 goto error;
2716 for (j = 0; j < node->nvar; ++j)
2717 node->sched = isl_mat_set_element(node->sched,
2718 row, 1 + node->nparam + j, csol->el[j]);
2719 node->coincident[graph->n_total_row] = coincident;
2721 isl_vec_free(sol);
2722 isl_vec_free(csol);
2724 graph->n_row++;
2725 graph->n_total_row++;
2727 return 0;
2728 error:
2729 isl_vec_free(sol);
2730 isl_vec_free(csol);
2731 return -1;
2734 /* Convert row "row" of node->sched into an isl_aff living in "ls"
2735 * and return this isl_aff.
2737 static __isl_give isl_aff *extract_schedule_row(__isl_take isl_local_space *ls,
2738 struct isl_sched_node *node, int row)
2740 int j;
2741 isl_int v;
2742 isl_aff *aff;
2744 isl_int_init(v);
2746 aff = isl_aff_zero_on_domain(ls);
2747 isl_mat_get_element(node->sched, row, 0, &v);
2748 aff = isl_aff_set_constant(aff, v);
2749 for (j = 0; j < node->nparam; ++j) {
2750 isl_mat_get_element(node->sched, row, 1 + j, &v);
2751 aff = isl_aff_set_coefficient(aff, isl_dim_param, j, v);
2753 for (j = 0; j < node->nvar; ++j) {
2754 isl_mat_get_element(node->sched, row, 1 + node->nparam + j, &v);
2755 aff = isl_aff_set_coefficient(aff, isl_dim_in, j, v);
2758 isl_int_clear(v);
2760 return aff;
2763 /* Convert the "n" rows starting at "first" of node->sched into a multi_aff
2764 * and return this multi_aff.
2766 * The result is defined over the uncompressed node domain.
2768 static __isl_give isl_multi_aff *node_extract_partial_schedule_multi_aff(
2769 struct isl_sched_node *node, int first, int n)
2771 int i;
2772 isl_space *space;
2773 isl_local_space *ls;
2774 isl_aff *aff;
2775 isl_multi_aff *ma;
2776 int nrow;
2778 if (!node)
2779 return NULL;
2780 nrow = isl_mat_rows(node->sched);
2781 if (node->compressed)
2782 space = isl_multi_aff_get_domain_space(node->decompress);
2783 else
2784 space = isl_space_copy(node->space);
2785 ls = isl_local_space_from_space(isl_space_copy(space));
2786 space = isl_space_from_domain(space);
2787 space = isl_space_add_dims(space, isl_dim_out, n);
2788 ma = isl_multi_aff_zero(space);
2790 for (i = first; i < first + n; ++i) {
2791 aff = extract_schedule_row(isl_local_space_copy(ls), node, i);
2792 ma = isl_multi_aff_set_aff(ma, i - first, aff);
2795 isl_local_space_free(ls);
2797 if (node->compressed)
2798 ma = isl_multi_aff_pullback_multi_aff(ma,
2799 isl_multi_aff_copy(node->compress));
2801 return ma;
2804 /* Convert node->sched into a multi_aff and return this multi_aff.
2806 * The result is defined over the uncompressed node domain.
2808 static __isl_give isl_multi_aff *node_extract_schedule_multi_aff(
2809 struct isl_sched_node *node)
2811 int nrow;
2813 nrow = isl_mat_rows(node->sched);
2814 return node_extract_partial_schedule_multi_aff(node, 0, nrow);
2817 /* Convert node->sched into a map and return this map.
2819 * The result is cached in node->sched_map, which needs to be released
2820 * whenever node->sched is updated.
2821 * It is defined over the uncompressed node domain.
2823 static __isl_give isl_map *node_extract_schedule(struct isl_sched_node *node)
2825 if (!node->sched_map) {
2826 isl_multi_aff *ma;
2828 ma = node_extract_schedule_multi_aff(node);
2829 node->sched_map = isl_map_from_multi_aff(ma);
2832 return isl_map_copy(node->sched_map);
2835 /* Construct a map that can be used to update a dependence relation
2836 * based on the current schedule.
2837 * That is, construct a map expressing that source and sink
2838 * are executed within the same iteration of the current schedule.
2839 * This map can then be intersected with the dependence relation.
2840 * This is not the most efficient way, but this shouldn't be a critical
2841 * operation.
2843 static __isl_give isl_map *specializer(struct isl_sched_node *src,
2844 struct isl_sched_node *dst)
2846 isl_map *src_sched, *dst_sched;
2848 src_sched = node_extract_schedule(src);
2849 dst_sched = node_extract_schedule(dst);
2850 return isl_map_apply_range(src_sched, isl_map_reverse(dst_sched));
2853 /* Intersect the domains of the nested relations in domain and range
2854 * of "umap" with "map".
2856 static __isl_give isl_union_map *intersect_domains(
2857 __isl_take isl_union_map *umap, __isl_keep isl_map *map)
2859 isl_union_set *uset;
2861 umap = isl_union_map_zip(umap);
2862 uset = isl_union_set_from_set(isl_map_wrap(isl_map_copy(map)));
2863 umap = isl_union_map_intersect_domain(umap, uset);
2864 umap = isl_union_map_zip(umap);
2865 return umap;
2868 /* Update the dependence relation of the given edge based
2869 * on the current schedule.
2870 * If the dependence is carried completely by the current schedule, then
2871 * it is removed from the edge_tables. It is kept in the list of edges
2872 * as otherwise all edge_tables would have to be recomputed.
2874 static int update_edge(struct isl_sched_graph *graph,
2875 struct isl_sched_edge *edge)
2877 int empty;
2878 isl_map *id;
2880 id = specializer(edge->src, edge->dst);
2881 edge->map = isl_map_intersect(edge->map, isl_map_copy(id));
2882 if (!edge->map)
2883 goto error;
2885 if (edge->tagged_condition) {
2886 edge->tagged_condition =
2887 intersect_domains(edge->tagged_condition, id);
2888 if (!edge->tagged_condition)
2889 goto error;
2891 if (edge->tagged_validity) {
2892 edge->tagged_validity =
2893 intersect_domains(edge->tagged_validity, id);
2894 if (!edge->tagged_validity)
2895 goto error;
2898 empty = isl_map_plain_is_empty(edge->map);
2899 if (empty < 0)
2900 goto error;
2901 if (empty)
2902 graph_remove_edge(graph, edge);
2904 isl_map_free(id);
2905 return 0;
2906 error:
2907 isl_map_free(id);
2908 return -1;
2911 /* Does the domain of "umap" intersect "uset"?
2913 static int domain_intersects(__isl_keep isl_union_map *umap,
2914 __isl_keep isl_union_set *uset)
2916 int empty;
2918 umap = isl_union_map_copy(umap);
2919 umap = isl_union_map_intersect_domain(umap, isl_union_set_copy(uset));
2920 empty = isl_union_map_is_empty(umap);
2921 isl_union_map_free(umap);
2923 return empty < 0 ? -1 : !empty;
2926 /* Does the range of "umap" intersect "uset"?
2928 static int range_intersects(__isl_keep isl_union_map *umap,
2929 __isl_keep isl_union_set *uset)
2931 int empty;
2933 umap = isl_union_map_copy(umap);
2934 umap = isl_union_map_intersect_range(umap, isl_union_set_copy(uset));
2935 empty = isl_union_map_is_empty(umap);
2936 isl_union_map_free(umap);
2938 return empty < 0 ? -1 : !empty;
2941 /* Are the condition dependences of "edge" local with respect to
2942 * the current schedule?
2944 * That is, are domain and range of the condition dependences mapped
2945 * to the same point?
2947 * In other words, is the condition false?
2949 static int is_condition_false(struct isl_sched_edge *edge)
2951 isl_union_map *umap;
2952 isl_map *map, *sched, *test;
2953 int empty, local;
2955 empty = isl_union_map_is_empty(edge->tagged_condition);
2956 if (empty < 0 || empty)
2957 return empty;
2959 umap = isl_union_map_copy(edge->tagged_condition);
2960 umap = isl_union_map_zip(umap);
2961 umap = isl_union_set_unwrap(isl_union_map_domain(umap));
2962 map = isl_map_from_union_map(umap);
2964 sched = node_extract_schedule(edge->src);
2965 map = isl_map_apply_domain(map, sched);
2966 sched = node_extract_schedule(edge->dst);
2967 map = isl_map_apply_range(map, sched);
2969 test = isl_map_identity(isl_map_get_space(map));
2970 local = isl_map_is_subset(map, test);
2971 isl_map_free(map);
2972 isl_map_free(test);
2974 return local;
2977 /* For each conditional validity constraint that is adjacent
2978 * to a condition with domain in condition_source or range in condition_sink,
2979 * turn it into an unconditional validity constraint.
2981 static int unconditionalize_adjacent_validity(struct isl_sched_graph *graph,
2982 __isl_take isl_union_set *condition_source,
2983 __isl_take isl_union_set *condition_sink)
2985 int i;
2987 condition_source = isl_union_set_coalesce(condition_source);
2988 condition_sink = isl_union_set_coalesce(condition_sink);
2990 for (i = 0; i < graph->n_edge; ++i) {
2991 int adjacent;
2992 isl_union_map *validity;
2994 if (!is_conditional_validity(&graph->edge[i]))
2995 continue;
2996 if (is_validity(&graph->edge[i]))
2997 continue;
2999 validity = graph->edge[i].tagged_validity;
3000 adjacent = domain_intersects(validity, condition_sink);
3001 if (adjacent >= 0 && !adjacent)
3002 adjacent = range_intersects(validity, condition_source);
3003 if (adjacent < 0)
3004 goto error;
3005 if (!adjacent)
3006 continue;
3008 set_validity(&graph->edge[i]);
3011 isl_union_set_free(condition_source);
3012 isl_union_set_free(condition_sink);
3013 return 0;
3014 error:
3015 isl_union_set_free(condition_source);
3016 isl_union_set_free(condition_sink);
3017 return -1;
3020 /* Update the dependence relations of all edges based on the current schedule
3021 * and enforce conditional validity constraints that are adjacent
3022 * to satisfied condition constraints.
3024 * First check if any of the condition constraints are satisfied
3025 * (i.e., not local to the outer schedule) and keep track of
3026 * their domain and range.
3027 * Then update all dependence relations (which removes the non-local
3028 * constraints).
3029 * Finally, if any condition constraints turned out to be satisfied,
3030 * then turn all adjacent conditional validity constraints into
3031 * unconditional validity constraints.
3033 static int update_edges(isl_ctx *ctx, struct isl_sched_graph *graph)
3035 int i;
3036 int any = 0;
3037 isl_union_set *source, *sink;
3039 source = isl_union_set_empty(isl_space_params_alloc(ctx, 0));
3040 sink = isl_union_set_empty(isl_space_params_alloc(ctx, 0));
3041 for (i = 0; i < graph->n_edge; ++i) {
3042 int local;
3043 isl_union_set *uset;
3044 isl_union_map *umap;
3046 if (!is_condition(&graph->edge[i]))
3047 continue;
3048 if (is_local(&graph->edge[i]))
3049 continue;
3050 local = is_condition_false(&graph->edge[i]);
3051 if (local < 0)
3052 goto error;
3053 if (local)
3054 continue;
3056 any = 1;
3058 umap = isl_union_map_copy(graph->edge[i].tagged_condition);
3059 uset = isl_union_map_domain(umap);
3060 source = isl_union_set_union(source, uset);
3062 umap = isl_union_map_copy(graph->edge[i].tagged_condition);
3063 uset = isl_union_map_range(umap);
3064 sink = isl_union_set_union(sink, uset);
3067 for (i = graph->n_edge - 1; i >= 0; --i) {
3068 if (update_edge(graph, &graph->edge[i]) < 0)
3069 goto error;
3072 if (any)
3073 return unconditionalize_adjacent_validity(graph, source, sink);
3075 isl_union_set_free(source);
3076 isl_union_set_free(sink);
3077 return 0;
3078 error:
3079 isl_union_set_free(source);
3080 isl_union_set_free(sink);
3081 return -1;
3084 static void next_band(struct isl_sched_graph *graph)
3086 graph->band_start = graph->n_total_row;
3089 /* Return the union of the universe domains of the nodes in "graph"
3090 * that satisfy "pred".
3092 static __isl_give isl_union_set *isl_sched_graph_domain(isl_ctx *ctx,
3093 struct isl_sched_graph *graph,
3094 int (*pred)(struct isl_sched_node *node, int data), int data)
3096 int i;
3097 isl_set *set;
3098 isl_union_set *dom;
3100 for (i = 0; i < graph->n; ++i)
3101 if (pred(&graph->node[i], data))
3102 break;
3104 if (i >= graph->n)
3105 isl_die(ctx, isl_error_internal,
3106 "empty component", return NULL);
3108 set = isl_set_universe(isl_space_copy(graph->node[i].space));
3109 dom = isl_union_set_from_set(set);
3111 for (i = i + 1; i < graph->n; ++i) {
3112 if (!pred(&graph->node[i], data))
3113 continue;
3114 set = isl_set_universe(isl_space_copy(graph->node[i].space));
3115 dom = isl_union_set_union(dom, isl_union_set_from_set(set));
3118 return dom;
3121 /* Return a list of unions of universe domains, where each element
3122 * in the list corresponds to an SCC (or WCC) indexed by node->scc.
3124 static __isl_give isl_union_set_list *extract_sccs(isl_ctx *ctx,
3125 struct isl_sched_graph *graph)
3127 int i;
3128 isl_union_set_list *filters;
3130 filters = isl_union_set_list_alloc(ctx, graph->scc);
3131 for (i = 0; i < graph->scc; ++i) {
3132 isl_union_set *dom;
3134 dom = isl_sched_graph_domain(ctx, graph, &node_scc_exactly, i);
3135 filters = isl_union_set_list_add(filters, dom);
3138 return filters;
3141 /* Return a list of two unions of universe domains, one for the SCCs up
3142 * to and including graph->src_scc and another for the other SCCs.
3144 static __isl_give isl_union_set_list *extract_split(isl_ctx *ctx,
3145 struct isl_sched_graph *graph)
3147 isl_union_set *dom;
3148 isl_union_set_list *filters;
3150 filters = isl_union_set_list_alloc(ctx, 2);
3151 dom = isl_sched_graph_domain(ctx, graph,
3152 &node_scc_at_most, graph->src_scc);
3153 filters = isl_union_set_list_add(filters, dom);
3154 dom = isl_sched_graph_domain(ctx, graph,
3155 &node_scc_at_least, graph->src_scc + 1);
3156 filters = isl_union_set_list_add(filters, dom);
3158 return filters;
3161 /* Copy nodes that satisfy node_pred from the src dependence graph
3162 * to the dst dependence graph.
3164 static int copy_nodes(struct isl_sched_graph *dst, struct isl_sched_graph *src,
3165 int (*node_pred)(struct isl_sched_node *node, int data), int data)
3167 int i;
3169 dst->n = 0;
3170 for (i = 0; i < src->n; ++i) {
3171 int j;
3173 if (!node_pred(&src->node[i], data))
3174 continue;
3176 j = dst->n;
3177 dst->node[j].space = isl_space_copy(src->node[i].space);
3178 dst->node[j].compressed = src->node[i].compressed;
3179 dst->node[j].hull = isl_set_copy(src->node[i].hull);
3180 dst->node[j].compress =
3181 isl_multi_aff_copy(src->node[i].compress);
3182 dst->node[j].decompress =
3183 isl_multi_aff_copy(src->node[i].decompress);
3184 dst->node[j].nvar = src->node[i].nvar;
3185 dst->node[j].nparam = src->node[i].nparam;
3186 dst->node[j].sched = isl_mat_copy(src->node[i].sched);
3187 dst->node[j].sched_map = isl_map_copy(src->node[i].sched_map);
3188 dst->node[j].coincident = src->node[i].coincident;
3189 dst->n++;
3191 if (!dst->node[j].space || !dst->node[j].sched)
3192 return -1;
3193 if (dst->node[j].compressed &&
3194 (!dst->node[j].hull || !dst->node[j].compress ||
3195 !dst->node[j].decompress))
3196 return -1;
3199 return 0;
3202 /* Copy non-empty edges that satisfy edge_pred from the src dependence graph
3203 * to the dst dependence graph.
3204 * If the source or destination node of the edge is not in the destination
3205 * graph, then it must be a backward proximity edge and it should simply
3206 * be ignored.
3208 static int copy_edges(isl_ctx *ctx, struct isl_sched_graph *dst,
3209 struct isl_sched_graph *src,
3210 int (*edge_pred)(struct isl_sched_edge *edge, int data), int data)
3212 int i;
3213 enum isl_edge_type t;
3215 dst->n_edge = 0;
3216 for (i = 0; i < src->n_edge; ++i) {
3217 struct isl_sched_edge *edge = &src->edge[i];
3218 isl_map *map;
3219 isl_union_map *tagged_condition;
3220 isl_union_map *tagged_validity;
3221 struct isl_sched_node *dst_src, *dst_dst;
3223 if (!edge_pred(edge, data))
3224 continue;
3226 if (isl_map_plain_is_empty(edge->map))
3227 continue;
3229 dst_src = graph_find_node(ctx, dst, edge->src->space);
3230 dst_dst = graph_find_node(ctx, dst, edge->dst->space);
3231 if (!dst_src || !dst_dst) {
3232 if (is_validity(edge) || is_conditional_validity(edge))
3233 isl_die(ctx, isl_error_internal,
3234 "backward (conditional) validity edge",
3235 return -1);
3236 continue;
3239 map = isl_map_copy(edge->map);
3240 tagged_condition = isl_union_map_copy(edge->tagged_condition);
3241 tagged_validity = isl_union_map_copy(edge->tagged_validity);
3243 dst->edge[dst->n_edge].src = dst_src;
3244 dst->edge[dst->n_edge].dst = dst_dst;
3245 dst->edge[dst->n_edge].map = map;
3246 dst->edge[dst->n_edge].tagged_condition = tagged_condition;
3247 dst->edge[dst->n_edge].tagged_validity = tagged_validity;
3248 dst->edge[dst->n_edge].types = edge->types;
3249 dst->n_edge++;
3251 if (edge->tagged_condition && !tagged_condition)
3252 return -1;
3253 if (edge->tagged_validity && !tagged_validity)
3254 return -1;
3256 for (t = isl_edge_first; t <= isl_edge_last; ++t) {
3257 if (edge !=
3258 graph_find_edge(src, t, edge->src, edge->dst))
3259 continue;
3260 if (graph_edge_table_add(ctx, dst, t,
3261 &dst->edge[dst->n_edge - 1]) < 0)
3262 return -1;
3266 return 0;
3269 /* Compute the maximal number of variables over all nodes.
3270 * This is the maximal number of linearly independent schedule
3271 * rows that we need to compute.
3272 * Just in case we end up in a part of the dependence graph
3273 * with only lower-dimensional domains, we make sure we will
3274 * compute the required amount of extra linearly independent rows.
3276 static int compute_maxvar(struct isl_sched_graph *graph)
3278 int i;
3280 graph->maxvar = 0;
3281 for (i = 0; i < graph->n; ++i) {
3282 struct isl_sched_node *node = &graph->node[i];
3283 int nvar;
3285 if (node_update_cmap(node) < 0)
3286 return -1;
3287 nvar = node->nvar + graph->n_row - node->rank;
3288 if (nvar > graph->maxvar)
3289 graph->maxvar = nvar;
3292 return 0;
3295 /* Extract the subgraph of "graph" that consists of the node satisfying
3296 * "node_pred" and the edges satisfying "edge_pred" and store
3297 * the result in "sub".
3299 static int extract_sub_graph(isl_ctx *ctx, struct isl_sched_graph *graph,
3300 int (*node_pred)(struct isl_sched_node *node, int data),
3301 int (*edge_pred)(struct isl_sched_edge *edge, int data),
3302 int data, struct isl_sched_graph *sub)
3304 int i, n = 0, n_edge = 0;
3305 int t;
3307 for (i = 0; i < graph->n; ++i)
3308 if (node_pred(&graph->node[i], data))
3309 ++n;
3310 for (i = 0; i < graph->n_edge; ++i)
3311 if (edge_pred(&graph->edge[i], data))
3312 ++n_edge;
3313 if (graph_alloc(ctx, sub, n, n_edge) < 0)
3314 return -1;
3315 if (copy_nodes(sub, graph, node_pred, data) < 0)
3316 return -1;
3317 if (graph_init_table(ctx, sub) < 0)
3318 return -1;
3319 for (t = 0; t <= isl_edge_last; ++t)
3320 sub->max_edge[t] = graph->max_edge[t];
3321 if (graph_init_edge_tables(ctx, sub) < 0)
3322 return -1;
3323 if (copy_edges(ctx, sub, graph, edge_pred, data) < 0)
3324 return -1;
3325 sub->n_row = graph->n_row;
3326 sub->max_row = graph->max_row;
3327 sub->n_total_row = graph->n_total_row;
3328 sub->band_start = graph->band_start;
3330 return 0;
3333 static __isl_give isl_schedule_node *compute_schedule(isl_schedule_node *node,
3334 struct isl_sched_graph *graph);
3335 static __isl_give isl_schedule_node *compute_schedule_wcc(
3336 isl_schedule_node *node, struct isl_sched_graph *graph);
3338 /* Compute a schedule for a subgraph of "graph". In particular, for
3339 * the graph composed of nodes that satisfy node_pred and edges that
3340 * that satisfy edge_pred.
3341 * If the subgraph is known to consist of a single component, then wcc should
3342 * be set and then we call compute_schedule_wcc on the constructed subgraph.
3343 * Otherwise, we call compute_schedule, which will check whether the subgraph
3344 * is connected.
3346 * The schedule is inserted at "node" and the updated schedule node
3347 * is returned.
3349 static __isl_give isl_schedule_node *compute_sub_schedule(
3350 __isl_take isl_schedule_node *node, isl_ctx *ctx,
3351 struct isl_sched_graph *graph,
3352 int (*node_pred)(struct isl_sched_node *node, int data),
3353 int (*edge_pred)(struct isl_sched_edge *edge, int data),
3354 int data, int wcc)
3356 struct isl_sched_graph split = { 0 };
3358 if (extract_sub_graph(ctx, graph, node_pred, edge_pred, data,
3359 &split) < 0)
3360 goto error;
3362 if (wcc)
3363 node = compute_schedule_wcc(node, &split);
3364 else
3365 node = compute_schedule(node, &split);
3367 graph_free(ctx, &split);
3368 return node;
3369 error:
3370 graph_free(ctx, &split);
3371 return isl_schedule_node_free(node);
3374 static int edge_scc_exactly(struct isl_sched_edge *edge, int scc)
3376 return edge->src->scc == scc && edge->dst->scc == scc;
3379 static int edge_dst_scc_at_most(struct isl_sched_edge *edge, int scc)
3381 return edge->dst->scc <= scc;
3384 static int edge_src_scc_at_least(struct isl_sched_edge *edge, int scc)
3386 return edge->src->scc >= scc;
3389 /* Reset the current band by dropping all its schedule rows.
3391 static int reset_band(struct isl_sched_graph *graph)
3393 int i;
3394 int drop;
3396 drop = graph->n_total_row - graph->band_start;
3397 graph->n_total_row -= drop;
3398 graph->n_row -= drop;
3400 for (i = 0; i < graph->n; ++i) {
3401 struct isl_sched_node *node = &graph->node[i];
3403 isl_map_free(node->sched_map);
3404 node->sched_map = NULL;
3406 node->sched = isl_mat_drop_rows(node->sched,
3407 graph->band_start, drop);
3409 if (!node->sched)
3410 return -1;
3413 return 0;
3416 /* Split the current graph into two parts and compute a schedule for each
3417 * part individually. In particular, one part consists of all SCCs up
3418 * to and including graph->src_scc, while the other part contains the other
3419 * SCCs. The split is enforced by a sequence node inserted at position "node"
3420 * in the schedule tree. Return the updated schedule node.
3421 * If either of these two parts consists of a sequence, then it is spliced
3422 * into the sequence containing the two parts.
3424 * The current band is reset. It would be possible to reuse
3425 * the previously computed rows as the first rows in the next
3426 * band, but recomputing them may result in better rows as we are looking
3427 * at a smaller part of the dependence graph.
3429 static __isl_give isl_schedule_node *compute_split_schedule(
3430 __isl_take isl_schedule_node *node, struct isl_sched_graph *graph)
3432 int is_seq;
3433 isl_ctx *ctx;
3434 isl_union_set_list *filters;
3436 if (!node)
3437 return NULL;
3439 if (reset_band(graph) < 0)
3440 return isl_schedule_node_free(node);
3442 next_band(graph);
3444 ctx = isl_schedule_node_get_ctx(node);
3445 filters = extract_split(ctx, graph);
3446 node = isl_schedule_node_insert_sequence(node, filters);
3447 node = isl_schedule_node_child(node, 1);
3448 node = isl_schedule_node_child(node, 0);
3450 node = compute_sub_schedule(node, ctx, graph,
3451 &node_scc_at_least, &edge_src_scc_at_least,
3452 graph->src_scc + 1, 0);
3453 is_seq = isl_schedule_node_get_type(node) == isl_schedule_node_sequence;
3454 node = isl_schedule_node_parent(node);
3455 node = isl_schedule_node_parent(node);
3456 if (is_seq)
3457 node = isl_schedule_node_sequence_splice_child(node, 1);
3458 node = isl_schedule_node_child(node, 0);
3459 node = isl_schedule_node_child(node, 0);
3460 node = compute_sub_schedule(node, ctx, graph,
3461 &node_scc_at_most, &edge_dst_scc_at_most,
3462 graph->src_scc, 0);
3463 is_seq = isl_schedule_node_get_type(node) == isl_schedule_node_sequence;
3464 node = isl_schedule_node_parent(node);
3465 node = isl_schedule_node_parent(node);
3466 if (is_seq)
3467 node = isl_schedule_node_sequence_splice_child(node, 0);
3469 return node;
3472 /* Insert a band node at position "node" in the schedule tree corresponding
3473 * to the current band in "graph". Mark the band node permutable
3474 * if "permutable" is set.
3475 * The partial schedules and the coincidence property are extracted
3476 * from the graph nodes.
3477 * Return the updated schedule node.
3479 static __isl_give isl_schedule_node *insert_current_band(
3480 __isl_take isl_schedule_node *node, struct isl_sched_graph *graph,
3481 int permutable)
3483 int i;
3484 int start, end, n;
3485 isl_multi_aff *ma;
3486 isl_multi_pw_aff *mpa;
3487 isl_multi_union_pw_aff *mupa;
3489 if (!node)
3490 return NULL;
3492 if (graph->n < 1)
3493 isl_die(isl_schedule_node_get_ctx(node), isl_error_internal,
3494 "graph should have at least one node",
3495 return isl_schedule_node_free(node));
3497 start = graph->band_start;
3498 end = graph->n_total_row;
3499 n = end - start;
3501 ma = node_extract_partial_schedule_multi_aff(&graph->node[0], start, n);
3502 mpa = isl_multi_pw_aff_from_multi_aff(ma);
3503 mupa = isl_multi_union_pw_aff_from_multi_pw_aff(mpa);
3505 for (i = 1; i < graph->n; ++i) {
3506 isl_multi_union_pw_aff *mupa_i;
3508 ma = node_extract_partial_schedule_multi_aff(&graph->node[i],
3509 start, n);
3510 mpa = isl_multi_pw_aff_from_multi_aff(ma);
3511 mupa_i = isl_multi_union_pw_aff_from_multi_pw_aff(mpa);
3512 mupa = isl_multi_union_pw_aff_union_add(mupa, mupa_i);
3514 node = isl_schedule_node_insert_partial_schedule(node, mupa);
3516 for (i = 0; i < n; ++i)
3517 node = isl_schedule_node_band_member_set_coincident(node, i,
3518 graph->node[0].coincident[start + i]);
3519 node = isl_schedule_node_band_set_permutable(node, permutable);
3521 return node;
3524 /* Update the dependence relations based on the current schedule,
3525 * add the current band to "node" and then continue with the computation
3526 * of the next band.
3527 * Return the updated schedule node.
3529 static __isl_give isl_schedule_node *compute_next_band(
3530 __isl_take isl_schedule_node *node,
3531 struct isl_sched_graph *graph, int permutable)
3533 isl_ctx *ctx;
3535 if (!node)
3536 return NULL;
3538 ctx = isl_schedule_node_get_ctx(node);
3539 if (update_edges(ctx, graph) < 0)
3540 return isl_schedule_node_free(node);
3541 node = insert_current_band(node, graph, permutable);
3542 next_band(graph);
3544 node = isl_schedule_node_child(node, 0);
3545 node = compute_schedule(node, graph);
3546 node = isl_schedule_node_parent(node);
3548 return node;
3551 /* Add constraints to graph->lp that force the dependence "map" (which
3552 * is part of the dependence relation of "edge")
3553 * to be respected and attempt to carry it, where the edge is one from
3554 * a node j to itself. "pos" is the sequence number of the given map.
3555 * That is, add constraints that enforce
3557 * (c_j_0 + c_j_n n + c_j_x y) - (c_j_0 + c_j_n n + c_j_x x)
3558 * = c_j_x (y - x) >= e_i
3560 * for each (x,y) in R.
3561 * We obtain general constraints on coefficients (c_0, c_n, c_x)
3562 * of valid constraints for (y - x) and then plug in (-e_i, 0, c_j_x),
3563 * with each coefficient in c_j_x represented as a pair of non-negative
3564 * coefficients.
3566 static int add_intra_constraints(struct isl_sched_graph *graph,
3567 struct isl_sched_edge *edge, __isl_take isl_map *map, int pos)
3569 unsigned total;
3570 isl_ctx *ctx = isl_map_get_ctx(map);
3571 isl_space *dim;
3572 isl_dim_map *dim_map;
3573 isl_basic_set *coef;
3574 struct isl_sched_node *node = edge->src;
3576 coef = intra_coefficients(graph, node, map);
3577 if (!coef)
3578 return -1;
3580 dim = isl_space_domain(isl_space_unwrap(isl_basic_set_get_space(coef)));
3582 total = isl_basic_set_total_dim(graph->lp);
3583 dim_map = isl_dim_map_alloc(ctx, total);
3584 isl_dim_map_range(dim_map, 3 + pos, 0, 0, 0, 1, -1);
3585 isl_dim_map_range(dim_map, node->start + 2 * node->nparam + 1, 2,
3586 isl_space_dim(dim, isl_dim_set), 1,
3587 node->nvar, -1);
3588 isl_dim_map_range(dim_map, node->start + 2 * node->nparam + 2, 2,
3589 isl_space_dim(dim, isl_dim_set), 1,
3590 node->nvar, 1);
3591 graph->lp = isl_basic_set_extend_constraints(graph->lp,
3592 coef->n_eq, coef->n_ineq);
3593 graph->lp = isl_basic_set_add_constraints_dim_map(graph->lp,
3594 coef, dim_map);
3595 isl_space_free(dim);
3597 return 0;
3600 /* Add constraints to graph->lp that force the dependence "map" (which
3601 * is part of the dependence relation of "edge")
3602 * to be respected and attempt to carry it, where the edge is one from
3603 * node j to node k. "pos" is the sequence number of the given map.
3604 * That is, add constraints that enforce
3606 * (c_k_0 + c_k_n n + c_k_x y) - (c_j_0 + c_j_n n + c_j_x x) >= e_i
3608 * for each (x,y) in R.
3609 * We obtain general constraints on coefficients (c_0, c_n, c_x)
3610 * of valid constraints for R and then plug in
3611 * (-e_i + c_k_0 - c_j_0, c_k_n - c_j_n, c_k_x - c_j_x)
3612 * with each coefficient (except e_i, c_k_0 and c_j_0)
3613 * represented as a pair of non-negative coefficients.
3615 static int add_inter_constraints(struct isl_sched_graph *graph,
3616 struct isl_sched_edge *edge, __isl_take isl_map *map, int pos)
3618 unsigned total;
3619 isl_ctx *ctx = isl_map_get_ctx(map);
3620 isl_space *dim;
3621 isl_dim_map *dim_map;
3622 isl_basic_set *coef;
3623 struct isl_sched_node *src = edge->src;
3624 struct isl_sched_node *dst = edge->dst;
3626 coef = inter_coefficients(graph, edge, map);
3627 if (!coef)
3628 return -1;
3630 dim = isl_space_domain(isl_space_unwrap(isl_basic_set_get_space(coef)));
3632 total = isl_basic_set_total_dim(graph->lp);
3633 dim_map = isl_dim_map_alloc(ctx, total);
3635 isl_dim_map_range(dim_map, 3 + pos, 0, 0, 0, 1, -1);
3637 isl_dim_map_range(dim_map, dst->start, 0, 0, 0, 1, 1);
3638 isl_dim_map_range(dim_map, dst->start + 1, 2, 1, 1, dst->nparam, -1);
3639 isl_dim_map_range(dim_map, dst->start + 2, 2, 1, 1, dst->nparam, 1);
3640 isl_dim_map_range(dim_map, dst->start + 2 * dst->nparam + 1, 2,
3641 isl_space_dim(dim, isl_dim_set) + src->nvar, 1,
3642 dst->nvar, -1);
3643 isl_dim_map_range(dim_map, dst->start + 2 * dst->nparam + 2, 2,
3644 isl_space_dim(dim, isl_dim_set) + src->nvar, 1,
3645 dst->nvar, 1);
3647 isl_dim_map_range(dim_map, src->start, 0, 0, 0, 1, -1);
3648 isl_dim_map_range(dim_map, src->start + 1, 2, 1, 1, src->nparam, 1);
3649 isl_dim_map_range(dim_map, src->start + 2, 2, 1, 1, src->nparam, -1);
3650 isl_dim_map_range(dim_map, src->start + 2 * src->nparam + 1, 2,
3651 isl_space_dim(dim, isl_dim_set), 1,
3652 src->nvar, 1);
3653 isl_dim_map_range(dim_map, src->start + 2 * src->nparam + 2, 2,
3654 isl_space_dim(dim, isl_dim_set), 1,
3655 src->nvar, -1);
3657 graph->lp = isl_basic_set_extend_constraints(graph->lp,
3658 coef->n_eq, coef->n_ineq);
3659 graph->lp = isl_basic_set_add_constraints_dim_map(graph->lp,
3660 coef, dim_map);
3661 isl_space_free(dim);
3663 return 0;
3666 /* Add constraints to graph->lp that force all (conditional) validity
3667 * dependences to be respected and attempt to carry them.
3669 static int add_all_constraints(struct isl_sched_graph *graph)
3671 int i, j;
3672 int pos;
3674 pos = 0;
3675 for (i = 0; i < graph->n_edge; ++i) {
3676 struct isl_sched_edge *edge= &graph->edge[i];
3678 if (!is_validity(edge) && !is_conditional_validity(edge))
3679 continue;
3681 for (j = 0; j < edge->map->n; ++j) {
3682 isl_basic_map *bmap;
3683 isl_map *map;
3685 bmap = isl_basic_map_copy(edge->map->p[j]);
3686 map = isl_map_from_basic_map(bmap);
3688 if (edge->src == edge->dst &&
3689 add_intra_constraints(graph, edge, map, pos) < 0)
3690 return -1;
3691 if (edge->src != edge->dst &&
3692 add_inter_constraints(graph, edge, map, pos) < 0)
3693 return -1;
3694 ++pos;
3698 return 0;
3701 /* Count the number of equality and inequality constraints
3702 * that will be added to the carry_lp problem.
3703 * We count each edge exactly once.
3705 static int count_all_constraints(struct isl_sched_graph *graph,
3706 int *n_eq, int *n_ineq)
3708 int i, j;
3710 *n_eq = *n_ineq = 0;
3711 for (i = 0; i < graph->n_edge; ++i) {
3712 struct isl_sched_edge *edge= &graph->edge[i];
3713 for (j = 0; j < edge->map->n; ++j) {
3714 isl_basic_map *bmap;
3715 isl_map *map;
3717 bmap = isl_basic_map_copy(edge->map->p[j]);
3718 map = isl_map_from_basic_map(bmap);
3720 if (count_map_constraints(graph, edge, map,
3721 n_eq, n_ineq, 1, 0) < 0)
3722 return -1;
3726 return 0;
3729 /* Construct an LP problem for finding schedule coefficients
3730 * such that the schedule carries as many dependences as possible.
3731 * In particular, for each dependence i, we bound the dependence distance
3732 * from below by e_i, with 0 <= e_i <= 1 and then maximize the sum
3733 * of all e_i's. Dependences with e_i = 0 in the solution are simply
3734 * respected, while those with e_i > 0 (in practice e_i = 1) are carried.
3735 * Note that if the dependence relation is a union of basic maps,
3736 * then we have to consider each basic map individually as it may only
3737 * be possible to carry the dependences expressed by some of those
3738 * basic maps and not all of them.
3739 * Below, we consider each of those basic maps as a separate "edge".
3741 * All variables of the LP are non-negative. The actual coefficients
3742 * may be negative, so each coefficient is represented as the difference
3743 * of two non-negative variables. The negative part always appears
3744 * immediately before the positive part.
3745 * Other than that, the variables have the following order
3747 * - sum of (1 - e_i) over all edges
3748 * - sum of positive and negative parts of all c_n coefficients
3749 * (unconstrained when computing non-parametric schedules)
3750 * - sum of positive and negative parts of all c_x coefficients
3751 * - for each edge
3752 * - e_i
3753 * - for each node
3754 * - c_i_0
3755 * - positive and negative parts of c_i_n (if parametric)
3756 * - positive and negative parts of c_i_x
3758 * The constraints are those from the (validity) edges plus three equalities
3759 * to express the sums and n_edge inequalities to express e_i <= 1.
3761 static isl_stat setup_carry_lp(isl_ctx *ctx, struct isl_sched_graph *graph)
3763 int i, j;
3764 int k;
3765 isl_space *dim;
3766 unsigned total;
3767 int n_eq, n_ineq;
3768 int n_edge;
3770 n_edge = 0;
3771 for (i = 0; i < graph->n_edge; ++i)
3772 n_edge += graph->edge[i].map->n;
3774 total = 3 + n_edge;
3775 for (i = 0; i < graph->n; ++i) {
3776 struct isl_sched_node *node = &graph->node[graph->sorted[i]];
3777 node->start = total;
3778 total += 1 + 2 * (node->nparam + node->nvar);
3781 if (count_all_constraints(graph, &n_eq, &n_ineq) < 0)
3782 return isl_stat_error;
3784 dim = isl_space_set_alloc(ctx, 0, total);
3785 isl_basic_set_free(graph->lp);
3786 n_eq += 3;
3787 n_ineq += n_edge;
3788 graph->lp = isl_basic_set_alloc_space(dim, 0, n_eq, n_ineq);
3789 graph->lp = isl_basic_set_set_rational(graph->lp);
3791 k = isl_basic_set_alloc_equality(graph->lp);
3792 if (k < 0)
3793 return isl_stat_error;
3794 isl_seq_clr(graph->lp->eq[k], 1 + total);
3795 isl_int_set_si(graph->lp->eq[k][0], -n_edge);
3796 isl_int_set_si(graph->lp->eq[k][1], 1);
3797 for (i = 0; i < n_edge; ++i)
3798 isl_int_set_si(graph->lp->eq[k][4 + i], 1);
3800 k = isl_basic_set_alloc_equality(graph->lp);
3801 if (k < 0)
3802 return isl_stat_error;
3803 isl_seq_clr(graph->lp->eq[k], 1 + total);
3804 isl_int_set_si(graph->lp->eq[k][2], -1);
3805 for (i = 0; i < graph->n; ++i) {
3806 int pos = 1 + graph->node[i].start + 1;
3808 for (j = 0; j < 2 * graph->node[i].nparam; ++j)
3809 isl_int_set_si(graph->lp->eq[k][pos + j], 1);
3812 k = isl_basic_set_alloc_equality(graph->lp);
3813 if (k < 0)
3814 return isl_stat_error;
3815 isl_seq_clr(graph->lp->eq[k], 1 + total);
3816 isl_int_set_si(graph->lp->eq[k][3], -1);
3817 for (i = 0; i < graph->n; ++i) {
3818 struct isl_sched_node *node = &graph->node[i];
3819 int pos = 1 + node->start + 1 + 2 * node->nparam;
3821 for (j = 0; j < 2 * node->nvar; ++j)
3822 isl_int_set_si(graph->lp->eq[k][pos + j], 1);
3825 for (i = 0; i < n_edge; ++i) {
3826 k = isl_basic_set_alloc_inequality(graph->lp);
3827 if (k < 0)
3828 return isl_stat_error;
3829 isl_seq_clr(graph->lp->ineq[k], 1 + total);
3830 isl_int_set_si(graph->lp->ineq[k][4 + i], -1);
3831 isl_int_set_si(graph->lp->ineq[k][0], 1);
3834 if (add_all_constraints(graph) < 0)
3835 return isl_stat_error;
3837 return isl_stat_ok;
3840 static __isl_give isl_schedule_node *compute_component_schedule(
3841 __isl_take isl_schedule_node *node, struct isl_sched_graph *graph,
3842 int wcc);
3844 /* Comparison function for sorting the statements based on
3845 * the corresponding value in "r".
3847 static int smaller_value(const void *a, const void *b, void *data)
3849 isl_vec *r = data;
3850 const int *i1 = a;
3851 const int *i2 = b;
3853 return isl_int_cmp(r->el[*i1], r->el[*i2]);
3856 /* If the schedule_split_scaled option is set and if the linear
3857 * parts of the scheduling rows for all nodes in the graphs have
3858 * a non-trivial common divisor, then split off the remainder of the
3859 * constant term modulo this common divisor from the linear part.
3860 * Otherwise, insert a band node directly and continue with
3861 * the construction of the schedule.
3863 * If a non-trivial common divisor is found, then
3864 * the linear part is reduced and the remainder is enforced
3865 * by a sequence node with the children placed in the order
3866 * of this remainder.
3867 * In particular, we assign an scc index based on the remainder and
3868 * then rely on compute_component_schedule to insert the sequence and
3869 * to continue the schedule construction on each part.
3871 static __isl_give isl_schedule_node *split_scaled(
3872 __isl_take isl_schedule_node *node, struct isl_sched_graph *graph)
3874 int i;
3875 int row;
3876 int scc;
3877 isl_ctx *ctx;
3878 isl_int gcd, gcd_i;
3879 isl_vec *r;
3880 int *order;
3882 if (!node)
3883 return NULL;
3885 ctx = isl_schedule_node_get_ctx(node);
3886 if (!ctx->opt->schedule_split_scaled)
3887 return compute_next_band(node, graph, 0);
3888 if (graph->n <= 1)
3889 return compute_next_band(node, graph, 0);
3891 isl_int_init(gcd);
3892 isl_int_init(gcd_i);
3894 isl_int_set_si(gcd, 0);
3896 row = isl_mat_rows(graph->node[0].sched) - 1;
3898 for (i = 0; i < graph->n; ++i) {
3899 struct isl_sched_node *node = &graph->node[i];
3900 int cols = isl_mat_cols(node->sched);
3902 isl_seq_gcd(node->sched->row[row] + 1, cols - 1, &gcd_i);
3903 isl_int_gcd(gcd, gcd, gcd_i);
3906 isl_int_clear(gcd_i);
3908 if (isl_int_cmp_si(gcd, 1) <= 0) {
3909 isl_int_clear(gcd);
3910 return compute_next_band(node, graph, 0);
3913 r = isl_vec_alloc(ctx, graph->n);
3914 order = isl_calloc_array(ctx, int, graph->n);
3915 if (!r || !order)
3916 goto error;
3918 for (i = 0; i < graph->n; ++i) {
3919 struct isl_sched_node *node = &graph->node[i];
3921 order[i] = i;
3922 isl_int_fdiv_r(r->el[i], node->sched->row[row][0], gcd);
3923 isl_int_fdiv_q(node->sched->row[row][0],
3924 node->sched->row[row][0], gcd);
3925 isl_int_mul(node->sched->row[row][0],
3926 node->sched->row[row][0], gcd);
3927 node->sched = isl_mat_scale_down_row(node->sched, row, gcd);
3928 if (!node->sched)
3929 goto error;
3932 if (isl_sort(order, graph->n, sizeof(order[0]), &smaller_value, r) < 0)
3933 goto error;
3935 scc = 0;
3936 for (i = 0; i < graph->n; ++i) {
3937 if (i > 0 && isl_int_ne(r->el[order[i - 1]], r->el[order[i]]))
3938 ++scc;
3939 graph->node[order[i]].scc = scc;
3941 graph->scc = ++scc;
3942 graph->weak = 0;
3944 isl_int_clear(gcd);
3945 isl_vec_free(r);
3946 free(order);
3948 if (update_edges(ctx, graph) < 0)
3949 return isl_schedule_node_free(node);
3950 node = insert_current_band(node, graph, 0);
3951 next_band(graph);
3953 node = isl_schedule_node_child(node, 0);
3954 node = compute_component_schedule(node, graph, 0);
3955 node = isl_schedule_node_parent(node);
3957 return node;
3958 error:
3959 isl_vec_free(r);
3960 free(order);
3961 isl_int_clear(gcd);
3962 return isl_schedule_node_free(node);
3965 /* Is the schedule row "sol" trivial on node "node"?
3966 * That is, is the solution zero on the dimensions orthogonal to
3967 * the previously found solutions?
3968 * Return 1 if the solution is trivial, 0 if it is not and -1 on error.
3970 * Each coefficient is represented as the difference between
3971 * two non-negative values in "sol". "sol" has been computed
3972 * in terms of the original iterators (i.e., without use of cmap).
3973 * We construct the schedule row s and write it as a linear
3974 * combination of (linear combinations of) previously computed schedule rows.
3975 * s = Q c or c = U s.
3976 * If the final entries of c are all zero, then the solution is trivial.
3978 static int is_trivial(struct isl_sched_node *node, __isl_keep isl_vec *sol)
3980 int i;
3981 int pos;
3982 int trivial;
3983 isl_ctx *ctx;
3984 isl_vec *node_sol;
3986 if (!sol)
3987 return -1;
3988 if (node->nvar == node->rank)
3989 return 0;
3991 ctx = isl_vec_get_ctx(sol);
3992 node_sol = isl_vec_alloc(ctx, node->nvar);
3993 if (!node_sol)
3994 return -1;
3996 pos = 1 + node->start + 1 + 2 * node->nparam;
3998 for (i = 0; i < node->nvar; ++i)
3999 isl_int_sub(node_sol->el[i],
4000 sol->el[pos + 2 * i + 1], sol->el[pos + 2 * i]);
4002 node_sol = isl_mat_vec_product(isl_mat_copy(node->cinv), node_sol);
4004 if (!node_sol)
4005 return -1;
4007 trivial = isl_seq_first_non_zero(node_sol->el + node->rank,
4008 node->nvar - node->rank) == -1;
4010 isl_vec_free(node_sol);
4012 return trivial;
4015 /* Is the schedule row "sol" trivial on any node where it should
4016 * not be trivial?
4017 * "sol" has been computed in terms of the original iterators
4018 * (i.e., without use of cmap).
4019 * Return 1 if any solution is trivial, 0 if they are not and -1 on error.
4021 static int is_any_trivial(struct isl_sched_graph *graph,
4022 __isl_keep isl_vec *sol)
4024 int i;
4026 for (i = 0; i < graph->n; ++i) {
4027 struct isl_sched_node *node = &graph->node[i];
4028 int trivial;
4030 if (!needs_row(graph, node))
4031 continue;
4032 trivial = is_trivial(node, sol);
4033 if (trivial < 0 || trivial)
4034 return trivial;
4037 return 0;
4040 /* Construct a schedule row for each node such that as many dependences
4041 * as possible are carried and then continue with the next band.
4043 * Note that despite the fact that the problem is solved using a rational
4044 * solver, the solution is guaranteed to be integral.
4045 * Specifically, the dependence distance lower bounds e_i (and therefore
4046 * also their sum) are integers. See Lemma 5 of [1].
4048 * If the computed schedule row turns out to be trivial on one or
4049 * more nodes where it should not be trivial, then we throw it away
4050 * and try again on each component separately.
4052 * If there is only one component, then we accept the schedule row anyway,
4053 * but we do not consider it as a complete row and therefore do not
4054 * increment graph->n_row. Note that the ranks of the nodes that
4055 * do get a non-trivial schedule part will get updated regardless and
4056 * graph->maxvar is computed based on these ranks. The test for
4057 * whether more schedule rows are required in compute_schedule_wcc
4058 * is therefore not affected.
4060 * Insert a band corresponding to the schedule row at position "node"
4061 * of the schedule tree and continue with the construction of the schedule.
4062 * This insertion and the continued construction is performed by split_scaled
4063 * after optionally checking for non-trivial common divisors.
4065 * [1] P. Feautrier, Some Efficient Solutions to the Affine Scheduling
4066 * Problem, Part II: Multi-Dimensional Time.
4067 * In Intl. Journal of Parallel Programming, 1992.
4069 static __isl_give isl_schedule_node *carry_dependences(
4070 __isl_take isl_schedule_node *node, struct isl_sched_graph *graph)
4072 int i;
4073 int n_edge;
4074 int trivial;
4075 isl_ctx *ctx;
4076 isl_vec *sol;
4077 isl_basic_set *lp;
4079 if (!node)
4080 return NULL;
4082 n_edge = 0;
4083 for (i = 0; i < graph->n_edge; ++i)
4084 n_edge += graph->edge[i].map->n;
4086 ctx = isl_schedule_node_get_ctx(node);
4087 if (setup_carry_lp(ctx, graph) < 0)
4088 return isl_schedule_node_free(node);
4090 lp = isl_basic_set_copy(graph->lp);
4091 sol = isl_tab_basic_set_non_neg_lexmin(lp);
4092 if (!sol)
4093 return isl_schedule_node_free(node);
4095 if (sol->size == 0) {
4096 isl_vec_free(sol);
4097 isl_die(ctx, isl_error_internal,
4098 "error in schedule construction",
4099 return isl_schedule_node_free(node));
4102 isl_int_divexact(sol->el[1], sol->el[1], sol->el[0]);
4103 if (isl_int_cmp_si(sol->el[1], n_edge) >= 0) {
4104 isl_vec_free(sol);
4105 isl_die(ctx, isl_error_unknown,
4106 "unable to carry dependences",
4107 return isl_schedule_node_free(node));
4110 trivial = is_any_trivial(graph, sol);
4111 if (trivial < 0) {
4112 sol = isl_vec_free(sol);
4113 } else if (trivial && graph->scc > 1) {
4114 isl_vec_free(sol);
4115 return compute_component_schedule(node, graph, 1);
4118 if (update_schedule(graph, sol, 0, 0) < 0)
4119 return isl_schedule_node_free(node);
4120 if (trivial)
4121 graph->n_row--;
4123 return split_scaled(node, graph);
4126 /* Topologically sort statements mapped to the same schedule iteration
4127 * and add insert a sequence node in front of "node"
4128 * corresponding to this order.
4129 * If "initialized" is set, then it may be assumed that compute_maxvar
4130 * has been called on the current band. Otherwise, call
4131 * compute_maxvar if and before carry_dependences gets called.
4133 * If it turns out to be impossible to sort the statements apart,
4134 * because different dependences impose different orderings
4135 * on the statements, then we extend the schedule such that
4136 * it carries at least one more dependence.
4138 static __isl_give isl_schedule_node *sort_statements(
4139 __isl_take isl_schedule_node *node, struct isl_sched_graph *graph,
4140 int initialized)
4142 isl_ctx *ctx;
4143 isl_union_set_list *filters;
4145 if (!node)
4146 return NULL;
4148 ctx = isl_schedule_node_get_ctx(node);
4149 if (graph->n < 1)
4150 isl_die(ctx, isl_error_internal,
4151 "graph should have at least one node",
4152 return isl_schedule_node_free(node));
4154 if (graph->n == 1)
4155 return node;
4157 if (update_edges(ctx, graph) < 0)
4158 return isl_schedule_node_free(node);
4160 if (graph->n_edge == 0)
4161 return node;
4163 if (detect_sccs(ctx, graph) < 0)
4164 return isl_schedule_node_free(node);
4166 next_band(graph);
4167 if (graph->scc < graph->n) {
4168 if (!initialized && compute_maxvar(graph) < 0)
4169 return isl_schedule_node_free(node);
4170 return carry_dependences(node, graph);
4173 filters = extract_sccs(ctx, graph);
4174 node = isl_schedule_node_insert_sequence(node, filters);
4176 return node;
4179 /* Are there any (non-empty) (conditional) validity edges in the graph?
4181 static int has_validity_edges(struct isl_sched_graph *graph)
4183 int i;
4185 for (i = 0; i < graph->n_edge; ++i) {
4186 int empty;
4188 empty = isl_map_plain_is_empty(graph->edge[i].map);
4189 if (empty < 0)
4190 return -1;
4191 if (empty)
4192 continue;
4193 if (is_validity(&graph->edge[i]) ||
4194 is_conditional_validity(&graph->edge[i]))
4195 return 1;
4198 return 0;
4201 /* Should we apply a Feautrier step?
4202 * That is, did the user request the Feautrier algorithm and are
4203 * there any validity dependences (left)?
4205 static int need_feautrier_step(isl_ctx *ctx, struct isl_sched_graph *graph)
4207 if (ctx->opt->schedule_algorithm != ISL_SCHEDULE_ALGORITHM_FEAUTRIER)
4208 return 0;
4210 return has_validity_edges(graph);
4213 /* Compute a schedule for a connected dependence graph using Feautrier's
4214 * multi-dimensional scheduling algorithm and return the updated schedule node.
4216 * The original algorithm is described in [1].
4217 * The main idea is to minimize the number of scheduling dimensions, by
4218 * trying to satisfy as many dependences as possible per scheduling dimension.
4220 * [1] P. Feautrier, Some Efficient Solutions to the Affine Scheduling
4221 * Problem, Part II: Multi-Dimensional Time.
4222 * In Intl. Journal of Parallel Programming, 1992.
4224 static __isl_give isl_schedule_node *compute_schedule_wcc_feautrier(
4225 isl_schedule_node *node, struct isl_sched_graph *graph)
4227 return carry_dependences(node, graph);
4230 /* Turn off the "local" bit on all (condition) edges.
4232 static void clear_local_edges(struct isl_sched_graph *graph)
4234 int i;
4236 for (i = 0; i < graph->n_edge; ++i)
4237 if (is_condition(&graph->edge[i]))
4238 clear_local(&graph->edge[i]);
4241 /* Does "graph" have both condition and conditional validity edges?
4243 static int need_condition_check(struct isl_sched_graph *graph)
4245 int i;
4246 int any_condition = 0;
4247 int any_conditional_validity = 0;
4249 for (i = 0; i < graph->n_edge; ++i) {
4250 if (is_condition(&graph->edge[i]))
4251 any_condition = 1;
4252 if (is_conditional_validity(&graph->edge[i]))
4253 any_conditional_validity = 1;
4256 return any_condition && any_conditional_validity;
4259 /* Does "graph" contain any coincidence edge?
4261 static int has_any_coincidence(struct isl_sched_graph *graph)
4263 int i;
4265 for (i = 0; i < graph->n_edge; ++i)
4266 if (is_coincidence(&graph->edge[i]))
4267 return 1;
4269 return 0;
4272 /* Extract the final schedule row as a map with the iteration domain
4273 * of "node" as domain.
4275 static __isl_give isl_map *final_row(struct isl_sched_node *node)
4277 isl_local_space *ls;
4278 isl_aff *aff;
4279 int row;
4281 row = isl_mat_rows(node->sched) - 1;
4282 ls = isl_local_space_from_space(isl_space_copy(node->space));
4283 aff = extract_schedule_row(ls, node, row);
4284 return isl_map_from_aff(aff);
4287 /* Is the conditional validity dependence in the edge with index "edge_index"
4288 * violated by the latest (i.e., final) row of the schedule?
4289 * That is, is i scheduled after j
4290 * for any conditional validity dependence i -> j?
4292 static int is_violated(struct isl_sched_graph *graph, int edge_index)
4294 isl_map *src_sched, *dst_sched, *map;
4295 struct isl_sched_edge *edge = &graph->edge[edge_index];
4296 int empty;
4298 src_sched = final_row(edge->src);
4299 dst_sched = final_row(edge->dst);
4300 map = isl_map_copy(edge->map);
4301 map = isl_map_apply_domain(map, src_sched);
4302 map = isl_map_apply_range(map, dst_sched);
4303 map = isl_map_order_gt(map, isl_dim_in, 0, isl_dim_out, 0);
4304 empty = isl_map_is_empty(map);
4305 isl_map_free(map);
4307 if (empty < 0)
4308 return -1;
4310 return !empty;
4313 /* Does "graph" have any satisfied condition edges that
4314 * are adjacent to the conditional validity constraint with
4315 * domain "conditional_source" and range "conditional_sink"?
4317 * A satisfied condition is one that is not local.
4318 * If a condition was forced to be local already (i.e., marked as local)
4319 * then there is no need to check if it is in fact local.
4321 * Additionally, mark all adjacent condition edges found as local.
4323 static int has_adjacent_true_conditions(struct isl_sched_graph *graph,
4324 __isl_keep isl_union_set *conditional_source,
4325 __isl_keep isl_union_set *conditional_sink)
4327 int i;
4328 int any = 0;
4330 for (i = 0; i < graph->n_edge; ++i) {
4331 int adjacent, local;
4332 isl_union_map *condition;
4334 if (!is_condition(&graph->edge[i]))
4335 continue;
4336 if (is_local(&graph->edge[i]))
4337 continue;
4339 condition = graph->edge[i].tagged_condition;
4340 adjacent = domain_intersects(condition, conditional_sink);
4341 if (adjacent >= 0 && !adjacent)
4342 adjacent = range_intersects(condition,
4343 conditional_source);
4344 if (adjacent < 0)
4345 return -1;
4346 if (!adjacent)
4347 continue;
4349 set_local(&graph->edge[i]);
4351 local = is_condition_false(&graph->edge[i]);
4352 if (local < 0)
4353 return -1;
4354 if (!local)
4355 any = 1;
4358 return any;
4361 /* Are there any violated conditional validity dependences with
4362 * adjacent condition dependences that are not local with respect
4363 * to the current schedule?
4364 * That is, is the conditional validity constraint violated?
4366 * Additionally, mark all those adjacent condition dependences as local.
4367 * We also mark those adjacent condition dependences that were not marked
4368 * as local before, but just happened to be local already. This ensures
4369 * that they remain local if the schedule is recomputed.
4371 * We first collect domain and range of all violated conditional validity
4372 * dependences and then check if there are any adjacent non-local
4373 * condition dependences.
4375 static int has_violated_conditional_constraint(isl_ctx *ctx,
4376 struct isl_sched_graph *graph)
4378 int i;
4379 int any = 0;
4380 isl_union_set *source, *sink;
4382 source = isl_union_set_empty(isl_space_params_alloc(ctx, 0));
4383 sink = isl_union_set_empty(isl_space_params_alloc(ctx, 0));
4384 for (i = 0; i < graph->n_edge; ++i) {
4385 isl_union_set *uset;
4386 isl_union_map *umap;
4387 int violated;
4389 if (!is_conditional_validity(&graph->edge[i]))
4390 continue;
4392 violated = is_violated(graph, i);
4393 if (violated < 0)
4394 goto error;
4395 if (!violated)
4396 continue;
4398 any = 1;
4400 umap = isl_union_map_copy(graph->edge[i].tagged_validity);
4401 uset = isl_union_map_domain(umap);
4402 source = isl_union_set_union(source, uset);
4403 source = isl_union_set_coalesce(source);
4405 umap = isl_union_map_copy(graph->edge[i].tagged_validity);
4406 uset = isl_union_map_range(umap);
4407 sink = isl_union_set_union(sink, uset);
4408 sink = isl_union_set_coalesce(sink);
4411 if (any)
4412 any = has_adjacent_true_conditions(graph, source, sink);
4414 isl_union_set_free(source);
4415 isl_union_set_free(sink);
4416 return any;
4417 error:
4418 isl_union_set_free(source);
4419 isl_union_set_free(sink);
4420 return -1;
4423 /* Examine the current band (the rows between graph->band_start and
4424 * graph->n_total_row), deciding whether to drop it or add it to "node"
4425 * and then continue with the computation of the next band, if any.
4426 * If "initialized" is set, then it may be assumed that compute_maxvar
4427 * has been called on the current band. Otherwise, call
4428 * compute_maxvar if and before carry_dependences gets called.
4430 * The caller keeps looking for a new row as long as
4431 * graph->n_row < graph->maxvar. If the latest attempt to find
4432 * such a row failed (i.e., we still have graph->n_row < graph->maxvar),
4433 * then we either
4434 * - split between SCCs and start over (assuming we found an interesting
4435 * pair of SCCs between which to split)
4436 * - continue with the next band (assuming the current band has at least
4437 * one row)
4438 * - try to carry as many dependences as possible and continue with the next
4439 * band
4440 * In each case, we first insert a band node in the schedule tree
4441 * if any rows have been computed.
4443 * If the caller managed to complete the schedule, we insert a band node
4444 * (if any schedule rows were computed) and we finish off by topologically
4445 * sorting the statements based on the remaining dependences.
4447 static __isl_give isl_schedule_node *compute_schedule_finish_band(
4448 __isl_take isl_schedule_node *node, struct isl_sched_graph *graph,
4449 int initialized)
4451 int insert;
4453 if (!node)
4454 return NULL;
4456 if (graph->n_row < graph->maxvar) {
4457 isl_ctx *ctx;
4458 int empty = graph->n_total_row == graph->band_start;
4460 ctx = isl_schedule_node_get_ctx(node);
4461 if (!ctx->opt->schedule_maximize_band_depth && !empty)
4462 return compute_next_band(node, graph, 1);
4463 if (graph->src_scc >= 0)
4464 return compute_split_schedule(node, graph);
4465 if (!empty)
4466 return compute_next_band(node, graph, 1);
4467 if (!initialized && compute_maxvar(graph) < 0)
4468 return isl_schedule_node_free(node);
4469 return carry_dependences(node, graph);
4472 insert = graph->n_total_row > graph->band_start;
4473 if (insert) {
4474 node = insert_current_band(node, graph, 1);
4475 node = isl_schedule_node_child(node, 0);
4477 node = sort_statements(node, graph, initialized);
4478 if (insert)
4479 node = isl_schedule_node_parent(node);
4481 return node;
4484 /* Construct a band of schedule rows for a connected dependence graph.
4485 * The caller is responsible for determining the strongly connected
4486 * components and calling compute_maxvar first.
4488 * We try to find a sequence of as many schedule rows as possible that result
4489 * in non-negative dependence distances (independent of the previous rows
4490 * in the sequence, i.e., such that the sequence is tilable), with as
4491 * many of the initial rows as possible satisfying the coincidence constraints.
4492 * The computation stops if we can't find any more rows or if we have found
4493 * all the rows we wanted to find.
4495 * If ctx->opt->schedule_outer_coincidence is set, then we force the
4496 * outermost dimension to satisfy the coincidence constraints. If this
4497 * turns out to be impossible, we fall back on the general scheme above
4498 * and try to carry as many dependences as possible.
4500 * If "graph" contains both condition and conditional validity dependences,
4501 * then we need to check that that the conditional schedule constraint
4502 * is satisfied, i.e., there are no violated conditional validity dependences
4503 * that are adjacent to any non-local condition dependences.
4504 * If there are, then we mark all those adjacent condition dependences
4505 * as local and recompute the current band. Those dependences that
4506 * are marked local will then be forced to be local.
4507 * The initial computation is performed with no dependences marked as local.
4508 * If we are lucky, then there will be no violated conditional validity
4509 * dependences adjacent to any non-local condition dependences.
4510 * Otherwise, we mark some additional condition dependences as local and
4511 * recompute. We continue this process until there are no violations left or
4512 * until we are no longer able to compute a schedule.
4513 * Since there are only a finite number of dependences,
4514 * there will only be a finite number of iterations.
4516 static isl_stat compute_schedule_wcc_band(isl_ctx *ctx,
4517 struct isl_sched_graph *graph)
4519 int has_coincidence;
4520 int use_coincidence;
4521 int force_coincidence = 0;
4522 int check_conditional;
4524 if (sort_sccs(graph) < 0)
4525 return isl_stat_error;
4527 clear_local_edges(graph);
4528 check_conditional = need_condition_check(graph);
4529 has_coincidence = has_any_coincidence(graph);
4531 if (ctx->opt->schedule_outer_coincidence)
4532 force_coincidence = 1;
4534 use_coincidence = has_coincidence;
4535 while (graph->n_row < graph->maxvar) {
4536 isl_vec *sol;
4537 int violated;
4538 int coincident;
4540 graph->src_scc = -1;
4541 graph->dst_scc = -1;
4543 if (setup_lp(ctx, graph, use_coincidence) < 0)
4544 return isl_stat_error;
4545 sol = solve_lp(graph);
4546 if (!sol)
4547 return isl_stat_error;
4548 if (sol->size == 0) {
4549 int empty = graph->n_total_row == graph->band_start;
4551 isl_vec_free(sol);
4552 if (use_coincidence && (!force_coincidence || !empty)) {
4553 use_coincidence = 0;
4554 continue;
4556 return isl_stat_ok;
4558 coincident = !has_coincidence || use_coincidence;
4559 if (update_schedule(graph, sol, 1, coincident) < 0)
4560 return isl_stat_error;
4562 if (!check_conditional)
4563 continue;
4564 violated = has_violated_conditional_constraint(ctx, graph);
4565 if (violated < 0)
4566 return isl_stat_error;
4567 if (!violated)
4568 continue;
4569 if (reset_band(graph) < 0)
4570 return isl_stat_error;
4571 use_coincidence = has_coincidence;
4574 return isl_stat_ok;
4577 /* Compute a schedule for a connected dependence graph by considering
4578 * the graph as a whole and return the updated schedule node.
4580 * The actual schedule rows of the current band are computed by
4581 * compute_schedule_wcc_band. compute_schedule_finish_band takes
4582 * care of integrating the band into "node" and continuing
4583 * the computation.
4585 static __isl_give isl_schedule_node *compute_schedule_wcc_whole(
4586 __isl_take isl_schedule_node *node, struct isl_sched_graph *graph)
4588 isl_ctx *ctx;
4590 if (!node)
4591 return NULL;
4593 ctx = isl_schedule_node_get_ctx(node);
4594 if (compute_schedule_wcc_band(ctx, graph) < 0)
4595 return isl_schedule_node_free(node);
4597 return compute_schedule_finish_band(node, graph, 1);
4600 /* Clustering information used by compute_schedule_wcc_clustering.
4602 * "n" is the number of SCCs in the original dependence graph
4603 * "scc" is an array of "n" elements, each representing an SCC
4604 * of the original dependence graph. All entries in the same cluster
4605 * have the same number of schedule rows.
4606 * "scc_cluster" maps each SCC index to the cluster to which it belongs,
4607 * where each cluster is represented by the index of the first SCC
4608 * in the cluster. Initially, each SCC belongs to a cluster containing
4609 * only that SCC.
4611 * "scc_in_merge" is used by merge_clusters_along_edge to keep
4612 * track of which SCCs need to be merged.
4614 * "cluster" contains the merged clusters of SCCs after the clustering
4615 * has completed.
4617 * "scc_node" is a temporary data structure used inside copy_partial.
4618 * For each SCC, it keeps track of the number of nodes in the SCC
4619 * that have already been copied.
4621 struct isl_clustering {
4622 int n;
4623 struct isl_sched_graph *scc;
4624 struct isl_sched_graph *cluster;
4625 int *scc_cluster;
4626 int *scc_node;
4627 int *scc_in_merge;
4630 /* Initialize the clustering data structure "c" from "graph".
4632 * In particular, allocate memory, extract the SCCs from "graph"
4633 * into c->scc, initialize scc_cluster and construct
4634 * a band of schedule rows for each SCC.
4635 * Within each SCC, there is only one SCC by definition.
4636 * Each SCC initially belongs to a cluster containing only that SCC.
4638 static isl_stat clustering_init(isl_ctx *ctx, struct isl_clustering *c,
4639 struct isl_sched_graph *graph)
4641 int i;
4643 c->n = graph->scc;
4644 c->scc = isl_calloc_array(ctx, struct isl_sched_graph, c->n);
4645 c->cluster = isl_calloc_array(ctx, struct isl_sched_graph, c->n);
4646 c->scc_cluster = isl_calloc_array(ctx, int, c->n);
4647 c->scc_node = isl_calloc_array(ctx, int, c->n);
4648 c->scc_in_merge = isl_calloc_array(ctx, int, c->n);
4649 if (!c->scc || !c->cluster ||
4650 !c->scc_cluster || !c->scc_node || !c->scc_in_merge)
4651 return isl_stat_error;
4653 for (i = 0; i < c->n; ++i) {
4654 if (extract_sub_graph(ctx, graph, &node_scc_exactly,
4655 &edge_scc_exactly, i, &c->scc[i]) < 0)
4656 return isl_stat_error;
4657 c->scc[i].scc = 1;
4658 if (compute_maxvar(&c->scc[i]) < 0)
4659 return isl_stat_error;
4660 if (compute_schedule_wcc_band(ctx, &c->scc[i]) < 0)
4661 return isl_stat_error;
4662 c->scc_cluster[i] = i;
4665 return isl_stat_ok;
4668 /* Free all memory allocated for "c".
4670 static void clustering_free(isl_ctx *ctx, struct isl_clustering *c)
4672 int i;
4674 if (c->scc)
4675 for (i = 0; i < c->n; ++i)
4676 graph_free(ctx, &c->scc[i]);
4677 free(c->scc);
4678 if (c->cluster)
4679 for (i = 0; i < c->n; ++i)
4680 graph_free(ctx, &c->cluster[i]);
4681 free(c->cluster);
4682 free(c->scc_cluster);
4683 free(c->scc_node);
4684 free(c->scc_in_merge);
4687 /* Should we refrain from merging the cluster in "graph" with
4688 * any other cluster?
4689 * In particular, is its current schedule band empty and incomplete.
4691 static int bad_cluster(struct isl_sched_graph *graph)
4693 return graph->n_row < graph->maxvar &&
4694 graph->n_total_row == graph->band_start;
4697 /* Return the index of an edge in "graph" that can be used to merge
4698 * two clusters in "c".
4699 * Return graph->n_edge if no such edge can be found.
4700 * Return -1 on error.
4702 * In particular, return a proximity edge between two clusters
4703 * that is not marked "no_merge" and such that neither of the
4704 * two clusters has an incomplete, empty band.
4706 * If there are multiple such edges, then try and find the most
4707 * appropriate edge to use for merging. In particular, pick the edge
4708 * with the greatest weight. If there are multiple of those,
4709 * then pick one with the shortest distance between
4710 * the two cluster representatives.
4712 static int find_proximity(struct isl_sched_graph *graph,
4713 struct isl_clustering *c)
4715 int i, best = graph->n_edge, best_dist, best_weight;
4717 for (i = 0; i < graph->n_edge; ++i) {
4718 struct isl_sched_edge *edge = &graph->edge[i];
4719 int dist, weight;
4721 if (!is_proximity(edge))
4722 continue;
4723 if (edge->no_merge)
4724 continue;
4725 if (bad_cluster(&c->scc[edge->src->scc]) ||
4726 bad_cluster(&c->scc[edge->dst->scc]))
4727 continue;
4728 dist = c->scc_cluster[edge->dst->scc] -
4729 c->scc_cluster[edge->src->scc];
4730 if (dist == 0)
4731 continue;
4732 weight = edge->weight;
4733 if (best < graph->n_edge) {
4734 if (best_weight > weight)
4735 continue;
4736 if (best_weight == weight && best_dist <= dist)
4737 continue;
4739 best = i;
4740 best_dist = dist;
4741 best_weight = weight;
4744 return best;
4747 /* Internal data structure used in mark_merge_sccs.
4749 * "graph" is the dependence graph in which a strongly connected
4750 * component is constructed.
4751 * "scc_cluster" maps each SCC index to the cluster to which it belongs.
4752 * "src" and "dst" are the indices of the nodes that are being merged.
4754 struct isl_mark_merge_sccs_data {
4755 struct isl_sched_graph *graph;
4756 int *scc_cluster;
4757 int src;
4758 int dst;
4761 /* Check whether the cluster containing node "i" depends on the cluster
4762 * containing node "j". If "i" and "j" belong to the same cluster,
4763 * then they are taken to depend on each other to ensure that
4764 * the resulting strongly connected component consists of complete
4765 * clusters. Furthermore, if "i" and "j" are the two nodes that
4766 * are being merged, then they are taken to depend on each other as well.
4767 * Otherwise, check if there is a (conditional) validity dependence
4768 * from node[j] to node[i], forcing node[i] to follow node[j].
4770 static isl_bool cluster_follows(int i, int j, void *user)
4772 struct isl_mark_merge_sccs_data *data = user;
4773 struct isl_sched_graph *graph = data->graph;
4774 int *scc_cluster = data->scc_cluster;
4776 if (data->src == i && data->dst == j)
4777 return isl_bool_true;
4778 if (data->src == j && data->dst == i)
4779 return isl_bool_true;
4780 if (scc_cluster[graph->node[i].scc] == scc_cluster[graph->node[j].scc])
4781 return isl_bool_true;
4783 return graph_has_validity_edge(graph, &graph->node[j], &graph->node[i]);
4786 /* Mark all SCCs that belong to either of the two clusters in "c"
4787 * connected by the edge in "graph" with index "edge", or to any
4788 * of the intermediate clusters.
4789 * The marking is recorded in c->scc_in_merge.
4791 * The given edge has been selected for merging two clusters,
4792 * meaning that there is at least a proximity edge between the two nodes.
4793 * However, there may also be (indirect) validity dependences
4794 * between the two nodes. When merging the two clusters, all clusters
4795 * containing one or more of the intermediate nodes along the
4796 * indirect validity dependences need to be merged in as well.
4798 * First collect all such nodes by computing the strongly connected
4799 * component (SCC) containing the two nodes connected by the edge, where
4800 * the two nodes are considered to depend on each other to make
4801 * sure they end up in the same SCC. Similarly, each node is considered
4802 * to depend on every other node in the same cluster to ensure
4803 * that the SCC consists of complete clusters.
4805 * Then the original SCCs that contain any of these nodes are marked
4806 * in c->scc_in_merge.
4808 static isl_stat mark_merge_sccs(isl_ctx *ctx, struct isl_sched_graph *graph,
4809 int edge, struct isl_clustering *c)
4811 struct isl_mark_merge_sccs_data data;
4812 struct isl_tarjan_graph *g;
4813 int i;
4815 for (i = 0; i < c->n; ++i)
4816 c->scc_in_merge[i] = 0;
4818 data.graph = graph;
4819 data.scc_cluster = c->scc_cluster;
4820 data.src = graph->edge[edge].src - graph->node;
4821 data.dst = graph->edge[edge].dst - graph->node;
4823 g = isl_tarjan_graph_component(ctx, graph->n, data.dst,
4824 &cluster_follows, &data);
4825 if (!g)
4826 goto error;
4828 i = g->op;
4829 if (i < 3)
4830 isl_die(ctx, isl_error_internal,
4831 "expecting at least two nodes in component",
4832 goto error);
4833 if (g->order[--i] != -1)
4834 isl_die(ctx, isl_error_internal,
4835 "expecting end of component marker", goto error);
4837 for (--i; i >= 0 && g->order[i] != -1; --i) {
4838 int scc = graph->node[g->order[i]].scc;
4839 c->scc_in_merge[scc] = 1;
4842 isl_tarjan_graph_free(g);
4843 return isl_stat_ok;
4844 error:
4845 isl_tarjan_graph_free(g);
4846 return isl_stat_error;
4849 /* Construct the identifier "cluster_i".
4851 static __isl_give isl_id *cluster_id(isl_ctx *ctx, int i)
4853 char name[40];
4855 snprintf(name, sizeof(name), "cluster_%d", i);
4856 return isl_id_alloc(ctx, name, NULL);
4859 /* Construct the space of the cluster with index "i" containing
4860 * the strongly connected component "scc".
4862 * In particular, construct a space called cluster_i with dimension equal
4863 * to the number of schedule rows in the current band of "scc".
4865 static __isl_give isl_space *cluster_space(struct isl_sched_graph *scc, int i)
4867 int nvar;
4868 isl_space *space;
4869 isl_id *id;
4871 nvar = scc->n_total_row - scc->band_start;
4872 space = isl_space_copy(scc->node[0].space);
4873 space = isl_space_params(space);
4874 space = isl_space_set_from_params(space);
4875 space = isl_space_add_dims(space, isl_dim_set, nvar);
4876 id = cluster_id(isl_space_get_ctx(space), i);
4877 space = isl_space_set_tuple_id(space, isl_dim_set, id);
4879 return space;
4882 /* Collect the domain of the graph for merging clusters.
4884 * In particular, for each cluster with first SCC "i", construct
4885 * a set in the space called cluster_i with dimension equal
4886 * to the number of schedule rows in the current band of the cluster.
4888 static __isl_give isl_union_set *collect_domain(isl_ctx *ctx,
4889 struct isl_sched_graph *graph, struct isl_clustering *c)
4891 int i;
4892 isl_space *space;
4893 isl_union_set *domain;
4895 space = isl_space_params_alloc(ctx, 0);
4896 domain = isl_union_set_empty(space);
4898 for (i = 0; i < graph->scc; ++i) {
4899 isl_space *space;
4901 if (!c->scc_in_merge[i])
4902 continue;
4903 if (c->scc_cluster[i] != i)
4904 continue;
4905 space = cluster_space(&c->scc[i], i);
4906 domain = isl_union_set_add_set(domain, isl_set_universe(space));
4909 return domain;
4912 /* Construct a map from the original instances to the corresponding
4913 * cluster instance in the current bands of the clusters in "c".
4915 static __isl_give isl_union_map *collect_cluster_map(isl_ctx *ctx,
4916 struct isl_sched_graph *graph, struct isl_clustering *c)
4918 int i, j;
4919 isl_space *space;
4920 isl_union_map *cluster_map;
4922 space = isl_space_params_alloc(ctx, 0);
4923 cluster_map = isl_union_map_empty(space);
4924 for (i = 0; i < graph->scc; ++i) {
4925 int start, n;
4926 isl_id *id;
4928 if (!c->scc_in_merge[i])
4929 continue;
4931 id = cluster_id(ctx, c->scc_cluster[i]);
4932 start = c->scc[i].band_start;
4933 n = c->scc[i].n_total_row - start;
4934 for (j = 0; j < c->scc[i].n; ++j) {
4935 isl_multi_aff *ma;
4936 isl_map *map;
4937 struct isl_sched_node *node = &c->scc[i].node[j];
4939 ma = node_extract_partial_schedule_multi_aff(node,
4940 start, n);
4941 ma = isl_multi_aff_set_tuple_id(ma, isl_dim_out,
4942 isl_id_copy(id));
4943 map = isl_map_from_multi_aff(ma);
4944 cluster_map = isl_union_map_add_map(cluster_map, map);
4946 isl_id_free(id);
4949 return cluster_map;
4952 /* Add "umap" to the schedule constraints "sc" of all types of "edge"
4953 * that are not isl_edge_condition or isl_edge_conditional_validity.
4955 static __isl_give isl_schedule_constraints *add_non_conditional_constraints(
4956 struct isl_sched_edge *edge, __isl_keep isl_union_map *umap,
4957 __isl_take isl_schedule_constraints *sc)
4959 enum isl_edge_type t;
4961 if (!sc)
4962 return NULL;
4964 for (t = isl_edge_first; t <= isl_edge_last; ++t) {
4965 if (t == isl_edge_condition ||
4966 t == isl_edge_conditional_validity)
4967 continue;
4968 if (!is_type(edge, t))
4969 continue;
4970 sc->constraint[t] = isl_union_map_union(sc->constraint[t],
4971 isl_union_map_copy(umap));
4972 if (!sc->constraint[t])
4973 return isl_schedule_constraints_free(sc);
4976 return sc;
4979 /* Add schedule constraints of types isl_edge_condition and
4980 * isl_edge_conditional_validity to "sc" by applying "umap" to
4981 * the domains of the wrapped relations in domain and range
4982 * of the corresponding tagged constraints of "edge".
4984 static __isl_give isl_schedule_constraints *add_conditional_constraints(
4985 struct isl_sched_edge *edge, __isl_keep isl_union_map *umap,
4986 __isl_take isl_schedule_constraints *sc)
4988 enum isl_edge_type t;
4989 isl_union_map *tagged;
4991 for (t = isl_edge_condition; t <= isl_edge_conditional_validity; ++t) {
4992 if (!is_type(edge, t))
4993 continue;
4994 if (t == isl_edge_condition)
4995 tagged = isl_union_map_copy(edge->tagged_condition);
4996 else
4997 tagged = isl_union_map_copy(edge->tagged_validity);
4998 tagged = isl_union_map_zip(tagged);
4999 tagged = isl_union_map_apply_domain(tagged,
5000 isl_union_map_copy(umap));
5001 tagged = isl_union_map_zip(tagged);
5002 sc->constraint[t] = isl_union_map_union(sc->constraint[t],
5003 tagged);
5004 if (!sc->constraint[t])
5005 return isl_schedule_constraints_free(sc);
5008 return sc;
5011 /* Given a mapping "cluster_map" from the original instances to
5012 * the cluster instances, add schedule constraints on the clusters
5013 * to "sc" corresponding to the original constraints represented by "edge".
5015 * For non-tagged dependence constraints, the cluster constraints
5016 * are obtained by applying "cluster_map" to the edge->map.
5018 * For tagged dependence constraints, "cluster_map" needs to be applied
5019 * to the domains of the wrapped relations in domain and range
5020 * of the tagged dependence constraints. Pick out the mappings
5021 * from these domains from "cluster_map" and construct their product.
5022 * This mapping can then be applied to the pair of domains.
5024 static __isl_give isl_schedule_constraints *collect_edge_constraints(
5025 struct isl_sched_edge *edge, __isl_keep isl_union_map *cluster_map,
5026 __isl_take isl_schedule_constraints *sc)
5028 isl_union_map *umap;
5029 isl_space *space;
5030 isl_union_set *uset;
5031 isl_union_map *umap1, *umap2;
5033 if (!sc)
5034 return NULL;
5036 umap = isl_union_map_from_map(isl_map_copy(edge->map));
5037 umap = isl_union_map_apply_domain(umap,
5038 isl_union_map_copy(cluster_map));
5039 umap = isl_union_map_apply_range(umap,
5040 isl_union_map_copy(cluster_map));
5041 sc = add_non_conditional_constraints(edge, umap, sc);
5042 isl_union_map_free(umap);
5044 if (!sc || (!is_condition(edge) && !is_conditional_validity(edge)))
5045 return sc;
5047 space = isl_space_domain(isl_map_get_space(edge->map));
5048 uset = isl_union_set_from_set(isl_set_universe(space));
5049 umap1 = isl_union_map_copy(cluster_map);
5050 umap1 = isl_union_map_intersect_domain(umap1, uset);
5051 space = isl_space_range(isl_map_get_space(edge->map));
5052 uset = isl_union_set_from_set(isl_set_universe(space));
5053 umap2 = isl_union_map_copy(cluster_map);
5054 umap2 = isl_union_map_intersect_domain(umap2, uset);
5055 umap = isl_union_map_product(umap1, umap2);
5057 sc = add_conditional_constraints(edge, umap, sc);
5059 isl_union_map_free(umap);
5060 return sc;
5063 /* Given a mapping "cluster_map" from the original instances to
5064 * the cluster instances, add schedule constraints on the clusters
5065 * to "sc" corresponding to all edges in "graph" between nodes that
5066 * belong to SCCs that are marked for merging in "scc_in_merge".
5068 static __isl_give isl_schedule_constraints *collect_constraints(
5069 struct isl_sched_graph *graph, int *scc_in_merge,
5070 __isl_keep isl_union_map *cluster_map,
5071 __isl_take isl_schedule_constraints *sc)
5073 int i;
5075 for (i = 0; i < graph->n_edge; ++i) {
5076 struct isl_sched_edge *edge = &graph->edge[i];
5078 if (!scc_in_merge[edge->src->scc])
5079 continue;
5080 if (!scc_in_merge[edge->dst->scc])
5081 continue;
5082 sc = collect_edge_constraints(edge, cluster_map, sc);
5085 return sc;
5088 /* Construct a dependence graph for scheduling clusters with respect
5089 * to each other and store the result in "merge_graph".
5090 * In particular, the nodes of the graph correspond to the schedule
5091 * dimensions of the current bands of those clusters that have been
5092 * marked for merging in "c".
5094 * First construct an isl_schedule_constraints object for this domain
5095 * by transforming the edges in "graph" to the domain.
5096 * Then initialize a dependence graph for scheduling from these
5097 * constraints.
5099 static isl_stat init_merge_graph(isl_ctx *ctx, struct isl_sched_graph *graph,
5100 struct isl_clustering *c, struct isl_sched_graph *merge_graph)
5102 isl_union_set *domain;
5103 isl_union_map *cluster_map;
5104 isl_schedule_constraints *sc;
5105 isl_stat r;
5107 domain = collect_domain(ctx, graph, c);
5108 sc = isl_schedule_constraints_on_domain(domain);
5109 if (!sc)
5110 return isl_stat_error;
5111 cluster_map = collect_cluster_map(ctx, graph, c);
5112 sc = collect_constraints(graph, c->scc_in_merge, cluster_map, sc);
5113 isl_union_map_free(cluster_map);
5115 r = graph_init(merge_graph, sc);
5117 isl_schedule_constraints_free(sc);
5119 return r;
5122 /* Compute the maximal number of remaining schedule rows that still need
5123 * to be computed for the nodes that belong to clusters with the maximal
5124 * dimension for the current band (i.e., the band that is to be merged).
5125 * Only clusters that are about to be merged are considered.
5126 * "maxvar" is the maximal dimension for the current band.
5127 * "c" contains information about the clusters.
5129 * Return the maximal number of remaining schedule rows or -1 on error.
5131 static int compute_maxvar_max_slack(int maxvar, struct isl_clustering *c)
5133 int i, j;
5134 int max_slack;
5136 max_slack = 0;
5137 for (i = 0; i < c->n; ++i) {
5138 int nvar;
5139 struct isl_sched_graph *scc;
5141 if (!c->scc_in_merge[i])
5142 continue;
5143 scc = &c->scc[i];
5144 nvar = scc->n_total_row - scc->band_start;
5145 if (nvar != maxvar)
5146 continue;
5147 for (j = 0; j < scc->n; ++j) {
5148 struct isl_sched_node *node = &scc->node[j];
5149 int slack;
5151 if (node_update_cmap(node) < 0)
5152 return -1;
5153 slack = node->nvar - node->rank;
5154 if (slack > max_slack)
5155 max_slack = slack;
5159 return max_slack;
5162 /* If there are any clusters where the dimension of the current band
5163 * (i.e., the band that is to be merged) is smaller than "maxvar" and
5164 * if there are any nodes in such a cluster where the number
5165 * of remaining schedule rows that still need to be computed
5166 * is greater than "max_slack", then return the smallest current band
5167 * dimension of all these clusters. Otherwise return the original value
5168 * of "maxvar". Return -1 in case of any error.
5169 * Only clusters that are about to be merged are considered.
5170 * "c" contains information about the clusters.
5172 static int limit_maxvar_to_slack(int maxvar, int max_slack,
5173 struct isl_clustering *c)
5175 int i, j;
5177 for (i = 0; i < c->n; ++i) {
5178 int nvar;
5179 struct isl_sched_graph *scc;
5181 if (!c->scc_in_merge[i])
5182 continue;
5183 scc = &c->scc[i];
5184 nvar = scc->n_total_row - scc->band_start;
5185 if (nvar >= maxvar)
5186 continue;
5187 for (j = 0; j < scc->n; ++j) {
5188 struct isl_sched_node *node = &scc->node[j];
5189 int slack;
5191 if (node_update_cmap(node) < 0)
5192 return -1;
5193 slack = node->nvar - node->rank;
5194 if (slack > max_slack) {
5195 maxvar = nvar;
5196 break;
5201 return maxvar;
5204 /* Adjust merge_graph->maxvar based on the number of remaining schedule rows
5205 * that still need to be computed. In particular, if there is a node
5206 * in a cluster where the dimension of the current band is smaller
5207 * than merge_graph->maxvar, but the number of remaining schedule rows
5208 * is greater than that of any node in a cluster with the maximal
5209 * dimension for the current band (i.e., merge_graph->maxvar),
5210 * then adjust merge_graph->maxvar to the (smallest) current band dimension
5211 * of those clusters. Without this adjustment, the total number of
5212 * schedule dimensions would be increased, resulting in a skewed view
5213 * of the number of coincident dimensions.
5214 * "c" contains information about the clusters.
5216 * If the maximize_band_depth option is set and merge_graph->maxvar is reduced,
5217 * then there is no point in attempting any merge since it will be rejected
5218 * anyway. Set merge_graph->maxvar to zero in such cases.
5220 static isl_stat adjust_maxvar_to_slack(isl_ctx *ctx,
5221 struct isl_sched_graph *merge_graph, struct isl_clustering *c)
5223 int max_slack, maxvar;
5225 max_slack = compute_maxvar_max_slack(merge_graph->maxvar, c);
5226 if (max_slack < 0)
5227 return isl_stat_error;
5228 maxvar = limit_maxvar_to_slack(merge_graph->maxvar, max_slack, c);
5229 if (maxvar < 0)
5230 return isl_stat_error;
5232 if (maxvar < merge_graph->maxvar) {
5233 if (isl_options_get_schedule_maximize_band_depth(ctx))
5234 merge_graph->maxvar = 0;
5235 else
5236 merge_graph->maxvar = maxvar;
5239 return isl_stat_ok;
5242 /* Return the number of coincident dimensions in the current band of "graph",
5243 * where the nodes of "graph" are assumed to be scheduled by a single band.
5245 static int get_n_coincident(struct isl_sched_graph *graph)
5247 int i;
5249 for (i = graph->band_start; i < graph->n_total_row; ++i)
5250 if (!graph->node[0].coincident[i])
5251 break;
5253 return i - graph->band_start;
5256 /* Should the clusters be merged based on the cluster schedule
5257 * in the current (and only) band of "merge_graph", given that
5258 * coincidence should be maximized?
5260 * If the number of coincident schedule dimensions in the merged band
5261 * would be less than the maximal number of coincident schedule dimensions
5262 * in any of the merged clusters, then the clusters should not be merged.
5264 static isl_bool ok_to_merge_coincident(struct isl_clustering *c,
5265 struct isl_sched_graph *merge_graph)
5267 int i;
5268 int n_coincident;
5269 int max_coincident;
5271 max_coincident = 0;
5272 for (i = 0; i < c->n; ++i) {
5273 if (!c->scc_in_merge[i])
5274 continue;
5275 n_coincident = get_n_coincident(&c->scc[i]);
5276 if (n_coincident > max_coincident)
5277 max_coincident = n_coincident;
5280 n_coincident = get_n_coincident(merge_graph);
5282 return n_coincident >= max_coincident;
5285 /* Return the transformation on "node" expressed by the current (and only)
5286 * band of "merge_graph" applied to the clusters in "c".
5288 * First find the representation of "node" in its SCC in "c" and
5289 * extract the transformation expressed by the current band.
5290 * Then extract the transformation applied by "merge_graph"
5291 * to the cluster to which this SCC belongs.
5292 * Combine the two to obtain the complete transformation on the node.
5294 * Note that the range of the first transformation is an anonymous space,
5295 * while the domain of the second is named "cluster_X". The range
5296 * of the former therefore needs to be adjusted before the two
5297 * can be combined.
5299 static __isl_give isl_map *extract_node_transformation(isl_ctx *ctx,
5300 struct isl_sched_node *node, struct isl_clustering *c,
5301 struct isl_sched_graph *merge_graph)
5303 struct isl_sched_node *scc_node, *cluster_node;
5304 int start, n;
5305 isl_id *id;
5306 isl_space *space;
5307 isl_multi_aff *ma, *ma2;
5309 scc_node = graph_find_node(ctx, &c->scc[node->scc], node->space);
5310 start = c->scc[node->scc].band_start;
5311 n = c->scc[node->scc].n_total_row - start;
5312 ma = node_extract_partial_schedule_multi_aff(scc_node, start, n);
5313 space = cluster_space(&c->scc[node->scc], c->scc_cluster[node->scc]);
5314 cluster_node = graph_find_node(ctx, merge_graph, space);
5315 if (space && !cluster_node)
5316 isl_die(ctx, isl_error_internal, "unable to find cluster",
5317 space = isl_space_free(space));
5318 id = isl_space_get_tuple_id(space, isl_dim_set);
5319 ma = isl_multi_aff_set_tuple_id(ma, isl_dim_out, id);
5320 isl_space_free(space);
5321 n = merge_graph->n_total_row;
5322 ma2 = node_extract_partial_schedule_multi_aff(cluster_node, 0, n);
5323 ma = isl_multi_aff_pullback_multi_aff(ma2, ma);
5325 return isl_map_from_multi_aff(ma);
5328 /* Give a set of distances "set", are they bounded by a small constant
5329 * in direction "pos"?
5330 * In practice, check if they are bounded by 2 by checking that there
5331 * are no elements with a value greater than or equal to 3 or
5332 * smaller than or equal to -3.
5334 static isl_bool distance_is_bounded(__isl_keep isl_set *set, int pos)
5336 isl_bool bounded;
5337 isl_set *test;
5339 if (!set)
5340 return isl_bool_error;
5342 test = isl_set_copy(set);
5343 test = isl_set_lower_bound_si(test, isl_dim_set, pos, 3);
5344 bounded = isl_set_is_empty(test);
5345 isl_set_free(test);
5347 if (bounded < 0 || !bounded)
5348 return bounded;
5350 test = isl_set_copy(set);
5351 test = isl_set_upper_bound_si(test, isl_dim_set, pos, -3);
5352 bounded = isl_set_is_empty(test);
5353 isl_set_free(test);
5355 return bounded;
5358 /* Does the set "set" have a fixed (but possible parametric) value
5359 * at dimension "pos"?
5361 static isl_bool has_single_value(__isl_keep isl_set *set, int pos)
5363 int n;
5364 isl_bool single;
5366 if (!set)
5367 return isl_bool_error;
5368 set = isl_set_copy(set);
5369 n = isl_set_dim(set, isl_dim_set);
5370 set = isl_set_project_out(set, isl_dim_set, pos + 1, n - (pos + 1));
5371 set = isl_set_project_out(set, isl_dim_set, 0, pos);
5372 single = isl_set_is_singleton(set);
5373 isl_set_free(set);
5375 return single;
5378 /* Does "map" have a fixed (but possible parametric) value
5379 * at dimension "pos" of either its domain or its range?
5381 static isl_bool has_singular_src_or_dst(__isl_keep isl_map *map, int pos)
5383 isl_set *set;
5384 isl_bool single;
5386 set = isl_map_domain(isl_map_copy(map));
5387 single = has_single_value(set, pos);
5388 isl_set_free(set);
5390 if (single < 0 || single)
5391 return single;
5393 set = isl_map_range(isl_map_copy(map));
5394 single = has_single_value(set, pos);
5395 isl_set_free(set);
5397 return single;
5400 /* Does the edge "edge" from "graph" have bounded dependence distances
5401 * in the merged graph "merge_graph" of a selection of clusters in "c"?
5403 * Extract the complete transformations of the source and destination
5404 * nodes of the edge, apply them to the edge constraints and
5405 * compute the differences. Finally, check if these differences are bounded
5406 * in each direction.
5408 * If the dimension of the band is greater than the number of
5409 * dimensions that can be expected to be optimized by the edge
5410 * (based on its weight), then also allow the differences to be unbounded
5411 * in the remaining dimensions, but only if either the source or
5412 * the destination has a fixed value in that direction.
5413 * This allows a statement that produces values that are used by
5414 * several instance of another statement to be merged with that
5415 * other statement.
5416 * However, merging such clusters will introduce an inherently
5417 * large proximity distance inside the merged cluster, meaning
5418 * that proximity distances will no longer be optimized in
5419 * subsequent merges. These merges are therefore only allowed
5420 * after all other possible merges have been tried.
5421 * The first time such a merge is encountered, the weight of the edge
5422 * is replaced by a negative weight. The second time (i.e., after
5423 * all merges over edges with a non-negative weight have been tried),
5424 * the merge is allowed.
5426 static isl_bool has_bounded_distances(isl_ctx *ctx, struct isl_sched_edge *edge,
5427 struct isl_sched_graph *graph, struct isl_clustering *c,
5428 struct isl_sched_graph *merge_graph)
5430 int i, n, n_slack;
5431 isl_bool bounded;
5432 isl_map *map, *t;
5433 isl_set *dist;
5435 map = isl_map_copy(edge->map);
5436 t = extract_node_transformation(ctx, edge->src, c, merge_graph);
5437 map = isl_map_apply_domain(map, t);
5438 t = extract_node_transformation(ctx, edge->dst, c, merge_graph);
5439 map = isl_map_apply_range(map, t);
5440 dist = isl_map_deltas(isl_map_copy(map));
5442 bounded = isl_bool_true;
5443 n = isl_set_dim(dist, isl_dim_set);
5444 n_slack = n - edge->weight;
5445 if (edge->weight < 0)
5446 n_slack -= graph->max_weight + 1;
5447 for (i = 0; i < n; ++i) {
5448 isl_bool bounded_i, singular_i;
5450 bounded_i = distance_is_bounded(dist, i);
5451 if (bounded_i < 0)
5452 goto error;
5453 if (bounded_i)
5454 continue;
5455 if (edge->weight >= 0)
5456 bounded = isl_bool_false;
5457 n_slack--;
5458 if (n_slack < 0)
5459 break;
5460 singular_i = has_singular_src_or_dst(map, i);
5461 if (singular_i < 0)
5462 goto error;
5463 if (singular_i)
5464 continue;
5465 bounded = isl_bool_false;
5466 break;
5468 if (!bounded && i >= n && edge->weight >= 0)
5469 edge->weight -= graph->max_weight + 1;
5470 isl_map_free(map);
5471 isl_set_free(dist);
5473 return bounded;
5474 error:
5475 isl_map_free(map);
5476 isl_set_free(dist);
5477 return isl_bool_error;
5480 /* Should the clusters be merged based on the cluster schedule
5481 * in the current (and only) band of "merge_graph"?
5482 * "graph" is the original dependence graph, while "c" records
5483 * which SCCs are involved in the latest merge.
5485 * In particular, is there at least one proximity constraint
5486 * that is optimized by the merge?
5488 * A proximity constraint is considered to be optimized
5489 * if the dependence distances are small.
5491 static isl_bool ok_to_merge_proximity(isl_ctx *ctx,
5492 struct isl_sched_graph *graph, struct isl_clustering *c,
5493 struct isl_sched_graph *merge_graph)
5495 int i;
5497 for (i = 0; i < graph->n_edge; ++i) {
5498 struct isl_sched_edge *edge = &graph->edge[i];
5499 isl_bool bounded;
5501 if (!is_proximity(edge))
5502 continue;
5503 if (!c->scc_in_merge[edge->src->scc])
5504 continue;
5505 if (!c->scc_in_merge[edge->dst->scc])
5506 continue;
5507 if (c->scc_cluster[edge->dst->scc] ==
5508 c->scc_cluster[edge->src->scc])
5509 continue;
5510 bounded = has_bounded_distances(ctx, edge, graph, c,
5511 merge_graph);
5512 if (bounded < 0 || bounded)
5513 return bounded;
5516 return isl_bool_false;
5519 /* Should the clusters be merged based on the cluster schedule
5520 * in the current (and only) band of "merge_graph"?
5521 * "graph" is the original dependence graph, while "c" records
5522 * which SCCs are involved in the latest merge.
5524 * If the current band is empty, then the clusters should not be merged.
5526 * If the band depth should be maximized and the merge schedule
5527 * is incomplete (meaning that the dimension of some of the schedule
5528 * bands in the original schedule will be reduced), then the clusters
5529 * should not be merged.
5531 * If the schedule_maximize_coincidence option is set, then check that
5532 * the number of coincident schedule dimensions is not reduced.
5534 * Finally, only allow the merge if at least one proximity
5535 * constraint is optimized.
5537 static isl_bool ok_to_merge(isl_ctx *ctx, struct isl_sched_graph *graph,
5538 struct isl_clustering *c, struct isl_sched_graph *merge_graph)
5540 if (merge_graph->n_total_row == merge_graph->band_start)
5541 return isl_bool_false;
5543 if (isl_options_get_schedule_maximize_band_depth(ctx) &&
5544 merge_graph->n_total_row < merge_graph->maxvar)
5545 return isl_bool_false;
5547 if (isl_options_get_schedule_maximize_coincidence(ctx)) {
5548 isl_bool ok;
5550 ok = ok_to_merge_coincident(c, merge_graph);
5551 if (ok < 0 || !ok)
5552 return ok;
5555 return ok_to_merge_proximity(ctx, graph, c, merge_graph);
5558 /* Apply the schedule in "t_node" to the "n" rows starting at "first"
5559 * of the schedule in "node" and return the result.
5561 * That is, essentially compute
5563 * T * N(first:first+n-1)
5565 * taking into account the constant term and the parameter coefficients
5566 * in "t_node".
5568 static __isl_give isl_mat *node_transformation(isl_ctx *ctx,
5569 struct isl_sched_node *t_node, struct isl_sched_node *node,
5570 int first, int n)
5572 int i, j;
5573 isl_mat *t;
5574 int n_row, n_col, n_param, n_var;
5576 n_param = node->nparam;
5577 n_var = node->nvar;
5578 n_row = isl_mat_rows(t_node->sched);
5579 n_col = isl_mat_cols(node->sched);
5580 t = isl_mat_alloc(ctx, n_row, n_col);
5581 if (!t)
5582 return NULL;
5583 for (i = 0; i < n_row; ++i) {
5584 isl_seq_cpy(t->row[i], t_node->sched->row[i], 1 + n_param);
5585 isl_seq_clr(t->row[i] + 1 + n_param, n_var);
5586 for (j = 0; j < n; ++j)
5587 isl_seq_addmul(t->row[i],
5588 t_node->sched->row[i][1 + n_param + j],
5589 node->sched->row[first + j],
5590 1 + n_param + n_var);
5592 return t;
5595 /* Apply the cluster schedule in "t_node" to the current band
5596 * schedule of the nodes in "graph".
5598 * In particular, replace the rows starting at band_start
5599 * by the result of applying the cluster schedule in "t_node"
5600 * to the original rows.
5602 * The coincidence of the schedule is determined by the coincidence
5603 * of the cluster schedule.
5605 static isl_stat transform(isl_ctx *ctx, struct isl_sched_graph *graph,
5606 struct isl_sched_node *t_node)
5608 int i, j;
5609 int n_new;
5610 int start, n;
5612 start = graph->band_start;
5613 n = graph->n_total_row - start;
5615 n_new = isl_mat_rows(t_node->sched);
5616 for (i = 0; i < graph->n; ++i) {
5617 struct isl_sched_node *node = &graph->node[i];
5618 isl_mat *t;
5620 t = node_transformation(ctx, t_node, node, start, n);
5621 node->sched = isl_mat_drop_rows(node->sched, start, n);
5622 node->sched = isl_mat_concat(node->sched, t);
5623 node->sched_map = isl_map_free(node->sched_map);
5624 if (!node->sched)
5625 return isl_stat_error;
5626 for (j = 0; j < n_new; ++j)
5627 node->coincident[start + j] = t_node->coincident[j];
5629 graph->n_total_row -= n;
5630 graph->n_row -= n;
5631 graph->n_total_row += n_new;
5632 graph->n_row += n_new;
5634 return isl_stat_ok;
5637 /* Merge the clusters marked for merging in "c" into a single
5638 * cluster using the cluster schedule in the current band of "merge_graph".
5639 * The representative SCC for the new cluster is the SCC with
5640 * the smallest index.
5642 * The current band schedule of each SCC in the new cluster is obtained
5643 * by applying the schedule of the corresponding original cluster
5644 * to the original band schedule.
5645 * All SCCs in the new cluster have the same number of schedule rows.
5647 static isl_stat merge(isl_ctx *ctx, struct isl_clustering *c,
5648 struct isl_sched_graph *merge_graph)
5650 int i;
5651 int cluster = -1;
5652 isl_space *space;
5654 for (i = 0; i < c->n; ++i) {
5655 struct isl_sched_node *node;
5657 if (!c->scc_in_merge[i])
5658 continue;
5659 if (cluster < 0)
5660 cluster = i;
5661 space = cluster_space(&c->scc[i], c->scc_cluster[i]);
5662 if (!space)
5663 return isl_stat_error;
5664 node = graph_find_node(ctx, merge_graph, space);
5665 isl_space_free(space);
5666 if (!node)
5667 isl_die(ctx, isl_error_internal,
5668 "unable to find cluster",
5669 return isl_stat_error);
5670 if (transform(ctx, &c->scc[i], node) < 0)
5671 return isl_stat_error;
5672 c->scc_cluster[i] = cluster;
5675 return isl_stat_ok;
5678 /* Try and merge the clusters of SCCs marked in c->scc_in_merge
5679 * by scheduling the current cluster bands with respect to each other.
5681 * Construct a dependence graph with a space for each cluster and
5682 * with the coordinates of each space corresponding to the schedule
5683 * dimensions of the current band of that cluster.
5684 * Construct a cluster schedule in this cluster dependence graph and
5685 * apply it to the current cluster bands if it is applicable
5686 * according to ok_to_merge.
5688 * If the number of remaining schedule dimensions in a cluster
5689 * with a non-maximal current schedule dimension is greater than
5690 * the number of remaining schedule dimensions in clusters
5691 * with a maximal current schedule dimension, then restrict
5692 * the number of rows to be computed in the cluster schedule
5693 * to the minimal such non-maximal current schedule dimension.
5694 * Do this by adjusting merge_graph.maxvar.
5696 * Return isl_bool_true if the clusters have effectively been merged
5697 * into a single cluster.
5699 * Note that since the standard scheduling algorithm minimizes the maximal
5700 * distance over proximity constraints, the proximity constraints between
5701 * the merged clusters may not be optimized any further than what is
5702 * sufficient to bring the distances within the limits of the internal
5703 * proximity constraints inside the individual clusters.
5704 * It may therefore make sense to perform an additional translation step
5705 * to bring the clusters closer to each other, while maintaining
5706 * the linear part of the merging schedule found using the standard
5707 * scheduling algorithm.
5709 static isl_bool try_merge(isl_ctx *ctx, struct isl_sched_graph *graph,
5710 struct isl_clustering *c)
5712 struct isl_sched_graph merge_graph = { 0 };
5713 isl_bool merged;
5715 if (init_merge_graph(ctx, graph, c, &merge_graph) < 0)
5716 goto error;
5718 if (compute_maxvar(&merge_graph) < 0)
5719 goto error;
5720 if (adjust_maxvar_to_slack(ctx, &merge_graph,c) < 0)
5721 goto error;
5722 if (compute_schedule_wcc_band(ctx, &merge_graph) < 0)
5723 goto error;
5724 merged = ok_to_merge(ctx, graph, c, &merge_graph);
5725 if (merged && merge(ctx, c, &merge_graph) < 0)
5726 goto error;
5728 graph_free(ctx, &merge_graph);
5729 return merged;
5730 error:
5731 graph_free(ctx, &merge_graph);
5732 return isl_bool_error;
5735 /* Is there any edge marked "no_merge" between two SCCs that are
5736 * about to be merged (i.e., that are set in "scc_in_merge")?
5737 * "merge_edge" is the proximity edge along which the clusters of SCCs
5738 * are going to be merged.
5740 * If there is any edge between two SCCs with a negative weight,
5741 * while the weight of "merge_edge" is non-negative, then this
5742 * means that the edge was postponed. "merge_edge" should then
5743 * also be postponed since merging along the edge with negative weight should
5744 * be postponed until all edges with non-negative weight have been tried.
5745 * Replace the weight of "merge_edge" by a negative weight as well and
5746 * tell the caller not to attempt a merge.
5748 static int any_no_merge(struct isl_sched_graph *graph, int *scc_in_merge,
5749 struct isl_sched_edge *merge_edge)
5751 int i;
5753 for (i = 0; i < graph->n_edge; ++i) {
5754 struct isl_sched_edge *edge = &graph->edge[i];
5756 if (!scc_in_merge[edge->src->scc])
5757 continue;
5758 if (!scc_in_merge[edge->dst->scc])
5759 continue;
5760 if (edge->no_merge)
5761 return 1;
5762 if (merge_edge->weight >= 0 && edge->weight < 0) {
5763 merge_edge->weight -= graph->max_weight + 1;
5764 return 1;
5768 return 0;
5771 /* Merge the two clusters in "c" connected by the edge in "graph"
5772 * with index "edge" into a single cluster.
5773 * If it turns out to be impossible to merge these two clusters,
5774 * then mark the edge as "no_merge" such that it will not be
5775 * considered again.
5777 * First mark all SCCs that need to be merged. This includes the SCCs
5778 * in the two clusters, but it may also include the SCCs
5779 * of intermediate clusters.
5780 * If there is already a no_merge edge between any pair of such SCCs,
5781 * then simply mark the current edge as no_merge as well.
5782 * Likewise, if any of those edges was postponed by has_bounded_distances,
5783 * then postpone the current edge as well.
5784 * Otherwise, try and merge the clusters and mark "edge" as "no_merge"
5785 * if the clusters did not end up getting merged, unless the non-merge
5786 * is due to the fact that the edge was postponed. This postponement
5787 * can be recognized by a change in weight (from non-negative to negative).
5789 static isl_stat merge_clusters_along_edge(isl_ctx *ctx,
5790 struct isl_sched_graph *graph, int edge, struct isl_clustering *c)
5792 isl_bool merged;
5793 int edge_weight = graph->edge[edge].weight;
5795 if (mark_merge_sccs(ctx, graph, edge, c) < 0)
5796 return isl_stat_error;
5798 if (any_no_merge(graph, c->scc_in_merge, &graph->edge[edge]))
5799 merged = isl_bool_false;
5800 else
5801 merged = try_merge(ctx, graph, c);
5802 if (merged < 0)
5803 return isl_stat_error;
5804 if (!merged && edge_weight == graph->edge[edge].weight)
5805 graph->edge[edge].no_merge = 1;
5807 return isl_stat_ok;
5810 /* Does "node" belong to the cluster identified by "cluster"?
5812 static int node_cluster_exactly(struct isl_sched_node *node, int cluster)
5814 return node->cluster == cluster;
5817 /* Does "edge" connect two nodes belonging to the cluster
5818 * identified by "cluster"?
5820 static int edge_cluster_exactly(struct isl_sched_edge *edge, int cluster)
5822 return edge->src->cluster == cluster && edge->dst->cluster == cluster;
5825 /* Swap the schedule of "node1" and "node2".
5826 * Both nodes have been derived from the same node in a common parent graph.
5827 * Since the "coincident" field is shared with that node
5828 * in the parent graph, there is no need to also swap this field.
5830 static void swap_sched(struct isl_sched_node *node1,
5831 struct isl_sched_node *node2)
5833 isl_mat *sched;
5834 isl_map *sched_map;
5836 sched = node1->sched;
5837 node1->sched = node2->sched;
5838 node2->sched = sched;
5840 sched_map = node1->sched_map;
5841 node1->sched_map = node2->sched_map;
5842 node2->sched_map = sched_map;
5845 /* Copy the current band schedule from the SCCs that form the cluster
5846 * with index "pos" to the actual cluster at position "pos".
5847 * By construction, the index of the first SCC that belongs to the cluster
5848 * is also "pos".
5850 * The order of the nodes inside both the SCCs and the cluster
5851 * is assumed to be same as the order in the original "graph".
5853 * Since the SCC graphs will no longer be used after this function,
5854 * the schedules are actually swapped rather than copied.
5856 static isl_stat copy_partial(struct isl_sched_graph *graph,
5857 struct isl_clustering *c, int pos)
5859 int i, j;
5861 c->cluster[pos].n_total_row = c->scc[pos].n_total_row;
5862 c->cluster[pos].n_row = c->scc[pos].n_row;
5863 c->cluster[pos].maxvar = c->scc[pos].maxvar;
5864 j = 0;
5865 for (i = 0; i < graph->n; ++i) {
5866 int k;
5867 int s;
5869 if (graph->node[i].cluster != pos)
5870 continue;
5871 s = graph->node[i].scc;
5872 k = c->scc_node[s]++;
5873 swap_sched(&c->cluster[pos].node[j], &c->scc[s].node[k]);
5874 if (c->scc[s].maxvar > c->cluster[pos].maxvar)
5875 c->cluster[pos].maxvar = c->scc[s].maxvar;
5876 ++j;
5879 return isl_stat_ok;
5882 /* Is there a (conditional) validity dependence from node[j] to node[i],
5883 * forcing node[i] to follow node[j] or do the nodes belong to the same
5884 * cluster?
5886 static isl_bool node_follows_strong_or_same_cluster(int i, int j, void *user)
5888 struct isl_sched_graph *graph = user;
5890 if (graph->node[i].cluster == graph->node[j].cluster)
5891 return isl_bool_true;
5892 return graph_has_validity_edge(graph, &graph->node[j], &graph->node[i]);
5895 /* Extract the merged clusters of SCCs in "graph", sort them, and
5896 * store them in c->clusters. Update c->scc_cluster accordingly.
5898 * First keep track of the cluster containing the SCC to which a node
5899 * belongs in the node itself.
5900 * Then extract the clusters into c->clusters, copying the current
5901 * band schedule from the SCCs that belong to the cluster.
5902 * Do this only once per cluster.
5904 * Finally, topologically sort the clusters and update c->scc_cluster
5905 * to match the new scc numbering. While the SCCs were originally
5906 * sorted already, some SCCs that depend on some other SCCs may
5907 * have been merged with SCCs that appear before these other SCCs.
5908 * A reordering may therefore be required.
5910 static isl_stat extract_clusters(isl_ctx *ctx, struct isl_sched_graph *graph,
5911 struct isl_clustering *c)
5913 int i;
5915 for (i = 0; i < graph->n; ++i)
5916 graph->node[i].cluster = c->scc_cluster[graph->node[i].scc];
5918 for (i = 0; i < graph->scc; ++i) {
5919 if (c->scc_cluster[i] != i)
5920 continue;
5921 if (extract_sub_graph(ctx, graph, &node_cluster_exactly,
5922 &edge_cluster_exactly, i, &c->cluster[i]) < 0)
5923 return isl_stat_error;
5924 c->cluster[i].src_scc = -1;
5925 c->cluster[i].dst_scc = -1;
5926 if (copy_partial(graph, c, i) < 0)
5927 return isl_stat_error;
5930 if (detect_ccs(ctx, graph, &node_follows_strong_or_same_cluster) < 0)
5931 return isl_stat_error;
5932 for (i = 0; i < graph->n; ++i)
5933 c->scc_cluster[graph->node[i].scc] = graph->node[i].cluster;
5935 return isl_stat_ok;
5938 /* Compute weights on the proximity edges of "graph" that can
5939 * be used by find_proximity to find the most appropriate
5940 * proximity edge to use to merge two clusters in "c".
5941 * The weights are also used by has_bounded_distances to determine
5942 * whether the merge should be allowed.
5943 * Store the maximum of the computed weights in graph->max_weight.
5945 * The computed weight is a measure for the number of remaining schedule
5946 * dimensions that can still be completely aligned.
5947 * In particular, compute the number of equalities between
5948 * input dimensions and output dimensions in the proximity constraints.
5949 * The directions that are already handled by outer schedule bands
5950 * are projected out prior to determining this number.
5952 * Edges that will never be considered by find_proximity are ignored.
5954 static isl_stat compute_weights(struct isl_sched_graph *graph,
5955 struct isl_clustering *c)
5957 int i;
5959 graph->max_weight = 0;
5961 for (i = 0; i < graph->n_edge; ++i) {
5962 struct isl_sched_edge *edge = &graph->edge[i];
5963 struct isl_sched_node *src = edge->src;
5964 struct isl_sched_node *dst = edge->dst;
5965 isl_basic_map *hull;
5966 int n_in, n_out;
5968 if (!is_proximity(edge))
5969 continue;
5970 if (bad_cluster(&c->scc[edge->src->scc]) ||
5971 bad_cluster(&c->scc[edge->dst->scc]))
5972 continue;
5973 if (c->scc_cluster[edge->dst->scc] ==
5974 c->scc_cluster[edge->src->scc])
5975 continue;
5977 hull = isl_map_affine_hull(isl_map_copy(edge->map));
5978 hull = isl_basic_map_transform_dims(hull, isl_dim_in, 0,
5979 isl_mat_copy(src->ctrans));
5980 hull = isl_basic_map_transform_dims(hull, isl_dim_out, 0,
5981 isl_mat_copy(dst->ctrans));
5982 hull = isl_basic_map_project_out(hull,
5983 isl_dim_in, 0, src->rank);
5984 hull = isl_basic_map_project_out(hull,
5985 isl_dim_out, 0, dst->rank);
5986 hull = isl_basic_map_remove_divs(hull);
5987 n_in = isl_basic_map_dim(hull, isl_dim_in);
5988 n_out = isl_basic_map_dim(hull, isl_dim_out);
5989 hull = isl_basic_map_drop_constraints_not_involving_dims(hull,
5990 isl_dim_in, 0, n_in);
5991 hull = isl_basic_map_drop_constraints_not_involving_dims(hull,
5992 isl_dim_out, 0, n_out);
5993 if (!hull)
5994 return isl_stat_error;
5995 edge->weight = hull->n_eq;
5996 isl_basic_map_free(hull);
5998 if (edge->weight > graph->max_weight)
5999 graph->max_weight = edge->weight;
6002 return isl_stat_ok;
6005 /* Call compute_schedule_finish_band on each of the clusters in "c"
6006 * in their topological order. This order is determined by the scc
6007 * fields of the nodes in "graph".
6008 * Combine the results in a sequence expressing the topological order.
6010 * If there is only one cluster left, then there is no need to introduce
6011 * a sequence node. Also, in this case, the cluster necessarily contains
6012 * the SCC at position 0 in the original graph and is therefore also
6013 * stored in the first cluster of "c".
6015 static __isl_give isl_schedule_node *finish_bands_clustering(
6016 __isl_take isl_schedule_node *node, struct isl_sched_graph *graph,
6017 struct isl_clustering *c)
6019 int i;
6020 isl_ctx *ctx;
6021 isl_union_set_list *filters;
6023 if (graph->scc == 1)
6024 return compute_schedule_finish_band(node, &c->cluster[0], 0);
6026 ctx = isl_schedule_node_get_ctx(node);
6028 filters = extract_sccs(ctx, graph);
6029 node = isl_schedule_node_insert_sequence(node, filters);
6031 for (i = 0; i < graph->scc; ++i) {
6032 int j = c->scc_cluster[i];
6033 node = isl_schedule_node_child(node, i);
6034 node = isl_schedule_node_child(node, 0);
6035 node = compute_schedule_finish_band(node, &c->cluster[j], 0);
6036 node = isl_schedule_node_parent(node);
6037 node = isl_schedule_node_parent(node);
6040 return node;
6043 /* Compute a schedule for a connected dependence graph by first considering
6044 * each strongly connected component (SCC) in the graph separately and then
6045 * incrementally combining them into clusters.
6046 * Return the updated schedule node.
6048 * Initially, each cluster consists of a single SCC, each with its
6049 * own band schedule. The algorithm then tries to merge pairs
6050 * of clusters along a proximity edge until no more suitable
6051 * proximity edges can be found. During this merging, the schedule
6052 * is maintained in the individual SCCs.
6053 * After the merging is completed, the full resulting clusters
6054 * are extracted and in finish_bands_clustering,
6055 * compute_schedule_finish_band is called on each of them to integrate
6056 * the band into "node" and to continue the computation.
6058 * compute_weights initializes the weights that are used by find_proximity.
6060 static __isl_give isl_schedule_node *compute_schedule_wcc_clustering(
6061 __isl_take isl_schedule_node *node, struct isl_sched_graph *graph)
6063 isl_ctx *ctx;
6064 struct isl_clustering c;
6065 int i;
6067 ctx = isl_schedule_node_get_ctx(node);
6069 if (clustering_init(ctx, &c, graph) < 0)
6070 goto error;
6072 if (compute_weights(graph, &c) < 0)
6073 goto error;
6075 for (;;) {
6076 i = find_proximity(graph, &c);
6077 if (i < 0)
6078 goto error;
6079 if (i >= graph->n_edge)
6080 break;
6081 if (merge_clusters_along_edge(ctx, graph, i, &c) < 0)
6082 goto error;
6085 if (extract_clusters(ctx, graph, &c) < 0)
6086 goto error;
6088 node = finish_bands_clustering(node, graph, &c);
6090 clustering_free(ctx, &c);
6091 return node;
6092 error:
6093 clustering_free(ctx, &c);
6094 return isl_schedule_node_free(node);
6097 /* Compute a schedule for a connected dependence graph and return
6098 * the updated schedule node.
6100 * If Feautrier's algorithm is selected, we first recursively try to satisfy
6101 * as many validity dependences as possible. When all validity dependences
6102 * are satisfied we extend the schedule to a full-dimensional schedule.
6104 * Call compute_schedule_wcc_whole or compute_schedule_wcc_clustering
6105 * depending on whether the user has selected the option to try and
6106 * compute a schedule for the entire (weakly connected) component first.
6107 * If there is only a single strongly connected component (SCC), then
6108 * there is no point in trying to combine SCCs
6109 * in compute_schedule_wcc_clustering, so compute_schedule_wcc_whole
6110 * is called instead.
6112 static __isl_give isl_schedule_node *compute_schedule_wcc(
6113 __isl_take isl_schedule_node *node, struct isl_sched_graph *graph)
6115 isl_ctx *ctx;
6117 if (!node)
6118 return NULL;
6120 ctx = isl_schedule_node_get_ctx(node);
6121 if (detect_sccs(ctx, graph) < 0)
6122 return isl_schedule_node_free(node);
6124 if (compute_maxvar(graph) < 0)
6125 return isl_schedule_node_free(node);
6127 if (need_feautrier_step(ctx, graph))
6128 return compute_schedule_wcc_feautrier(node, graph);
6130 if (graph->scc <= 1 || isl_options_get_schedule_whole_component(ctx))
6131 return compute_schedule_wcc_whole(node, graph);
6132 else
6133 return compute_schedule_wcc_clustering(node, graph);
6136 /* Compute a schedule for each group of nodes identified by node->scc
6137 * separately and then combine them in a sequence node (or as set node
6138 * if graph->weak is set) inserted at position "node" of the schedule tree.
6139 * Return the updated schedule node.
6141 * If "wcc" is set then each of the groups belongs to a single
6142 * weakly connected component in the dependence graph so that
6143 * there is no need for compute_sub_schedule to look for weakly
6144 * connected components.
6146 static __isl_give isl_schedule_node *compute_component_schedule(
6147 __isl_take isl_schedule_node *node, struct isl_sched_graph *graph,
6148 int wcc)
6150 int component;
6151 isl_ctx *ctx;
6152 isl_union_set_list *filters;
6154 if (!node)
6155 return NULL;
6156 ctx = isl_schedule_node_get_ctx(node);
6158 filters = extract_sccs(ctx, graph);
6159 if (graph->weak)
6160 node = isl_schedule_node_insert_set(node, filters);
6161 else
6162 node = isl_schedule_node_insert_sequence(node, filters);
6164 for (component = 0; component < graph->scc; ++component) {
6165 node = isl_schedule_node_child(node, component);
6166 node = isl_schedule_node_child(node, 0);
6167 node = compute_sub_schedule(node, ctx, graph,
6168 &node_scc_exactly,
6169 &edge_scc_exactly, component, wcc);
6170 node = isl_schedule_node_parent(node);
6171 node = isl_schedule_node_parent(node);
6174 return node;
6177 /* Compute a schedule for the given dependence graph and insert it at "node".
6178 * Return the updated schedule node.
6180 * We first check if the graph is connected (through validity and conditional
6181 * validity dependences) and, if not, compute a schedule
6182 * for each component separately.
6183 * If the schedule_serialize_sccs option is set, then we check for strongly
6184 * connected components instead and compute a separate schedule for
6185 * each such strongly connected component.
6187 static __isl_give isl_schedule_node *compute_schedule(isl_schedule_node *node,
6188 struct isl_sched_graph *graph)
6190 isl_ctx *ctx;
6192 if (!node)
6193 return NULL;
6195 ctx = isl_schedule_node_get_ctx(node);
6196 if (isl_options_get_schedule_serialize_sccs(ctx)) {
6197 if (detect_sccs(ctx, graph) < 0)
6198 return isl_schedule_node_free(node);
6199 } else {
6200 if (detect_wccs(ctx, graph) < 0)
6201 return isl_schedule_node_free(node);
6204 if (graph->scc > 1)
6205 return compute_component_schedule(node, graph, 1);
6207 return compute_schedule_wcc(node, graph);
6210 /* Compute a schedule on sc->domain that respects the given schedule
6211 * constraints.
6213 * In particular, the schedule respects all the validity dependences.
6214 * If the default isl scheduling algorithm is used, it tries to minimize
6215 * the dependence distances over the proximity dependences.
6216 * If Feautrier's scheduling algorithm is used, the proximity dependence
6217 * distances are only minimized during the extension to a full-dimensional
6218 * schedule.
6220 * If there are any condition and conditional validity dependences,
6221 * then the conditional validity dependences may be violated inside
6222 * a tilable band, provided they have no adjacent non-local
6223 * condition dependences.
6225 __isl_give isl_schedule *isl_schedule_constraints_compute_schedule(
6226 __isl_take isl_schedule_constraints *sc)
6228 isl_ctx *ctx = isl_schedule_constraints_get_ctx(sc);
6229 struct isl_sched_graph graph = { 0 };
6230 isl_schedule *sched;
6231 isl_schedule_node *node;
6232 isl_union_set *domain;
6234 sc = isl_schedule_constraints_align_params(sc);
6236 domain = isl_schedule_constraints_get_domain(sc);
6237 if (isl_union_set_n_set(domain) == 0) {
6238 isl_schedule_constraints_free(sc);
6239 return isl_schedule_from_domain(domain);
6242 if (graph_init(&graph, sc) < 0)
6243 domain = isl_union_set_free(domain);
6245 node = isl_schedule_node_from_domain(domain);
6246 node = isl_schedule_node_child(node, 0);
6247 if (graph.n > 0)
6248 node = compute_schedule(node, &graph);
6249 sched = isl_schedule_node_get_schedule(node);
6250 isl_schedule_node_free(node);
6252 graph_free(ctx, &graph);
6253 isl_schedule_constraints_free(sc);
6255 return sched;
6258 /* Compute a schedule for the given union of domains that respects
6259 * all the validity dependences and minimizes
6260 * the dependence distances over the proximity dependences.
6262 * This function is kept for backward compatibility.
6264 __isl_give isl_schedule *isl_union_set_compute_schedule(
6265 __isl_take isl_union_set *domain,
6266 __isl_take isl_union_map *validity,
6267 __isl_take isl_union_map *proximity)
6269 isl_schedule_constraints *sc;
6271 sc = isl_schedule_constraints_on_domain(domain);
6272 sc = isl_schedule_constraints_set_validity(sc, validity);
6273 sc = isl_schedule_constraints_set_proximity(sc, proximity);
6275 return isl_schedule_constraints_compute_schedule(sc);