2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2010 INRIA Saclay
4 * Copyright 2012-2013 Ecole Normale Superieure
5 * Copyright 2014 INRIA Rocquencourt
7 * Use of this software is governed by the MIT license
9 * Written by Sven Verdoolaege, K.U.Leuven, Departement
10 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
11 * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
12 * ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France
13 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
14 * and Inria Paris - Rocquencourt, Domaine de Voluceau - Rocquencourt,
15 * B.P. 105 - 78153 Le Chesnay, France
21 #include <isl_ctx_private.h>
22 #include <isl_map_private.h>
23 #include <isl_aff_private.h>
24 #include <isl_space_private.h>
27 #include <isl_constraint_private.h>
28 #include <isl/polynomial.h>
29 #include <isl/union_set.h>
30 #include <isl/union_map.h>
31 #include <isl_factorization.h>
32 #include <isl/schedule.h>
33 #include <isl/schedule_node.h>
34 #include <isl_options_private.h>
35 #include <isl/vertices.h>
36 #include <isl/ast_build.h>
39 #include <isl_ast_build_expr.h>
40 #include <isl/options.h>
42 #define ARRAY_SIZE(array) (sizeof(array)/sizeof(*array))
46 static char *get_filename(isl_ctx
*ctx
, const char *name
, const char *suffix
) {
49 char *pattern
= "%s/test_inputs/%s.%s";
51 length
= strlen(pattern
) - 6 + strlen(srcdir
) + strlen(name
)
53 filename
= isl_alloc_array(ctx
, char, length
);
58 sprintf(filename
, pattern
, srcdir
, name
, suffix
);
63 void test_parse_map(isl_ctx
*ctx
, const char *str
)
67 map
= isl_map_read_from_str(ctx
, str
);
72 int test_parse_map_equal(isl_ctx
*ctx
, const char *str
, const char *str2
)
77 map
= isl_map_read_from_str(ctx
, str
);
78 map2
= isl_map_read_from_str(ctx
, str2
);
79 equal
= isl_map_is_equal(map
, map2
);
86 isl_die(ctx
, isl_error_unknown
, "maps not equal",
92 void test_parse_pwqp(isl_ctx
*ctx
, const char *str
)
94 isl_pw_qpolynomial
*pwqp
;
96 pwqp
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
98 isl_pw_qpolynomial_free(pwqp
);
101 static void test_parse_pwaff(isl_ctx
*ctx
, const char *str
)
105 pwaff
= isl_pw_aff_read_from_str(ctx
, str
);
107 isl_pw_aff_free(pwaff
);
110 /* Check that we can read an isl_multi_val from "str" without errors.
112 static int test_parse_multi_val(isl_ctx
*ctx
, const char *str
)
116 mv
= isl_multi_val_read_from_str(ctx
, str
);
117 isl_multi_val_free(mv
);
122 /* Pairs of binary relation representations that should represent
123 * the same binary relations.
128 } parse_map_equal_tests
[] = {
129 { "{ [x,y] : [([x/2]+y)/3] >= 1 }",
130 "{ [x, y] : 2y >= 6 - x }" },
131 { "{ [x,y] : x <= min(y, 2*y+3) }",
132 "{ [x,y] : x <= y, 2*y + 3 }" },
133 { "{ [x,y] : x >= min(y, 2*y+3) }",
134 "{ [x, y] : (y <= x and y >= -3) or (2y <= -3 + x and y <= -4) }" },
135 { "[n] -> { [c1] : c1>=0 and c1<=floord(n-4,3) }",
136 "[n] -> { [c1] : c1 >= 0 and 3c1 <= -4 + n }" },
137 { "{ [i,j] -> [i] : i < j; [i,j] -> [j] : j <= i }",
138 "{ [i,j] -> [min(i,j)] }" },
139 { "{ [i,j] : i != j }",
140 "{ [i,j] : i < j or i > j }" },
141 { "{ [i,j] : (i+1)*2 >= j }",
142 "{ [i, j] : j <= 2 + 2i }" },
143 { "{ [i] -> [i > 0 ? 4 : 5] }",
144 "{ [i] -> [5] : i <= 0; [i] -> [4] : i >= 1 }" },
145 { "[N=2,M] -> { [i=[(M+N)/4]] }",
146 "[N, M] -> { [i] : N = 2 and 4i <= 2 + M and 4i >= -1 + M }" },
147 { "{ [x] : x >= 0 }",
148 "{ [x] : x-0 >= 0 }" },
149 { "{ [i] : ((i > 10)) }",
150 "{ [i] : i >= 11 }" },
152 "{ [i] -> [0 * i] }" },
153 { "{ [a] -> [b] : (not false) }",
154 "{ [a] -> [b] : true }" },
155 { "{ [i] : i/2 <= 5 }",
156 "{ [i] : i <= 10 }" },
157 { "{Sym=[n] [i] : i <= n }",
158 "[n] -> { [i] : i <= n }" },
161 { "{ [i] : 2*floor(i/2) = i }",
162 "{ [i] : exists a : i = 2 a }" },
163 { "{ [a] -> [b] : a = 5 implies b = 5 }",
164 "{ [a] -> [b] : a != 5 or b = 5 }" },
165 { "{ [a] -> [a - 1 : a > 0] }",
166 "{ [a] -> [a - 1] : a > 0 }" },
167 { "{ [a] -> [a - 1 : a > 0; a : a <= 0] }",
168 "{ [a] -> [a - 1] : a > 0; [a] -> [a] : a <= 0 }" },
169 { "{ [a] -> [(a) * 2 : a >= 0; 0 : a < 0] }",
170 "{ [a] -> [2a] : a >= 0; [a] -> [0] : a < 0 }" },
171 { "{ [a] -> [(a * 2) : a >= 0; 0 : a < 0] }",
172 "{ [a] -> [2a] : a >= 0; [a] -> [0] : a < 0 }" },
173 { "{ [a] -> [(a * 2 : a >= 0); 0 : a < 0] }",
174 "{ [a] -> [2a] : a >= 0; [a] -> [0] : a < 0 }" },
175 { "{ [a] -> [(a * 2 : a >= 0; 0 : a < 0)] }",
176 "{ [a] -> [2a] : a >= 0; [a] -> [0] : a < 0 }" },
177 { "{ [a,b] -> [i,j] : a,b << i,j }",
178 "{ [a,b] -> [i,j] : a < i or (a = i and b < j) }" },
179 { "{ [a,b] -> [i,j] : a,b <<= i,j }",
180 "{ [a,b] -> [i,j] : a < i or (a = i and b <= j) }" },
181 { "{ [a,b] -> [i,j] : a,b >> i,j }",
182 "{ [a,b] -> [i,j] : a > i or (a = i and b > j) }" },
183 { "{ [a,b] -> [i,j] : a,b >>= i,j }",
184 "{ [a,b] -> [i,j] : a > i or (a = i and b >= j) }" },
185 { "{ [n] -> [i] : exists (a, b, c: 8b <= i - 32a and "
186 "8b >= -7 + i - 32 a and b >= 0 and b <= 3 and "
187 "8c < n - 32a and i < n and c >= 0 and "
188 "c <= 3 and c >= -4a) }",
189 "{ [n] -> [i] : 0 <= i < n }" },
190 { "{ [x] -> [] : exists (a, b: 0 <= a <= 1 and 0 <= b <= 3 and "
191 "2b <= x - 8a and 2b >= -1 + x - 8a) }",
192 "{ [x] -> [] : 0 <= x <= 15 }" },
195 int test_parse(struct isl_ctx
*ctx
)
199 const char *str
, *str2
;
201 if (test_parse_multi_val(ctx
, "{ A[B[2] -> C[5, 7]] }") < 0)
203 if (test_parse_multi_val(ctx
, "[n] -> { [2] }") < 0)
205 if (test_parse_multi_val(ctx
, "{ A[4, infty, NaN, -1/2, 2/3] }") < 0)
208 str
= "{ [i] -> [-i] }";
209 map
= isl_map_read_from_str(ctx
, str
);
213 str
= "{ A[i] -> L[([i/3])] }";
214 map
= isl_map_read_from_str(ctx
, str
);
218 test_parse_map(ctx
, "{[[s] -> A[i]] -> [[s+1] -> A[i]]}");
219 test_parse_map(ctx
, "{ [p1, y1, y2] -> [2, y1, y2] : "
220 "p1 = 1 && (y1 <= y2 || y2 = 0) }");
222 for (i
= 0; i
< ARRAY_SIZE(parse_map_equal_tests
); ++i
) {
223 str
= parse_map_equal_tests
[i
].map1
;
224 str2
= parse_map_equal_tests
[i
].map2
;
225 if (test_parse_map_equal(ctx
, str
, str2
) < 0)
229 str
= "{[new,old] -> [new+1-2*[(new+1)/2],old+1-2*[(old+1)/2]]}";
230 map
= isl_map_read_from_str(ctx
, str
);
231 str
= "{ [new, old] -> [o0, o1] : "
232 "exists (e0 = [(-1 - new + o0)/2], e1 = [(-1 - old + o1)/2]: "
233 "2e0 = -1 - new + o0 and 2e1 = -1 - old + o1 and o0 >= 0 and "
234 "o0 <= 1 and o1 >= 0 and o1 <= 1) }";
235 map2
= isl_map_read_from_str(ctx
, str
);
236 assert(isl_map_is_equal(map
, map2
));
240 str
= "{[new,old] -> [new+1-2*[(new+1)/2],old+1-2*[(old+1)/2]]}";
241 map
= isl_map_read_from_str(ctx
, str
);
242 str
= "{[new,old] -> [(new+1)%2,(old+1)%2]}";
243 map2
= isl_map_read_from_str(ctx
, str
);
244 assert(isl_map_is_equal(map
, map2
));
248 test_parse_pwqp(ctx
, "{ [i] -> i + [ (i + [i/3])/2 ] }");
249 test_parse_map(ctx
, "{ S1[i] -> [([i/10]),i%10] : 0 <= i <= 45 }");
250 test_parse_pwaff(ctx
, "{ [i] -> [i + 1] : i > 0; [a] -> [a] : a < 0 }");
251 test_parse_pwqp(ctx
, "{ [x] -> ([(x)/2] * [(x)/3]) }");
252 test_parse_pwaff(ctx
, "{ [] -> [(100)] }");
257 static int test_read(isl_ctx
*ctx
)
261 isl_basic_set
*bset1
, *bset2
;
262 const char *str
= "{[y]: Exists ( alpha : 2alpha = y)}";
265 filename
= get_filename(ctx
, "set", "omega");
267 input
= fopen(filename
, "r");
270 bset1
= isl_basic_set_read_from_file(ctx
, input
);
271 bset2
= isl_basic_set_read_from_str(ctx
, str
);
273 equal
= isl_basic_set_is_equal(bset1
, bset2
);
275 isl_basic_set_free(bset1
);
276 isl_basic_set_free(bset2
);
284 isl_die(ctx
, isl_error_unknown
,
285 "read sets not equal", return -1);
290 static int test_bounded(isl_ctx
*ctx
)
295 set
= isl_set_read_from_str(ctx
, "[n] -> {[i] : 0 <= i <= n }");
296 bounded
= isl_set_is_bounded(set
);
302 isl_die(ctx
, isl_error_unknown
,
303 "set not considered bounded", return -1);
305 set
= isl_set_read_from_str(ctx
, "{[n, i] : 0 <= i <= n }");
306 bounded
= isl_set_is_bounded(set
);
313 isl_die(ctx
, isl_error_unknown
,
314 "set considered bounded", return -1);
316 set
= isl_set_read_from_str(ctx
, "[n] -> {[i] : i <= n }");
317 bounded
= isl_set_is_bounded(set
);
323 isl_die(ctx
, isl_error_unknown
,
324 "set considered bounded", return -1);
329 /* Construct the basic set { [i] : 5 <= i <= N } */
330 static int test_construction(isl_ctx
*ctx
)
340 dim
= isl_space_set_alloc(ctx
, 1, 1);
341 bset
= isl_basic_set_universe(isl_space_copy(dim
));
342 ls
= isl_local_space_from_space(dim
);
344 c
= isl_constraint_alloc_inequality(isl_local_space_copy(ls
));
345 isl_int_set_si(v
, -1);
346 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
347 isl_int_set_si(v
, 1);
348 isl_constraint_set_coefficient(c
, isl_dim_param
, 0, v
);
349 bset
= isl_basic_set_add_constraint(bset
, c
);
351 c
= isl_constraint_alloc_inequality(isl_local_space_copy(ls
));
352 isl_int_set_si(v
, 1);
353 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
354 isl_int_set_si(v
, -5);
355 isl_constraint_set_constant(c
, v
);
356 bset
= isl_basic_set_add_constraint(bset
, c
);
358 isl_local_space_free(ls
);
359 isl_basic_set_free(bset
);
366 static int test_dim(isl_ctx
*ctx
)
369 isl_map
*map1
, *map2
;
372 map1
= isl_map_read_from_str(ctx
,
373 "[n] -> { [i] -> [j] : exists (a = [i/10] : i - 10a <= n ) }");
374 map1
= isl_map_add_dims(map1
, isl_dim_in
, 1);
375 map2
= isl_map_read_from_str(ctx
,
376 "[n] -> { [i,k] -> [j] : exists (a = [i/10] : i - 10a <= n ) }");
377 equal
= isl_map_is_equal(map1
, map2
);
380 map1
= isl_map_project_out(map1
, isl_dim_in
, 0, 1);
381 map2
= isl_map_read_from_str(ctx
, "[n] -> { [i] -> [j] : n >= 0 }");
382 if (equal
>= 0 && equal
)
383 equal
= isl_map_is_equal(map1
, map2
);
391 isl_die(ctx
, isl_error_unknown
,
392 "unexpected result", return -1);
394 str
= "[n] -> { [i] -> [] : exists a : 0 <= i <= n and i = 2 a }";
395 map1
= isl_map_read_from_str(ctx
, str
);
396 str
= "{ [i] -> [j] : exists a : 0 <= i <= j and i = 2 a }";
397 map2
= isl_map_read_from_str(ctx
, str
);
398 map1
= isl_map_move_dims(map1
, isl_dim_out
, 0, isl_dim_param
, 0, 1);
399 equal
= isl_map_is_equal(map1
, map2
);
406 isl_die(ctx
, isl_error_unknown
,
407 "unexpected result", return -1);
413 __isl_give isl_val
*(*op
)(__isl_take isl_val
*v
);
417 { &isl_val_neg
, "0", "0" },
418 { &isl_val_abs
, "0", "0" },
419 { &isl_val_2exp
, "0", "1" },
420 { &isl_val_floor
, "0", "0" },
421 { &isl_val_ceil
, "0", "0" },
422 { &isl_val_neg
, "1", "-1" },
423 { &isl_val_neg
, "-1", "1" },
424 { &isl_val_neg
, "1/2", "-1/2" },
425 { &isl_val_neg
, "-1/2", "1/2" },
426 { &isl_val_neg
, "infty", "-infty" },
427 { &isl_val_neg
, "-infty", "infty" },
428 { &isl_val_neg
, "NaN", "NaN" },
429 { &isl_val_abs
, "1", "1" },
430 { &isl_val_abs
, "-1", "1" },
431 { &isl_val_abs
, "1/2", "1/2" },
432 { &isl_val_abs
, "-1/2", "1/2" },
433 { &isl_val_abs
, "infty", "infty" },
434 { &isl_val_abs
, "-infty", "infty" },
435 { &isl_val_abs
, "NaN", "NaN" },
436 { &isl_val_floor
, "1", "1" },
437 { &isl_val_floor
, "-1", "-1" },
438 { &isl_val_floor
, "1/2", "0" },
439 { &isl_val_floor
, "-1/2", "-1" },
440 { &isl_val_floor
, "infty", "infty" },
441 { &isl_val_floor
, "-infty", "-infty" },
442 { &isl_val_floor
, "NaN", "NaN" },
443 { &isl_val_ceil
, "1", "1" },
444 { &isl_val_ceil
, "-1", "-1" },
445 { &isl_val_ceil
, "1/2", "1" },
446 { &isl_val_ceil
, "-1/2", "0" },
447 { &isl_val_ceil
, "infty", "infty" },
448 { &isl_val_ceil
, "-infty", "-infty" },
449 { &isl_val_ceil
, "NaN", "NaN" },
450 { &isl_val_2exp
, "-3", "1/8" },
451 { &isl_val_2exp
, "-1", "1/2" },
452 { &isl_val_2exp
, "1", "2" },
453 { &isl_val_2exp
, "2", "4" },
454 { &isl_val_2exp
, "3", "8" },
455 { &isl_val_inv
, "1", "1" },
456 { &isl_val_inv
, "2", "1/2" },
457 { &isl_val_inv
, "1/2", "2" },
458 { &isl_val_inv
, "-2", "-1/2" },
459 { &isl_val_inv
, "-1/2", "-2" },
460 { &isl_val_inv
, "0", "NaN" },
461 { &isl_val_inv
, "NaN", "NaN" },
462 { &isl_val_inv
, "infty", "0" },
463 { &isl_val_inv
, "-infty", "0" },
466 /* Perform some basic tests of unary operations on isl_val objects.
468 static int test_un_val(isl_ctx
*ctx
)
472 __isl_give isl_val
*(*fn
)(__isl_take isl_val
*v
);
475 for (i
= 0; i
< ARRAY_SIZE(val_un_tests
); ++i
) {
476 v
= isl_val_read_from_str(ctx
, val_un_tests
[i
].arg
);
477 res
= isl_val_read_from_str(ctx
, val_un_tests
[i
].res
);
478 fn
= val_un_tests
[i
].op
;
480 if (isl_val_is_nan(res
))
481 ok
= isl_val_is_nan(v
);
483 ok
= isl_val_eq(v
, res
);
489 isl_die(ctx
, isl_error_unknown
,
490 "unexpected result", return -1);
497 __isl_give isl_val
*(*fn
)(__isl_take isl_val
*v1
,
498 __isl_take isl_val
*v2
);
500 ['+'] = { &isl_val_add
},
501 ['-'] = { &isl_val_sub
},
502 ['*'] = { &isl_val_mul
},
503 ['/'] = { &isl_val_div
},
504 ['g'] = { &isl_val_gcd
},
505 ['m'] = { &isl_val_min
},
506 ['M'] = { &isl_val_max
},
514 } val_bin_tests
[] = {
515 { "0", '+', "0", "0" },
516 { "1", '+', "0", "1" },
517 { "1", '+', "1", "2" },
518 { "1", '-', "1", "0" },
519 { "1", '*', "1", "1" },
520 { "1", '/', "1", "1" },
521 { "2", '*', "3", "6" },
522 { "2", '*', "1/2", "1" },
523 { "2", '*', "1/3", "2/3" },
524 { "2/3", '*', "3/5", "2/5" },
525 { "2/3", '*', "7/5", "14/15" },
526 { "2", '/', "1/2", "4" },
527 { "-2", '/', "-1/2", "4" },
528 { "-2", '/', "1/2", "-4" },
529 { "2", '/', "-1/2", "-4" },
530 { "2", '/', "2", "1" },
531 { "2", '/', "3", "2/3" },
532 { "2/3", '/', "5/3", "2/5" },
533 { "2/3", '/', "5/7", "14/15" },
534 { "0", '/', "0", "NaN" },
535 { "42", '/', "0", "NaN" },
536 { "-42", '/', "0", "NaN" },
537 { "infty", '/', "0", "NaN" },
538 { "-infty", '/', "0", "NaN" },
539 { "NaN", '/', "0", "NaN" },
540 { "0", '/', "NaN", "NaN" },
541 { "42", '/', "NaN", "NaN" },
542 { "-42", '/', "NaN", "NaN" },
543 { "infty", '/', "NaN", "NaN" },
544 { "-infty", '/', "NaN", "NaN" },
545 { "NaN", '/', "NaN", "NaN" },
546 { "0", '/', "infty", "0" },
547 { "42", '/', "infty", "0" },
548 { "-42", '/', "infty", "0" },
549 { "infty", '/', "infty", "NaN" },
550 { "-infty", '/', "infty", "NaN" },
551 { "NaN", '/', "infty", "NaN" },
552 { "0", '/', "-infty", "0" },
553 { "42", '/', "-infty", "0" },
554 { "-42", '/', "-infty", "0" },
555 { "infty", '/', "-infty", "NaN" },
556 { "-infty", '/', "-infty", "NaN" },
557 { "NaN", '/', "-infty", "NaN" },
558 { "1", '-', "1/3", "2/3" },
559 { "1/3", '+', "1/2", "5/6" },
560 { "1/2", '+', "1/2", "1" },
561 { "3/4", '-', "1/4", "1/2" },
562 { "1/2", '-', "1/3", "1/6" },
563 { "infty", '+', "42", "infty" },
564 { "infty", '+', "infty", "infty" },
565 { "42", '+', "infty", "infty" },
566 { "infty", '-', "infty", "NaN" },
567 { "infty", '*', "infty", "infty" },
568 { "infty", '*', "-infty", "-infty" },
569 { "-infty", '*', "infty", "-infty" },
570 { "-infty", '*', "-infty", "infty" },
571 { "0", '*', "infty", "NaN" },
572 { "1", '*', "infty", "infty" },
573 { "infty", '*', "0", "NaN" },
574 { "infty", '*', "42", "infty" },
575 { "42", '-', "infty", "-infty" },
576 { "infty", '+', "-infty", "NaN" },
577 { "4", 'g', "6", "2" },
578 { "5", 'g', "6", "1" },
579 { "42", 'm', "3", "3" },
580 { "42", 'M', "3", "42" },
581 { "3", 'm', "42", "3" },
582 { "3", 'M', "42", "42" },
583 { "42", 'm', "infty", "42" },
584 { "42", 'M', "infty", "infty" },
585 { "42", 'm', "-infty", "-infty" },
586 { "42", 'M', "-infty", "42" },
587 { "42", 'm', "NaN", "NaN" },
588 { "42", 'M', "NaN", "NaN" },
589 { "infty", 'm', "-infty", "-infty" },
590 { "infty", 'M', "-infty", "infty" },
593 /* Perform some basic tests of binary operations on isl_val objects.
595 static int test_bin_val(isl_ctx
*ctx
)
598 isl_val
*v1
, *v2
, *res
;
599 __isl_give isl_val
*(*fn
)(__isl_take isl_val
*v1
,
600 __isl_take isl_val
*v2
);
603 for (i
= 0; i
< ARRAY_SIZE(val_bin_tests
); ++i
) {
604 v1
= isl_val_read_from_str(ctx
, val_bin_tests
[i
].arg1
);
605 v2
= isl_val_read_from_str(ctx
, val_bin_tests
[i
].arg2
);
606 res
= isl_val_read_from_str(ctx
, val_bin_tests
[i
].res
);
607 fn
= val_bin_op
[val_bin_tests
[i
].op
].fn
;
609 if (isl_val_is_nan(res
))
610 ok
= isl_val_is_nan(v1
);
612 ok
= isl_val_eq(v1
, res
);
618 isl_die(ctx
, isl_error_unknown
,
619 "unexpected result", return -1);
625 /* Perform some basic tests on isl_val objects.
627 static int test_val(isl_ctx
*ctx
)
629 if (test_un_val(ctx
) < 0)
631 if (test_bin_val(ctx
) < 0)
636 /* Sets described using existentially quantified variables that
637 * can also be described without.
639 static const char *elimination_tests
[] = {
640 "{ [i,j] : 2 * [i/2] + 3 * [j/4] <= 10 and 2 i = j }",
641 "{ [m, w] : exists a : w - 2m - 5 <= 3a <= m - 2w }",
642 "{ [m, w] : exists a : w >= 0 and a < m and -1 + w <= a <= 2m - w }",
645 /* Check that redundant existentially quantified variables are
648 static int test_elimination(isl_ctx
*ctx
)
654 for (i
= 0; i
< ARRAY_SIZE(elimination_tests
); ++i
) {
655 bset
= isl_basic_set_read_from_str(ctx
, elimination_tests
[i
]);
656 n
= isl_basic_set_dim(bset
, isl_dim_div
);
657 isl_basic_set_free(bset
);
661 isl_die(ctx
, isl_error_unknown
,
662 "expecting no existentials", return -1);
668 static int test_div(isl_ctx
*ctx
)
676 struct isl_basic_set
*bset
;
677 struct isl_constraint
*c
;
682 dim
= isl_space_set_alloc(ctx
, 0, 3);
683 bset
= isl_basic_set_universe(isl_space_copy(dim
));
684 ls
= isl_local_space_from_space(dim
);
686 c
= isl_constraint_alloc_equality(isl_local_space_copy(ls
));
687 isl_int_set_si(v
, -1);
688 isl_constraint_set_constant(c
, v
);
689 isl_int_set_si(v
, 1);
690 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
691 isl_int_set_si(v
, 3);
692 isl_constraint_set_coefficient(c
, isl_dim_set
, 1, v
);
693 bset
= isl_basic_set_add_constraint(bset
, c
);
695 c
= isl_constraint_alloc_equality(isl_local_space_copy(ls
));
696 isl_int_set_si(v
, 1);
697 isl_constraint_set_constant(c
, v
);
698 isl_int_set_si(v
, -1);
699 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
700 isl_int_set_si(v
, 3);
701 isl_constraint_set_coefficient(c
, isl_dim_set
, 2, v
);
702 bset
= isl_basic_set_add_constraint(bset
, c
);
704 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 1, 2);
706 assert(bset
&& bset
->n_div
== 1);
707 isl_local_space_free(ls
);
708 isl_basic_set_free(bset
);
711 dim
= isl_space_set_alloc(ctx
, 0, 3);
712 bset
= isl_basic_set_universe(isl_space_copy(dim
));
713 ls
= isl_local_space_from_space(dim
);
715 c
= isl_constraint_alloc_equality(isl_local_space_copy(ls
));
716 isl_int_set_si(v
, 1);
717 isl_constraint_set_constant(c
, v
);
718 isl_int_set_si(v
, -1);
719 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
720 isl_int_set_si(v
, 3);
721 isl_constraint_set_coefficient(c
, isl_dim_set
, 1, v
);
722 bset
= isl_basic_set_add_constraint(bset
, c
);
724 c
= isl_constraint_alloc_equality(isl_local_space_copy(ls
));
725 isl_int_set_si(v
, -1);
726 isl_constraint_set_constant(c
, v
);
727 isl_int_set_si(v
, 1);
728 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
729 isl_int_set_si(v
, 3);
730 isl_constraint_set_coefficient(c
, isl_dim_set
, 2, v
);
731 bset
= isl_basic_set_add_constraint(bset
, c
);
733 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 1, 2);
735 assert(bset
&& bset
->n_div
== 1);
736 isl_local_space_free(ls
);
737 isl_basic_set_free(bset
);
740 dim
= isl_space_set_alloc(ctx
, 0, 3);
741 bset
= isl_basic_set_universe(isl_space_copy(dim
));
742 ls
= isl_local_space_from_space(dim
);
744 c
= isl_constraint_alloc_equality(isl_local_space_copy(ls
));
745 isl_int_set_si(v
, 1);
746 isl_constraint_set_constant(c
, v
);
747 isl_int_set_si(v
, -1);
748 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
749 isl_int_set_si(v
, 3);
750 isl_constraint_set_coefficient(c
, isl_dim_set
, 1, v
);
751 bset
= isl_basic_set_add_constraint(bset
, c
);
753 c
= isl_constraint_alloc_equality(isl_local_space_copy(ls
));
754 isl_int_set_si(v
, -3);
755 isl_constraint_set_constant(c
, v
);
756 isl_int_set_si(v
, 1);
757 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
758 isl_int_set_si(v
, 4);
759 isl_constraint_set_coefficient(c
, isl_dim_set
, 2, v
);
760 bset
= isl_basic_set_add_constraint(bset
, c
);
762 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 1, 2);
764 assert(bset
&& bset
->n_div
== 1);
765 isl_local_space_free(ls
);
766 isl_basic_set_free(bset
);
769 dim
= isl_space_set_alloc(ctx
, 0, 3);
770 bset
= isl_basic_set_universe(isl_space_copy(dim
));
771 ls
= isl_local_space_from_space(dim
);
773 c
= isl_constraint_alloc_equality(isl_local_space_copy(ls
));
774 isl_int_set_si(v
, 2);
775 isl_constraint_set_constant(c
, v
);
776 isl_int_set_si(v
, -1);
777 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
778 isl_int_set_si(v
, 3);
779 isl_constraint_set_coefficient(c
, isl_dim_set
, 1, v
);
780 bset
= isl_basic_set_add_constraint(bset
, c
);
782 c
= isl_constraint_alloc_equality(isl_local_space_copy(ls
));
783 isl_int_set_si(v
, -1);
784 isl_constraint_set_constant(c
, v
);
785 isl_int_set_si(v
, 1);
786 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
787 isl_int_set_si(v
, 6);
788 isl_constraint_set_coefficient(c
, isl_dim_set
, 2, v
);
789 bset
= isl_basic_set_add_constraint(bset
, c
);
791 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 1, 2);
793 assert(isl_basic_set_is_empty(bset
));
794 isl_local_space_free(ls
);
795 isl_basic_set_free(bset
);
798 dim
= isl_space_set_alloc(ctx
, 0, 3);
799 bset
= isl_basic_set_universe(isl_space_copy(dim
));
800 ls
= isl_local_space_from_space(dim
);
802 c
= isl_constraint_alloc_equality(isl_local_space_copy(ls
));
803 isl_int_set_si(v
, -1);
804 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
805 isl_int_set_si(v
, 3);
806 isl_constraint_set_coefficient(c
, isl_dim_set
, 2, v
);
807 bset
= isl_basic_set_add_constraint(bset
, c
);
809 c
= isl_constraint_alloc_equality(isl_local_space_copy(ls
));
810 isl_int_set_si(v
, 1);
811 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
812 isl_int_set_si(v
, -3);
813 isl_constraint_set_coefficient(c
, isl_dim_set
, 1, v
);
814 bset
= isl_basic_set_add_constraint(bset
, c
);
816 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 2, 1);
818 assert(bset
&& bset
->n_div
== 0);
819 isl_basic_set_free(bset
);
820 isl_local_space_free(ls
);
823 dim
= isl_space_set_alloc(ctx
, 0, 3);
824 bset
= isl_basic_set_universe(isl_space_copy(dim
));
825 ls
= isl_local_space_from_space(dim
);
827 c
= isl_constraint_alloc_equality(isl_local_space_copy(ls
));
828 isl_int_set_si(v
, -1);
829 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
830 isl_int_set_si(v
, 6);
831 isl_constraint_set_coefficient(c
, isl_dim_set
, 2, v
);
832 bset
= isl_basic_set_add_constraint(bset
, c
);
834 c
= isl_constraint_alloc_equality(isl_local_space_copy(ls
));
835 isl_int_set_si(v
, 1);
836 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
837 isl_int_set_si(v
, -3);
838 isl_constraint_set_coefficient(c
, isl_dim_set
, 1, v
);
839 bset
= isl_basic_set_add_constraint(bset
, c
);
841 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 2, 1);
843 assert(bset
&& bset
->n_div
== 1);
844 isl_basic_set_free(bset
);
845 isl_local_space_free(ls
);
848 /* This test is a bit tricky. We set up an equality
850 * Normalization of divs creates _two_ divs
853 * Afterwards e0 is removed again because it has coefficient -1
854 * and we end up with the original equality and div again.
855 * Perhaps we can avoid the introduction of this temporary div.
857 dim
= isl_space_set_alloc(ctx
, 0, 4);
858 bset
= isl_basic_set_universe(isl_space_copy(dim
));
859 ls
= isl_local_space_from_space(dim
);
861 c
= isl_constraint_alloc_equality(isl_local_space_copy(ls
));
862 isl_int_set_si(v
, -1);
863 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
864 isl_int_set_si(v
, -3);
865 isl_constraint_set_coefficient(c
, isl_dim_set
, 1, v
);
866 isl_int_set_si(v
, -3);
867 isl_constraint_set_coefficient(c
, isl_dim_set
, 2, v
);
868 isl_int_set_si(v
, 6);
869 isl_constraint_set_coefficient(c
, isl_dim_set
, 3, v
);
870 bset
= isl_basic_set_add_constraint(bset
, c
);
872 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 3, 1);
874 /* Test disabled for now */
876 assert(bset && bset->n_div == 1);
878 isl_local_space_free(ls
);
879 isl_basic_set_free(bset
);
882 dim
= isl_space_set_alloc(ctx
, 0, 5);
883 bset
= isl_basic_set_universe(isl_space_copy(dim
));
884 ls
= isl_local_space_from_space(dim
);
886 c
= isl_constraint_alloc_equality(isl_local_space_copy(ls
));
887 isl_int_set_si(v
, -1);
888 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
889 isl_int_set_si(v
, -3);
890 isl_constraint_set_coefficient(c
, isl_dim_set
, 1, v
);
891 isl_int_set_si(v
, -3);
892 isl_constraint_set_coefficient(c
, isl_dim_set
, 3, v
);
893 isl_int_set_si(v
, 6);
894 isl_constraint_set_coefficient(c
, isl_dim_set
, 4, v
);
895 bset
= isl_basic_set_add_constraint(bset
, c
);
897 c
= isl_constraint_alloc_equality(isl_local_space_copy(ls
));
898 isl_int_set_si(v
, -1);
899 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
900 isl_int_set_si(v
, 1);
901 isl_constraint_set_coefficient(c
, isl_dim_set
, 2, v
);
902 isl_int_set_si(v
, 1);
903 isl_constraint_set_constant(c
, v
);
904 bset
= isl_basic_set_add_constraint(bset
, c
);
906 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 4, 1);
908 /* Test disabled for now */
910 assert(bset && bset->n_div == 1);
912 isl_local_space_free(ls
);
913 isl_basic_set_free(bset
);
916 dim
= isl_space_set_alloc(ctx
, 0, 4);
917 bset
= isl_basic_set_universe(isl_space_copy(dim
));
918 ls
= isl_local_space_from_space(dim
);
920 c
= isl_constraint_alloc_equality(isl_local_space_copy(ls
));
921 isl_int_set_si(v
, 1);
922 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
923 isl_int_set_si(v
, -1);
924 isl_constraint_set_coefficient(c
, isl_dim_set
, 1, v
);
925 isl_int_set_si(v
, -2);
926 isl_constraint_set_coefficient(c
, isl_dim_set
, 2, v
);
927 bset
= isl_basic_set_add_constraint(bset
, c
);
929 c
= isl_constraint_alloc_equality(isl_local_space_copy(ls
));
930 isl_int_set_si(v
, -1);
931 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
932 isl_int_set_si(v
, 3);
933 isl_constraint_set_coefficient(c
, isl_dim_set
, 3, v
);
934 isl_int_set_si(v
, 2);
935 isl_constraint_set_constant(c
, v
);
936 bset
= isl_basic_set_add_constraint(bset
, c
);
938 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 2, 2);
940 bset
= isl_basic_set_fix_si(bset
, isl_dim_set
, 0, 2);
942 assert(!isl_basic_set_is_empty(bset
));
944 isl_local_space_free(ls
);
945 isl_basic_set_free(bset
);
948 dim
= isl_space_set_alloc(ctx
, 0, 3);
949 bset
= isl_basic_set_universe(isl_space_copy(dim
));
950 ls
= isl_local_space_from_space(dim
);
952 c
= isl_constraint_alloc_equality(isl_local_space_copy(ls
));
953 isl_int_set_si(v
, 1);
954 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
955 isl_int_set_si(v
, -2);
956 isl_constraint_set_coefficient(c
, isl_dim_set
, 2, v
);
957 bset
= isl_basic_set_add_constraint(bset
, c
);
959 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 2, 1);
961 bset
= isl_basic_set_fix_si(bset
, isl_dim_set
, 0, 2);
963 isl_local_space_free(ls
);
964 isl_basic_set_free(bset
);
968 str
= "{ [i] : exists (e0, e1: 3e1 >= 1 + 2e0 and "
969 "8e1 <= -1 + 5i - 5e0 and 2e1 >= 1 + 2i - 5e0) }";
970 set
= isl_set_read_from_str(ctx
, str
);
971 set
= isl_set_compute_divs(set
);
976 if (test_elimination(ctx
) < 0)
979 str
= "{ [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }";
980 set
= isl_set_read_from_str(ctx
, str
);
981 set
= isl_set_remove_divs_involving_dims(set
, isl_dim_set
, 0, 2);
982 set
= isl_set_fix_si(set
, isl_dim_set
, 2, -3);
983 empty
= isl_set_is_empty(set
);
988 isl_die(ctx
, isl_error_unknown
,
989 "result not as accurate as expected", return -1);
994 void test_application_case(struct isl_ctx
*ctx
, const char *name
)
998 struct isl_basic_set
*bset1
, *bset2
;
999 struct isl_basic_map
*bmap
;
1001 filename
= get_filename(ctx
, name
, "omega");
1003 input
= fopen(filename
, "r");
1006 bset1
= isl_basic_set_read_from_file(ctx
, input
);
1007 bmap
= isl_basic_map_read_from_file(ctx
, input
);
1009 bset1
= isl_basic_set_apply(bset1
, bmap
);
1011 bset2
= isl_basic_set_read_from_file(ctx
, input
);
1013 assert(isl_basic_set_is_equal(bset1
, bset2
) == 1);
1015 isl_basic_set_free(bset1
);
1016 isl_basic_set_free(bset2
);
1022 static int test_application(isl_ctx
*ctx
)
1024 test_application_case(ctx
, "application");
1025 test_application_case(ctx
, "application2");
1030 void test_affine_hull_case(struct isl_ctx
*ctx
, const char *name
)
1034 struct isl_basic_set
*bset1
, *bset2
;
1036 filename
= get_filename(ctx
, name
, "polylib");
1038 input
= fopen(filename
, "r");
1041 bset1
= isl_basic_set_read_from_file(ctx
, input
);
1042 bset2
= isl_basic_set_read_from_file(ctx
, input
);
1044 bset1
= isl_basic_set_affine_hull(bset1
);
1046 assert(isl_basic_set_is_equal(bset1
, bset2
) == 1);
1048 isl_basic_set_free(bset1
);
1049 isl_basic_set_free(bset2
);
1055 int test_affine_hull(struct isl_ctx
*ctx
)
1059 isl_basic_set
*bset
, *bset2
;
1063 test_affine_hull_case(ctx
, "affine2");
1064 test_affine_hull_case(ctx
, "affine");
1065 test_affine_hull_case(ctx
, "affine3");
1067 str
= "[m] -> { [i0] : exists (e0, e1: e1 <= 1 + i0 and "
1068 "m >= 3 and 4i0 <= 2 + m and e1 >= i0 and "
1069 "e1 >= 0 and e1 <= 2 and e1 >= 1 + 2e0 and "
1070 "2e1 <= 1 + m + 4e0 and 2e1 >= 2 - m + 4i0 - 4e0) }";
1071 set
= isl_set_read_from_str(ctx
, str
);
1072 bset
= isl_set_affine_hull(set
);
1073 n
= isl_basic_set_dim(bset
, isl_dim_div
);
1074 isl_basic_set_free(bset
);
1076 isl_die(ctx
, isl_error_unknown
, "not expecting any divs",
1079 /* Check that isl_map_affine_hull is not confused by
1080 * the reordering of divs in isl_map_align_divs.
1082 str
= "{ [a, b, c, 0] : exists (e0 = [(b)/32], e1 = [(c)/32]: "
1083 "32e0 = b and 32e1 = c); "
1084 "[a, 0, c, 0] : exists (e0 = [(c)/32]: 32e0 = c) }";
1085 set
= isl_set_read_from_str(ctx
, str
);
1086 bset
= isl_set_affine_hull(set
);
1087 isl_basic_set_free(bset
);
1091 str
= "{ [a] : exists e0, e1, e2: 32e1 = 31 + 31a + 31e0 and "
1092 "32e2 = 31 + 31e0 }";
1093 set
= isl_set_read_from_str(ctx
, str
);
1094 bset
= isl_set_affine_hull(set
);
1095 str
= "{ [a] : exists e : a = 32 e }";
1096 bset2
= isl_basic_set_read_from_str(ctx
, str
);
1097 subset
= isl_basic_set_is_subset(bset
, bset2
);
1098 isl_basic_set_free(bset
);
1099 isl_basic_set_free(bset2
);
1103 isl_die(ctx
, isl_error_unknown
, "not as accurate as expected",
1109 /* Pairs of maps and the corresponding expected results of
1110 * isl_map_plain_unshifted_simple_hull.
1115 } plain_unshifted_simple_hull_tests
[] = {
1116 { "{ [i] -> [j] : i >= 1 and j >= 1 or i >= 2 and j <= 10 }",
1117 "{ [i] -> [j] : i >= 1 }" },
1118 { "{ [n] -> [i,j,k] : (i mod 3 = 2 and j mod 4 = 2) or "
1119 "(j mod 4 = 2 and k mod 6 = n) }",
1120 "{ [n] -> [i,j,k] : j mod 4 = 2 }" },
1123 /* Basic tests for isl_map_plain_unshifted_simple_hull.
1125 static int test_plain_unshifted_simple_hull(isl_ctx
*ctx
)
1129 isl_basic_map
*hull
, *expected
;
1132 for (i
= 0; i
< ARRAY_SIZE(plain_unshifted_simple_hull_tests
); ++i
) {
1134 str
= plain_unshifted_simple_hull_tests
[i
].map
;
1135 map
= isl_map_read_from_str(ctx
, str
);
1136 str
= plain_unshifted_simple_hull_tests
[i
].hull
;
1137 expected
= isl_basic_map_read_from_str(ctx
, str
);
1138 hull
= isl_map_plain_unshifted_simple_hull(map
);
1139 equal
= isl_basic_map_is_equal(hull
, expected
);
1140 isl_basic_map_free(hull
);
1141 isl_basic_map_free(expected
);
1145 isl_die(ctx
, isl_error_unknown
, "unexpected hull",
1152 /* Pairs of sets and the corresponding expected results of
1153 * isl_set_unshifted_simple_hull.
1158 } unshifted_simple_hull_tests
[] = {
1159 { "{ [0,x,y] : x <= -1; [1,x,y] : x <= y <= -x; [2,x,y] : x <= 1 }",
1160 "{ [t,x,y] : 0 <= t <= 2 and x <= 1 }" },
1163 /* Basic tests for isl_set_unshifted_simple_hull.
1165 static int test_unshifted_simple_hull(isl_ctx
*ctx
)
1169 isl_basic_set
*hull
, *expected
;
1172 for (i
= 0; i
< ARRAY_SIZE(unshifted_simple_hull_tests
); ++i
) {
1174 str
= unshifted_simple_hull_tests
[i
].set
;
1175 set
= isl_set_read_from_str(ctx
, str
);
1176 str
= unshifted_simple_hull_tests
[i
].hull
;
1177 expected
= isl_basic_set_read_from_str(ctx
, str
);
1178 hull
= isl_set_unshifted_simple_hull(set
);
1179 equal
= isl_basic_set_is_equal(hull
, expected
);
1180 isl_basic_set_free(hull
);
1181 isl_basic_set_free(expected
);
1185 isl_die(ctx
, isl_error_unknown
, "unexpected hull",
1192 static int test_simple_hull(struct isl_ctx
*ctx
)
1196 isl_basic_set
*bset
;
1199 str
= "{ [x, y] : 3y <= 2x and y >= -2 + 2x and 2y >= 2 - x;"
1200 "[y, x] : 3y <= 2x and y >= -2 + 2x and 2y >= 2 - x }";
1201 set
= isl_set_read_from_str(ctx
, str
);
1202 bset
= isl_set_simple_hull(set
);
1203 is_empty
= isl_basic_set_is_empty(bset
);
1204 isl_basic_set_free(bset
);
1206 if (is_empty
== isl_bool_error
)
1209 if (is_empty
== isl_bool_false
)
1210 isl_die(ctx
, isl_error_unknown
, "Empty set should be detected",
1213 if (test_plain_unshifted_simple_hull(ctx
) < 0)
1215 if (test_unshifted_simple_hull(ctx
) < 0)
1221 void test_convex_hull_case(struct isl_ctx
*ctx
, const char *name
)
1225 struct isl_basic_set
*bset1
, *bset2
;
1226 struct isl_set
*set
;
1228 filename
= get_filename(ctx
, name
, "polylib");
1230 input
= fopen(filename
, "r");
1233 bset1
= isl_basic_set_read_from_file(ctx
, input
);
1234 bset2
= isl_basic_set_read_from_file(ctx
, input
);
1236 set
= isl_basic_set_union(bset1
, bset2
);
1237 bset1
= isl_set_convex_hull(set
);
1239 bset2
= isl_basic_set_read_from_file(ctx
, input
);
1241 assert(isl_basic_set_is_equal(bset1
, bset2
) == 1);
1243 isl_basic_set_free(bset1
);
1244 isl_basic_set_free(bset2
);
1253 } convex_hull_tests
[] = {
1254 { "{ [i0, i1, i2] : (i2 = 1 and i0 = 0 and i1 >= 0) or "
1255 "(i0 = 1 and i1 = 0 and i2 = 1) or "
1256 "(i0 = 0 and i1 = 0 and i2 = 0) }",
1257 "{ [i0, i1, i2] : i0 >= 0 and i2 >= i0 and i2 <= 1 and i1 >= 0 }" },
1258 { "[n] -> { [i0, i1, i0] : i0 <= -4 + n; "
1259 "[i0, i0, i2] : n = 6 and i0 >= 0 and i2 <= 7 - i0 and "
1260 "i2 <= 5 and i2 >= 4; "
1261 "[3, i1, 3] : n = 5 and i1 <= 2 and i1 >= 0 }",
1262 "[n] -> { [i0, i1, i2] : i2 <= -1 + n and 2i2 <= -6 + 3n - i0 and "
1263 "i2 <= 5 + i0 and i2 >= i0 }" },
1264 { "{ [x, y] : 3y <= 2x and y >= -2 + 2x and 2y >= 2 - x }",
1265 "{ [x, y] : 1 = 0 }" },
1266 { "{ [x, y, z] : 0 <= x, y, z <= 10; [x, y, 0] : x >= 0 and y > 0; "
1267 "[x, y, 0] : x >= 0 and y < 0 }",
1268 "{ [x, y, z] : x >= 0 and 0 <= z <= 10 }" },
1271 static int test_convex_hull_algo(isl_ctx
*ctx
, int convex
)
1274 int orig_convex
= ctx
->opt
->convex
;
1275 ctx
->opt
->convex
= convex
;
1277 test_convex_hull_case(ctx
, "convex0");
1278 test_convex_hull_case(ctx
, "convex1");
1279 test_convex_hull_case(ctx
, "convex2");
1280 test_convex_hull_case(ctx
, "convex3");
1281 test_convex_hull_case(ctx
, "convex4");
1282 test_convex_hull_case(ctx
, "convex5");
1283 test_convex_hull_case(ctx
, "convex6");
1284 test_convex_hull_case(ctx
, "convex7");
1285 test_convex_hull_case(ctx
, "convex8");
1286 test_convex_hull_case(ctx
, "convex9");
1287 test_convex_hull_case(ctx
, "convex10");
1288 test_convex_hull_case(ctx
, "convex11");
1289 test_convex_hull_case(ctx
, "convex12");
1290 test_convex_hull_case(ctx
, "convex13");
1291 test_convex_hull_case(ctx
, "convex14");
1292 test_convex_hull_case(ctx
, "convex15");
1294 for (i
= 0; i
< ARRAY_SIZE(convex_hull_tests
); ++i
) {
1295 isl_set
*set1
, *set2
;
1298 set1
= isl_set_read_from_str(ctx
, convex_hull_tests
[i
].set
);
1299 set2
= isl_set_read_from_str(ctx
, convex_hull_tests
[i
].hull
);
1300 set1
= isl_set_from_basic_set(isl_set_convex_hull(set1
));
1301 equal
= isl_set_is_equal(set1
, set2
);
1308 isl_die(ctx
, isl_error_unknown
,
1309 "unexpected convex hull", return -1);
1312 ctx
->opt
->convex
= orig_convex
;
1317 static int test_convex_hull(isl_ctx
*ctx
)
1319 if (test_convex_hull_algo(ctx
, ISL_CONVEX_HULL_FM
) < 0)
1321 if (test_convex_hull_algo(ctx
, ISL_CONVEX_HULL_WRAP
) < 0)
1326 void test_gist_case(struct isl_ctx
*ctx
, const char *name
)
1330 struct isl_basic_set
*bset1
, *bset2
;
1332 filename
= get_filename(ctx
, name
, "polylib");
1334 input
= fopen(filename
, "r");
1337 bset1
= isl_basic_set_read_from_file(ctx
, input
);
1338 bset2
= isl_basic_set_read_from_file(ctx
, input
);
1340 bset1
= isl_basic_set_gist(bset1
, bset2
);
1342 bset2
= isl_basic_set_read_from_file(ctx
, input
);
1344 assert(isl_basic_set_is_equal(bset1
, bset2
) == 1);
1346 isl_basic_set_free(bset1
);
1347 isl_basic_set_free(bset2
);
1353 /* Inputs to isl_map_plain_gist_basic_map, along with the expected output.
1357 const char *context
;
1359 } plain_gist_tests
[] = {
1360 { "{ [i] -> [j] : i >= 1 and j >= 1 or i >= 2 and j <= 10 }",
1361 "{ [i] -> [j] : i >= 1 }",
1362 "{ [i] -> [j] : j >= 1 or i >= 2 and j <= 10 }" },
1363 { "{ [n] -> [i,j,k] : (i mod 3 = 2 and j mod 4 = 2) or "
1364 "(j mod 4 = 2 and k mod 6 = n) }",
1365 "{ [n] -> [i,j,k] : j mod 4 = 2 }",
1366 "{ [n] -> [i,j,k] : (i mod 3 = 2) or (k mod 6 = n) }" },
1367 { "{ [i] -> [j] : i > j and (exists a,b : i <= 2a + 5b <= 2) }",
1368 "{ [i] -> [j] : i > j }",
1369 "{ [i] -> [j] : exists a,b : i <= 2a + 5b <= 2 }" },
1372 /* Basic tests for isl_map_plain_gist_basic_map.
1374 static int test_plain_gist(isl_ctx
*ctx
)
1378 for (i
= 0; i
< ARRAY_SIZE(plain_gist_tests
); ++i
) {
1381 isl_map
*map
, *gist
;
1382 isl_basic_map
*context
;
1384 map
= isl_map_read_from_str(ctx
, plain_gist_tests
[i
].map
);
1385 str
= plain_gist_tests
[i
].context
;
1386 context
= isl_basic_map_read_from_str(ctx
, str
);
1387 map
= isl_map_plain_gist_basic_map(map
, context
);
1388 gist
= isl_map_read_from_str(ctx
, plain_gist_tests
[i
].gist
);
1389 equal
= isl_map_is_equal(map
, gist
);
1395 isl_die(ctx
, isl_error_unknown
,
1396 "incorrect gist result", return -1);
1404 const char *context
;
1407 { "{ [a, b, c] : a <= 15 and a >= 1 }",
1408 "{ [a, b, c] : exists (e0 = floor((-1 + a)/16): a >= 1 and "
1409 "c <= 30 and 32e0 >= -62 + 2a + 2b - c and b >= 0) }",
1410 "{ [a, b, c] : a <= 15 }" },
1411 { "{ : }", "{ : 1 = 0 }", "{ : }" },
1412 { "{ : 1 = 0 }", "{ : 1 = 0 }", "{ : }" },
1413 { "[M] -> { [x] : exists (e0 = floor((-2 + x)/3): 3e0 = -2 + x) }",
1414 "[M] -> { [3M] }" , "[M] -> { [x] : 1 = 0 }" },
1415 { "{ [m, n, a, b] : a <= 2147 + n }",
1416 "{ [m, n, a, b] : (m >= 1 and n >= 1 and a <= 2148 - m and "
1417 "b <= 2148 - n and b >= 0 and b >= 2149 - n - a) or "
1418 "(n >= 1 and a >= 0 and b <= 2148 - n - a and "
1420 "{ [m, n, ku, kl] }" },
1421 { "{ [a, a, b] : a >= 10 }",
1422 "{ [a, b, c] : c >= a and c <= b and c >= 2 }",
1423 "{ [a, a, b] : a >= 10 }" },
1424 { "{ [i, j] : i >= 0 and i + j >= 0 }", "{ [i, j] : i <= 0 }",
1425 "{ [0, j] : j >= 0 }" },
1426 /* Check that no constraints on i6 are introduced in the gist */
1427 { "[t1] -> { [i4, i6] : exists (e0 = floor((1530 - 4t1 - 5i4)/20): "
1428 "20e0 <= 1530 - 4t1 - 5i4 and 20e0 >= 1511 - 4t1 - 5i4 and "
1429 "5e0 <= 381 - t1 and i4 <= 1) }",
1430 "[t1] -> { [i4, i6] : exists (e0 = floor((-t1 + i6)/5): "
1431 "5e0 = -t1 + i6 and i6 <= 6 and i6 >= 3) }",
1432 "[t1] -> { [i4, i6] : exists (e0 = floor((1530 - 4t1 - 5i4)/20): "
1433 "i4 <= 1 and 5e0 <= 381 - t1 and 20e0 <= 1530 - 4t1 - 5i4 and "
1434 "20e0 >= 1511 - 4t1 - 5i4) }" },
1435 /* Check that no constraints on i6 are introduced in the gist */
1436 { "[t1, t2] -> { [i4, i5, i6] : exists (e0 = floor((1 + i4)/2), "
1437 "e1 = floor((1530 - 4t1 - 5i4)/20), "
1438 "e2 = floor((-4t1 - 5i4 + 10*floor((1 + i4)/2))/20), "
1439 "e3 = floor((-1 + i4)/2): t2 = 0 and 2e3 = -1 + i4 and "
1440 "20e2 >= -19 - 4t1 - 5i4 + 10e0 and 5e2 <= 1 - t1 and "
1441 "2e0 <= 1 + i4 and 2e0 >= i4 and "
1442 "20e1 <= 1530 - 4t1 - 5i4 and "
1443 "20e1 >= 1511 - 4t1 - 5i4 and i4 <= 1 and "
1444 "5e1 <= 381 - t1 and 20e2 <= -4t1 - 5i4 + 10e0) }",
1445 "[t1, t2] -> { [i4, i5, i6] : exists (e0 = floor((-17 + i4)/2), "
1446 "e1 = floor((-t1 + i6)/5): 5e1 = -t1 + i6 and "
1447 "2e0 <= -17 + i4 and 2e0 >= -18 + i4 and "
1448 "10e0 <= -91 + 5i4 + 4i6 and "
1449 "10e0 >= -105 + 5i4 + 4i6) }",
1450 "[t1, t2] -> { [i4, i5, i6] : exists (e0 = floor((381 - t1)/5), "
1451 "e1 = floor((-1 + i4)/2): t2 = 0 and 2e1 = -1 + i4 and "
1452 "i4 <= 1 and 5e0 <= 381 - t1 and 20e0 >= 1511 - 4t1 - 5i4) }" },
1453 { "{ [0, 0, q, p] : -5 <= q <= 5 and p >= 0 }",
1454 "{ [a, b, q, p] : b >= 1 + a }",
1455 "{ [a, b, q, p] : false }" },
1456 { "[n] -> { [x] : x = n && x mod 32 = 0 }",
1457 "[n] -> { [x] : x mod 32 = 0 }",
1458 "[n] -> { [x = n] }" },
1459 { "{ [x] : x mod 6 = 0 }", "{ [x] : x mod 3 = 0 }",
1460 "{ [x] : x mod 2 = 0 }" },
1461 { "{ [x] : x mod 3200 = 0 }", "{ [x] : x mod 10000 = 0 }",
1462 "{ [x] : x mod 128 = 0 }" },
1463 { "{ [x] : x mod 3200 = 0 }", "{ [x] : x mod 10 = 0 }",
1464 "{ [x] : x mod 3200 = 0 }" },
1465 { "{ [a, b, c] : a mod 2 = 0 and a = c }",
1466 "{ [a, b, c] : b mod 2 = 0 and b = c }",
1467 "{ [a, b, c = a] }" },
1468 { "{ [a, b, c] : a mod 6 = 0 and a = c }",
1469 "{ [a, b, c] : b mod 2 = 0 and b = c }",
1470 "{ [a, b, c = a] : a mod 3 = 0 }" },
1471 { "{ [x] : 0 <= x <= 4 or 6 <= x <= 9 }",
1472 "{ [x] : 1 <= x <= 3 or 7 <= x <= 8 }",
1474 { "{ [x,y] : x < 0 and 0 <= y <= 4 or x >= -2 and -x <= y <= 10 + x }",
1475 "{ [x,y] : 1 <= y <= 3 }",
1479 /* Check that isl_set_gist behaves as expected.
1481 * For the test cases in gist_tests, besides checking that the result
1482 * is as expected, also check that applying the gist operation does
1483 * not modify the input set (an earlier version of isl would do that) and
1484 * that the test case is consistent, i.e., that the gist has the same
1485 * intersection with the context as the input set.
1487 static int test_gist(struct isl_ctx
*ctx
)
1491 isl_basic_set
*bset1
, *bset2
;
1492 isl_map
*map1
, *map2
;
1495 for (i
= 0; i
< ARRAY_SIZE(gist_tests
); ++i
) {
1496 int equal_input
, equal_intersection
;
1497 isl_set
*set1
, *set2
, *copy
, *context
;
1499 set1
= isl_set_read_from_str(ctx
, gist_tests
[i
].set
);
1500 context
= isl_set_read_from_str(ctx
, gist_tests
[i
].context
);
1501 copy
= isl_set_copy(set1
);
1502 set1
= isl_set_gist(set1
, isl_set_copy(context
));
1503 set2
= isl_set_read_from_str(ctx
, gist_tests
[i
].gist
);
1504 equal
= isl_set_is_equal(set1
, set2
);
1506 set1
= isl_set_read_from_str(ctx
, gist_tests
[i
].set
);
1507 equal_input
= isl_set_is_equal(set1
, copy
);
1509 set1
= isl_set_intersect(set1
, isl_set_copy(context
));
1510 set2
= isl_set_intersect(set2
, context
);
1511 equal_intersection
= isl_set_is_equal(set1
, set2
);
1514 if (equal
< 0 || equal_input
< 0 || equal_intersection
< 0)
1517 isl_die(ctx
, isl_error_unknown
,
1518 "incorrect gist result", return -1);
1520 isl_die(ctx
, isl_error_unknown
,
1521 "gist modified input", return -1);
1523 isl_die(ctx
, isl_error_unknown
,
1524 "inconsistent gist test case", return -1);
1527 test_gist_case(ctx
, "gist1");
1529 str
= "[p0, p2, p3, p5, p6, p10] -> { [] : "
1530 "exists (e0 = [(15 + p0 + 15p6 + 15p10)/16], e1 = [(p5)/8], "
1531 "e2 = [(p6)/128], e3 = [(8p2 - p5)/128], "
1532 "e4 = [(128p3 - p6)/4096]: 8e1 = p5 and 128e2 = p6 and "
1533 "128e3 = 8p2 - p5 and 4096e4 = 128p3 - p6 and p2 >= 0 and "
1534 "16e0 >= 16 + 16p6 + 15p10 and p2 <= 15 and p3 >= 0 and "
1535 "p3 <= 31 and p6 >= 128p3 and p5 >= 8p2 and p10 >= 0 and "
1536 "16e0 <= 15 + p0 + 15p6 + 15p10 and 16e0 >= p0 + 15p6 + 15p10 and "
1537 "p10 <= 15 and p10 <= -1 + p0 - p6) }";
1538 bset1
= isl_basic_set_read_from_str(ctx
, str
);
1539 str
= "[p0, p2, p3, p5, p6, p10] -> { [] : exists (e0 = [(p5)/8], "
1540 "e1 = [(p6)/128], e2 = [(8p2 - p5)/128], "
1541 "e3 = [(128p3 - p6)/4096]: 8e0 = p5 and 128e1 = p6 and "
1542 "128e2 = 8p2 - p5 and 4096e3 = 128p3 - p6 and p5 >= -7 and "
1543 "p2 >= 0 and 8p2 <= -1 + p0 and p2 <= 15 and p3 >= 0 and "
1544 "p3 <= 31 and 128p3 <= -1 + p0 and p6 >= -127 and "
1545 "p5 <= -1 + p0 and p6 <= -1 + p0 and p6 >= 128p3 and "
1546 "p0 >= 1 and p5 >= 8p2 and p10 >= 0 and p10 <= 15 ) }";
1547 bset2
= isl_basic_set_read_from_str(ctx
, str
);
1548 bset1
= isl_basic_set_gist(bset1
, bset2
);
1549 assert(bset1
&& bset1
->n_div
== 0);
1550 isl_basic_set_free(bset1
);
1552 /* Check that the integer divisions of the second disjunct
1553 * do not spread to the first disjunct.
1555 str
= "[t1] -> { S_0[] -> A[o0] : (exists (e0 = [(-t1 + o0)/16]: "
1556 "16e0 = -t1 + o0 and o0 >= 0 and o0 <= 15 and t1 >= 0)) or "
1557 "(exists (e0 = [(-1 + t1)/16], "
1558 "e1 = [(-16 + t1 - 16e0)/4294967296]: "
1559 "4294967296e1 = -16 + t1 - o0 - 16e0 and "
1560 "16e0 <= -1 + t1 and 16e0 >= -16 + t1 and o0 >= 0 and "
1561 "o0 <= 4294967295 and t1 <= -1)) }";
1562 map1
= isl_map_read_from_str(ctx
, str
);
1563 str
= "[t1] -> { S_0[] -> A[o0] : t1 >= 0 and t1 <= 4294967295 }";
1564 map2
= isl_map_read_from_str(ctx
, str
);
1565 map1
= isl_map_gist(map1
, map2
);
1569 isl_die(ctx
, isl_error_unknown
, "expecting single disjunct",
1570 isl_map_free(map1
); return -1);
1571 if (isl_basic_map_dim(map1
->p
[0], isl_dim_div
) != 1)
1572 isl_die(ctx
, isl_error_unknown
, "expecting single div",
1573 isl_map_free(map1
); return -1);
1576 if (test_plain_gist(ctx
) < 0)
1582 int test_coalesce_set(isl_ctx
*ctx
, const char *str
, int check_one
)
1584 isl_set
*set
, *set2
;
1588 set
= isl_set_read_from_str(ctx
, str
);
1589 set
= isl_set_coalesce(set
);
1590 set2
= isl_set_read_from_str(ctx
, str
);
1591 equal
= isl_set_is_equal(set
, set2
);
1592 one
= set
&& set
->n
== 1;
1599 isl_die(ctx
, isl_error_unknown
,
1600 "coalesced set not equal to input", return -1);
1601 if (check_one
&& !one
)
1602 isl_die(ctx
, isl_error_unknown
,
1603 "coalesced set should not be a union", return -1);
1608 /* Inputs for coalescing tests with unbounded wrapping.
1609 * "str" is a string representation of the input set.
1610 * "single_disjunct" is set if we expect the result to consist of
1611 * a single disjunct.
1614 int single_disjunct
;
1616 } coalesce_unbounded_tests
[] = {
1617 { 1, "{ [x,y,z] : y + 2 >= 0 and x - y + 1 >= 0 and "
1618 "-x - y + 1 >= 0 and -3 <= z <= 3;"
1619 "[x,y,z] : -x+z + 20 >= 0 and -x-z + 20 >= 0 and "
1620 "x-z + 20 >= 0 and x+z + 20 >= 0 and "
1622 { 1, "{ [x,y] : 0 <= x,y <= 10; [5,y]: 4 <= y <= 11 }" },
1623 { 1, "{ [x,0,0] : -5 <= x <= 5; [0,y,1] : -5 <= y <= 5 }" },
1624 { 1, "{ [x,y] : 0 <= x <= 10 and 0 >= y >= -1 and x+y >= 0; [0,1] }" },
1625 { 1, "{ [x,y] : (0 <= x,y <= 4) or (2 <= x,y <= 5 and x + y <= 9) }" },
1628 /* Test the functionality of isl_set_coalesce with the bounded wrapping
1629 * option turned off.
1631 int test_coalesce_unbounded_wrapping(isl_ctx
*ctx
)
1637 bounded
= isl_options_get_coalesce_bounded_wrapping(ctx
);
1638 isl_options_set_coalesce_bounded_wrapping(ctx
, 0);
1640 for (i
= 0; i
< ARRAY_SIZE(coalesce_unbounded_tests
); ++i
) {
1641 const char *str
= coalesce_unbounded_tests
[i
].str
;
1642 int check_one
= coalesce_unbounded_tests
[i
].single_disjunct
;
1643 if (test_coalesce_set(ctx
, str
, check_one
) >= 0)
1649 isl_options_set_coalesce_bounded_wrapping(ctx
, bounded
);
1654 /* Inputs for coalescing tests.
1655 * "str" is a string representation of the input set.
1656 * "single_disjunct" is set if we expect the result to consist of
1657 * a single disjunct.
1660 int single_disjunct
;
1662 } coalesce_tests
[] = {
1663 { 1, "{[x,y]: x >= 0 & x <= 10 & y >= 0 & y <= 10 or "
1664 "y >= x & x >= 2 & 5 >= y }" },
1665 { 1, "{[x,y]: y >= 0 & 2x + y <= 30 & y <= 10 & x >= 0 or "
1666 "x + y >= 10 & y <= x & x + y <= 20 & y >= 0}" },
1667 { 0, "{[x,y]: y >= 0 & 2x + y <= 30 & y <= 10 & x >= 0 or "
1668 "x + y >= 10 & y <= x & x + y <= 19 & y >= 0}" },
1669 { 1, "{[x,y]: y >= 0 & x <= 5 & y <= x or "
1670 "y >= 0 & x >= 6 & x <= 10 & y <= x}" },
1671 { 0, "{[x,y]: y >= 0 & x <= 5 & y <= x or "
1672 "y >= 0 & x >= 7 & x <= 10 & y <= x}" },
1673 { 0, "{[x,y]: y >= 0 & x <= 5 & y <= x or "
1674 "y >= 0 & x >= 6 & x <= 10 & y + 1 <= x}" },
1675 { 1, "{[x,y]: y >= 0 & x <= 5 & y <= x or y >= 0 & x = 6 & y <= 6}" },
1676 { 0, "{[x,y]: y >= 0 & x <= 5 & y <= x or y >= 0 & x = 7 & y <= 6}" },
1677 { 1, "{[x,y]: y >= 0 & x <= 5 & y <= x or y >= 0 & x = 6 & y <= 5}" },
1678 { 0, "{[x,y]: y >= 0 & x <= 5 & y <= x or y >= 0 & x = 6 & y <= 7}" },
1679 { 1, "[n] -> { [i] : i = 1 and n >= 2 or 2 <= i and i <= n }" },
1680 { 0, "{[x,y] : x >= 0 and y >= 0 or 0 <= y and y <= 5 and x = -1}" },
1681 { 1, "[n] -> { [i] : 1 <= i and i <= n - 1 or 2 <= i and i <= n }" },
1682 { 0, "[n] -> { [[i0] -> [o0]] : exists (e0 = [(i0)/4], e1 = [(o0)/4], "
1683 "e2 = [(n)/2], e3 = [(-2 + i0)/4], e4 = [(-2 + o0)/4], "
1684 "e5 = [(-2n + i0)/4]: 2e2 = n and 4e3 = -2 + i0 and "
1685 "4e4 = -2 + o0 and i0 >= 8 + 2n and o0 >= 2 + i0 and "
1686 "o0 <= 56 + 2n and o0 <= -12 + 4n and i0 <= 57 + 2n and "
1687 "i0 <= -11 + 4n and o0 >= 6 + 2n and 4e0 <= i0 and "
1688 "4e0 >= -3 + i0 and 4e1 <= o0 and 4e1 >= -3 + o0 and "
1689 "4e5 <= -2n + i0 and 4e5 >= -3 - 2n + i0);"
1690 "[[i0] -> [o0]] : exists (e0 = [(i0)/4], e1 = [(o0)/4], "
1691 "e2 = [(n)/2], e3 = [(-2 + i0)/4], e4 = [(-2 + o0)/4], "
1692 "e5 = [(-2n + i0)/4]: 2e2 = n and 4e3 = -2 + i0 and "
1693 "4e4 = -2 + o0 and 2e0 >= 3 + n and e0 <= -4 + n and "
1694 "2e0 <= 27 + n and e1 <= -4 + n and 2e1 <= 27 + n and "
1695 "2e1 >= 2 + n and e1 >= 1 + e0 and i0 >= 7 + 2n and "
1696 "i0 <= -11 + 4n and i0 <= 57 + 2n and 4e0 <= -2 + i0 and "
1697 "4e0 >= -3 + i0 and o0 >= 6 + 2n and o0 <= -11 + 4n and "
1698 "o0 <= 57 + 2n and 4e1 <= -2 + o0 and 4e1 >= -3 + o0 and "
1699 "4e5 <= -2n + i0 and 4e5 >= -3 - 2n + i0 ) }" },
1700 { 0, "[n, m] -> { [o0, o2, o3] : (o3 = 1 and o0 >= 1 + m and "
1701 "o0 <= n + m and o2 <= m and o0 >= 2 + n and o2 >= 3) or "
1702 "(o0 >= 2 + n and o0 >= 1 + m and o0 <= n + m and n >= 1 and "
1703 "o3 <= -1 + o2 and o3 >= 1 - m + o2 and o3 >= 2 and o3 <= n) }" },
1704 { 0, "[M, N] -> { [[i0, i1, i2, i3, i4, i5, i6] -> "
1705 "[o0, o1, o2, o3, o4, o5, o6]] : "
1706 "(o6 <= -4 + 2M - 2N + i0 + i1 - i2 + i6 - o0 - o1 + o2 and "
1707 "o3 <= -2 + i3 and o6 >= 2 + i0 + i3 + i6 - o0 - o3 and "
1708 "o6 >= 2 - M + N + i3 + i4 + i6 - o3 - o4 and o0 <= -1 + i0 and "
1709 "o4 >= 4 - 3M + 3N - i0 - i1 + i2 + 2i3 + i4 + o0 + o1 - o2 - 2o3 "
1710 "and o6 <= -3 + 2M - 2N + i3 + i4 - i5 + i6 - o3 - o4 + o5 and "
1711 "2o6 <= -5 + 5M - 5N + 2i0 + i1 - i2 - i5 + 2i6 - 2o0 - o1 + o2 + o5 "
1712 "and o6 >= 2i0 + i1 + i6 - 2o0 - o1 and "
1713 "3o6 <= -5 + 4M - 4N + 2i0 + i1 - i2 + 2i3 + i4 - i5 + 3i6 "
1714 "- 2o0 - o1 + o2 - 2o3 - o4 + o5) or "
1715 "(N >= 2 and o3 <= -1 + i3 and o0 <= -1 + i0 and "
1716 "o6 >= i3 + i6 - o3 and M >= 0 and "
1717 "2o6 >= 1 + i0 + i3 + 2i6 - o0 - o3 and "
1718 "o6 >= 1 - M + i0 + i6 - o0 and N >= 2M and o6 >= i0 + i6 - o0) }" },
1719 { 0, "[M, N] -> { [o0] : (o0 = 0 and M >= 1 and N >= 2) or "
1720 "(o0 = 0 and M >= 1 and N >= 2M and N >= 2 + M) or "
1721 "(o0 = 0 and M >= 2 and N >= 3) or "
1722 "(M = 0 and o0 = 0 and N >= 3) }" },
1723 { 0, "{ [i0, i1, i2, i3] : (i1 = 10i0 and i0 >= 1 and 10i0 <= 100 and "
1724 "i3 <= 9 + 10 i2 and i3 >= 1 + 10i2 and i3 >= 0) or "
1725 "(i1 <= 9 + 10i0 and i1 >= 1 + 10i0 and i2 >= 0 and "
1726 "i0 >= 0 and i1 <= 100 and i3 <= 9 + 10i2 and i3 >= 1 + 10i2) }" },
1727 { 0, "[M] -> { [i1] : (i1 >= 2 and i1 <= M) or (i1 = M and M >= 1) }" },
1728 { 0, "{[x,y] : x,y >= 0; [x,y] : 10 <= x <= 20 and y >= -1 }" },
1729 { 1, "{ [x, y] : (x >= 1 and y >= 1 and x <= 2 and y <= 2) or "
1730 "(y = 3 and x = 1) }" },
1731 { 1, "[M] -> { [i0, i1, i2, i3, i4] : (i1 >= 3 and i4 >= 2 + i2 and "
1732 "i2 >= 2 and i0 >= 2 and i3 >= 1 + i2 and i0 <= M and "
1733 "i1 <= M and i3 <= M and i4 <= M) or "
1734 "(i1 >= 2 and i4 >= 1 + i2 and i2 >= 2 and i0 >= 2 and "
1735 "i3 >= 1 + i2 and i0 <= M and i1 <= -1 + M and i3 <= M and "
1736 "i4 <= -1 + M) }" },
1737 { 1, "{ [x, y] : (x >= 0 and y >= 0 and x <= 10 and y <= 10) or "
1738 "(x >= 1 and y >= 1 and x <= 11 and y <= 11) }" },
1739 { 0, "{[x,0] : x >= 0; [x,1] : x <= 20}" },
1740 { 1, "{ [x, 1 - x] : 0 <= x <= 1; [0,0] }" },
1741 { 1, "{ [0,0]; [i,i] : 1 <= i <= 10 }" },
1742 { 0, "{ [0,0]; [i,j] : 1 <= i,j <= 10 }" },
1743 { 1, "{ [0,0]; [i,2i] : 1 <= i <= 10 }" },
1744 { 0, "{ [0,0]; [i,2i] : 2 <= i <= 10 }" },
1745 { 0, "{ [1,0]; [i,2i] : 1 <= i <= 10 }" },
1746 { 0, "{ [0,1]; [i,2i] : 1 <= i <= 10 }" },
1747 { 0, "{ [a, b] : exists e : 2e = a and "
1748 "a >= 0 and (a <= 3 or (b <= 0 and b >= -4 + a)) }" },
1749 { 0, "{ [i, j, i', j'] : i <= 2 and j <= 2 and "
1750 "j' >= -1 + 2i + j - 2i' and i' <= -1 + i and "
1751 "j >= 1 and j' <= i + j - i' and i >= 1; "
1753 { 1, "{ [i,j] : exists a,b : i = 2a and j = 3b; "
1754 "[i,j] : exists a : j = 3a }" },
1755 { 1, "{ [a, b, c] : (c <= 7 - b and b <= 1 and b >= 0 and "
1756 "c >= 3 + b and b <= 3 + 8a and b >= -26 + 8a and "
1758 "(b <= 1 and c <= 7 and b >= 0 and c >= 4 + b and "
1759 "b <= 3 + 8a and b >= -26 + 8a and a >= 3) }" },
1760 { 1, "{ [a, 0, c] : c >= 1 and c <= 29 and c >= -1 + 8a and "
1761 "c <= 6 + 8a and a >= 3; "
1762 "[a, -1, c] : c >= 1 and c <= 30 and c >= 8a and "
1763 "c <= 7 + 8a and a >= 3 and a <= 4 }" },
1764 { 1, "{ [x,y] : 0 <= x <= 2 and y >= 0 and x + 2y <= 4; "
1765 "[x,0] : 3 <= x <= 4 }" },
1766 { 1, "{ [x,y] : 0 <= x <= 3 and y >= 0 and x + 3y <= 6; "
1767 "[x,0] : 4 <= x <= 5 }" },
1768 { 0, "{ [x,y] : 0 <= x <= 2 and y >= 0 and x + 2y <= 4; "
1769 "[x,0] : 3 <= x <= 5 }" },
1770 { 0, "{ [x,y] : 0 <= x <= 2 and y >= 0 and x + y <= 4; "
1771 "[x,0] : 3 <= x <= 4 }" },
1772 { 1, "{ [i0, i1] : i0 <= 122 and i0 >= 1 and 128i1 >= -249 + i0 and "
1774 "[i0, 0] : i0 >= 123 and i0 <= 124 }" },
1775 { 1, "{ [0,0]; [1,1] }" },
1776 { 1, "[n] -> { [k] : 16k <= -1 + n and k >= 1; [0] : n >= 2 }" },
1777 { 1, "{ [k, ii, k - ii] : ii >= -6 + k and ii <= 6 and ii >= 1 and "
1779 "[k, 0, k] : k <= 6 and k >= 1 }" },
1780 { 1, "{ [i,j] : i = 4 j and 0 <= i <= 100;"
1781 "[i,j] : 1 <= i <= 100 and i >= 4j + 1 and i <= 4j + 2 }" },
1782 { 1, "{ [x,y] : x % 2 = 0 and y % 2 = 0; [x,x] : x % 2 = 0 }" },
1783 { 1, "[n] -> { [1] : n >= 0;"
1784 "[x] : exists (e0 = floor((x)/2): x >= 2 and "
1785 "2e0 >= -1 + x and 2e0 <= x and 2e0 <= n) }" },
1786 { 1, "[n] -> { [x, y] : exists (e0 = floor((x)/2), e1 = floor((y)/3): "
1787 "3e1 = y and x >= 2 and 2e0 >= -1 + x and "
1788 "2e0 <= x and 2e0 <= n);"
1789 "[1, y] : exists (e0 = floor((y)/3): 3e0 = y and "
1791 { 1, "[t1] -> { [i0] : (exists (e0 = floor((63t1)/64): "
1792 "128e0 >= -134 + 127t1 and t1 >= 2 and "
1793 "64e0 <= 63t1 and 64e0 >= -63 + 63t1)) or "
1795 { 1, "{ [i, i] : exists (e0 = floor((1 + 2i)/3): 3e0 <= 2i and "
1796 "3e0 >= -1 + 2i and i <= 9 and i >= 1);"
1798 { 1, "{ [t1] : exists (e0 = floor((-11 + t1)/2): 2e0 = -11 + t1 and "
1799 "t1 >= 13 and t1 <= 16);"
1800 "[t1] : t1 <= 15 and t1 >= 12 }" },
1801 { 1, "{ [x,y] : x = 3y and 0 <= y <= 2; [-3,-1] }" },
1802 { 1, "{ [x,y] : 2x = 3y and 0 <= y <= 4; [-3,-2] }" },
1803 { 0, "{ [x,y] : 2x = 3y and 0 <= y <= 4; [-2,-2] }" },
1804 { 0, "{ [x,y] : 2x = 3y and 0 <= y <= 4; [-3,-1] }" },
1805 { 1, "{ [i] : exists j : i = 4 j and 0 <= i <= 100;"
1806 "[i] : exists j : 1 <= i <= 100 and i >= 4j + 1 and "
1808 { 1, "{ [c0] : (exists (e0 : c0 - 1 <= 3e0 <= c0)) or "
1809 "(exists (e0 : 3e0 = -2 + c0)) }" },
1810 { 0, "[n, b0, t0] -> "
1811 "{ [i0, i1, i2, i3, i4, i5, i6, i7, i8, i9, i10, i11, i12] : "
1812 "(exists (e0 = floor((-32b0 + i4)/1048576), "
1813 "e1 = floor((i8)/32): 1048576e0 = -32b0 + i4 and 32e1 = i8 and "
1814 "n <= 2147483647 and b0 <= 32767 and b0 >= 0 and "
1815 "32b0 <= -2 + n and t0 <= 31 and t0 >= 0 and i0 >= 8 + n and "
1816 "3i4 <= -96 + 3t0 + i0 and 3i4 >= -95 - n + 3t0 + i0 and "
1817 "i8 >= -157 + i0 - 4i4 and i8 >= 0 and "
1818 "i8 <= -33 + i0 - 4i4 and 3i8 <= -91 + 4n - i0)) or "
1819 "(exists (e0 = floor((-32b0 + i4)/1048576), "
1820 "e1 = floor((i8)/32): 1048576e0 = -32b0 + i4 and 32e1 = i8 and "
1821 "n <= 2147483647 and b0 <= 32767 and b0 >= 0 and "
1822 "32b0 <= -2 + n and t0 <= 31 and t0 >= 0 and i0 <= 7 + n and "
1823 "4i4 <= -3 + i0 and 3i4 <= -96 + 3t0 + i0 and "
1824 "3i4 >= -95 - n + 3t0 + i0 and i8 >= -157 + i0 - 4i4 and "
1825 "i8 >= 0 and i8 <= -4 + i0 - 3i4 and i8 <= -41 + i0));"
1826 "[i0, i1, i2, i3, 0, i5, i6, i7, i8, i9, i10, i11, i12] : "
1827 "(exists (e0 = floor((i8)/32): b0 = 0 and 32e0 = i8 and "
1828 "n <= 2147483647 and t0 <= 31 and t0 >= 0 and i0 >= 11 and "
1829 "i0 >= 96 - 3t0 and i0 <= 95 + n - 3t0 and i0 <= 7 + n and "
1830 "i8 >= -40 + i0 and i8 <= -10 + i0)) }" },
1831 { 0, "{ [i0, i1, i2] : "
1832 "(exists (e0, e1 = floor((i0)/32), e2 = floor((i1)/32): "
1833 "32e1 = i0 and 32e2 = i1 and i1 >= -31 + i0 and "
1834 "i1 <= 31 + i0 and i2 >= -30 + i0 and i2 >= -30 + i1 and "
1835 "32e0 >= -30 + i0 and 32e0 >= -30 + i1 and "
1836 "32e0 >= -31 + i2 and 32e0 <= 30 + i2 and 32e0 <= 31 + i1 and "
1837 "32e0 <= 31 + i0)) or "
1839 { 1, "{ [a, b, c] : 2b = 1 + a and 2c = 2 + a; [0, 0, 0] }" },
1840 { 1, "{ [a, a, b, c] : 32*floor((a)/32) = a and 2*floor((b)/2) = b and "
1841 "2*floor((c)/2) = c and 0 <= a <= 192;"
1842 "[224, 224, b, c] : 2*floor((b)/2) = b and 2*floor((c)/2) = c }"
1844 { 1, "[n] -> { [a,b] : (exists e : 1 <= a <= 7e and 9e <= b <= n) or "
1845 "(0 <= a <= b <= n) }" },
1846 { 1, "{ [a, b] : 0 <= a <= 2 and b >= 0 and "
1847 "((0 < b <= 13) or (2*floor((a + b)/2) >= -5 + a + 2b)) }" },
1848 { 1, "{ [a] : (2 <= a <= 5) or (a mod 2 = 1 and 1 <= a <= 5) }" },
1849 { 1, "{ [a, b, c] : (b = -1 + a and 0 < a <= 3 and "
1850 "9*floor((-4a + 2c)/9) <= -3 - 4a + 2c) or "
1851 "(exists (e0 = floor((-16 + 2c)/9): a = 4 and "
1852 "b = 3 and 9e0 <= -19 + 2c)) }" },
1853 { 0, "{ [a, b, c] : (b <= 2 and b <= -2 + a) or "
1854 "(b = -1 + a and 0 < a <= 3 and "
1855 "9*floor((-4a + 2c)/9) <= -3 - 4a + 2c) or "
1856 "(exists (e0 = floor((-16 + 2c)/9): a = 4 and "
1857 "b = 3 and 9e0 <= -19 + 2c)) }" },
1858 { 1, "{ [y, x] : (x - y) mod 3 = 2 and 2 <= y <= 200 and 0 <= x <= 2;"
1860 { 1, "{ [x, y] : (x - y) mod 3 = 2 and 2 <= y <= 200 and 0 <= x <= 2;"
1862 { 1, "{ [1, y] : -1 <= y <= 1; [x, -x] : 0 <= x <= 1 }" },
1863 { 1, "{ [1, y] : 0 <= y <= 1; [x, -x] : 0 <= x <= 1 }" },
1864 { 1, "{ [x, y] : 0 <= x <= 10 and x - 4*floor(x/4) <= 1 and y <= 0; "
1865 "[x, y] : 0 <= x <= 10 and x - 4*floor(x/4) > 1 and y <= 0; "
1866 "[x, y] : 0 <= x <= 10 and x - 5*floor(x/5) <= 1 and 0 < y; "
1867 "[x, y] : 0 <= x <= 10 and x - 5*floor(x/5) > 1 and 0 < y }" },
1868 { 1, "{ [x, 0] : 0 <= x <= 10 and x mod 2 = 0; "
1869 "[x, 0] : 0 <= x <= 10 and x mod 2 = 1; "
1870 "[x, y] : 0 <= x <= 10 and 1 <= y <= 10 }" },
1871 { 1, "{ [a] : a <= 8 and "
1872 "(a mod 10 = 7 or a mod 10 = 8 or a mod 10 = 9) }" },
1875 /* A specialized coalescing test case that would result
1876 * in a segmentation fault or a failed assertion in earlier versions of isl.
1878 static int test_coalesce_special(struct isl_ctx
*ctx
)
1881 isl_map
*map1
, *map2
;
1883 str
= "[y] -> { [S_L220_OUT[] -> T7[]] -> "
1884 "[[S_L309_IN[] -> T11[]] -> ce_imag2[1, o1]] : "
1885 "(y = 201 and o1 <= 239 and o1 >= 212) or "
1886 "(exists (e0 = [(y)/3]: 3e0 = y and y <= 198 and y >= 3 and "
1887 "o1 <= 239 and o1 >= 212)) or "
1888 "(exists (e0 = [(y)/3]: 3e0 = y and y <= 201 and y >= 3 and "
1889 "o1 <= 241 and o1 >= 240));"
1890 "[S_L220_OUT[] -> T7[]] -> "
1891 "[[S_L309_IN[] -> T11[]] -> ce_imag2[0, o1]] : "
1892 "(y = 2 and o1 <= 241 and o1 >= 212) or "
1893 "(exists (e0 = [(-2 + y)/3]: 3e0 = -2 + y and y <= 200 and "
1894 "y >= 5 and o1 <= 241 and o1 >= 212)) }";
1895 map1
= isl_map_read_from_str(ctx
, str
);
1896 map1
= isl_map_align_divs(map1
);
1897 map1
= isl_map_coalesce(map1
);
1898 str
= "[y] -> { [S_L220_OUT[] -> T7[]] -> "
1899 "[[S_L309_IN[] -> T11[]] -> ce_imag2[o0, o1]] : "
1900 "exists (e0 = [(-1 - y + o0)/3]: 3e0 = -1 - y + o0 and "
1901 "y <= 201 and o0 <= 2 and o1 >= 212 and o1 <= 241 and "
1902 "o0 >= 3 - y and o0 <= -2 + y and o0 >= 0) }";
1903 map2
= isl_map_read_from_str(ctx
, str
);
1904 map2
= isl_map_union(map2
, map1
);
1905 map2
= isl_map_align_divs(map2
);
1906 map2
= isl_map_coalesce(map2
);
1914 /* A specialized coalescing test case that would result in an assertion
1915 * in an earlier version of isl.
1916 * The explicit call to isl_basic_set_union prevents the implicit
1917 * equality constraints in the first basic map from being detected prior
1918 * to the call to isl_set_coalesce, at least at the point
1919 * where this test case was introduced.
1921 static int test_coalesce_special2(struct isl_ctx
*ctx
)
1924 isl_basic_set
*bset1
, *bset2
;
1927 str
= "{ [x, y] : x, y >= 0 and x + 2y <= 1 and 2x + y <= 1 }";
1928 bset1
= isl_basic_set_read_from_str(ctx
, str
);
1929 str
= "{ [x,0] : -1 <= x <= 1 and x mod 2 = 1 }" ;
1930 bset2
= isl_basic_set_read_from_str(ctx
, str
);
1931 set
= isl_basic_set_union(bset1
, bset2
);
1932 set
= isl_set_coalesce(set
);
1940 /* Test the functionality of isl_set_coalesce.
1941 * That is, check that the output is always equal to the input
1942 * and in some cases that the result consists of a single disjunct.
1944 static int test_coalesce(struct isl_ctx
*ctx
)
1948 for (i
= 0; i
< ARRAY_SIZE(coalesce_tests
); ++i
) {
1949 const char *str
= coalesce_tests
[i
].str
;
1950 int check_one
= coalesce_tests
[i
].single_disjunct
;
1951 if (test_coalesce_set(ctx
, str
, check_one
) < 0)
1955 if (test_coalesce_unbounded_wrapping(ctx
) < 0)
1957 if (test_coalesce_special(ctx
) < 0)
1959 if (test_coalesce_special2(ctx
) < 0)
1965 /* Construct a representation of the graph on the right of Figure 1
1966 * in "Computing the Transitive Closure of a Union of
1967 * Affine Integer Tuple Relations".
1969 static __isl_give isl_map
*cocoa_fig_1_right_graph(isl_ctx
*ctx
)
1972 isl_map
*up
, *right
;
1974 dom
= isl_set_read_from_str(ctx
,
1975 "{ [x,y] : x >= 0 and -2 x + 3 y >= 0 and x <= 3 and "
1976 "2 x - 3 y + 3 >= 0 }");
1977 right
= isl_map_read_from_str(ctx
,
1978 "{ [x,y] -> [x2,y2] : x2 = x + 1 and y2 = y }");
1979 up
= isl_map_read_from_str(ctx
,
1980 "{ [x,y] -> [x2,y2] : x2 = x and y2 = y + 1 }");
1981 right
= isl_map_intersect_domain(right
, isl_set_copy(dom
));
1982 right
= isl_map_intersect_range(right
, isl_set_copy(dom
));
1983 up
= isl_map_intersect_domain(up
, isl_set_copy(dom
));
1984 up
= isl_map_intersect_range(up
, dom
);
1985 return isl_map_union(up
, right
);
1988 /* Construct a representation of the power of the graph
1989 * on the right of Figure 1 in "Computing the Transitive Closure of
1990 * a Union of Affine Integer Tuple Relations".
1992 static __isl_give isl_map
*cocoa_fig_1_right_power(isl_ctx
*ctx
)
1994 return isl_map_read_from_str(ctx
,
1995 "{ [1] -> [[0,0] -> [0,1]]; [2] -> [[0,0] -> [1,1]]; "
1996 " [1] -> [[0,1] -> [1,1]]; [1] -> [[2,2] -> [3,2]]; "
1997 " [2] -> [[2,2] -> [3,3]]; [1] -> [[3,2] -> [3,3]] }");
2000 /* Construct a representation of the transitive closure of the graph
2001 * on the right of Figure 1 in "Computing the Transitive Closure of
2002 * a Union of Affine Integer Tuple Relations".
2004 static __isl_give isl_map
*cocoa_fig_1_right_tc(isl_ctx
*ctx
)
2006 return isl_set_unwrap(isl_map_range(cocoa_fig_1_right_power(ctx
)));
2009 static int test_closure(isl_ctx
*ctx
)
2012 isl_map
*map
, *map2
;
2015 /* COCOA example 1 */
2016 map
= isl_map_read_from_str(ctx
,
2017 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 1 and j2 = j + 1 and "
2018 "1 <= i and i < n and 1 <= j and j < n or "
2019 "i2 = i + 1 and j2 = j - 1 and "
2020 "1 <= i and i < n and 2 <= j and j <= n }");
2021 map
= isl_map_power(map
, &exact
);
2025 /* COCOA example 1 */
2026 map
= isl_map_read_from_str(ctx
,
2027 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 1 and j2 = j + 1 and "
2028 "1 <= i and i < n and 1 <= j and j < n or "
2029 "i2 = i + 1 and j2 = j - 1 and "
2030 "1 <= i and i < n and 2 <= j and j <= n }");
2031 map
= isl_map_transitive_closure(map
, &exact
);
2033 map2
= isl_map_read_from_str(ctx
,
2034 "[n] -> { [i,j] -> [i2,j2] : exists (k1,k2,k : "
2035 "1 <= i and i < n and 1 <= j and j <= n and "
2036 "2 <= i2 and i2 <= n and 1 <= j2 and j2 <= n and "
2037 "i2 = i + k1 + k2 and j2 = j + k1 - k2 and "
2038 "k1 >= 0 and k2 >= 0 and k1 + k2 = k and k >= 1 )}");
2039 assert(isl_map_is_equal(map
, map2
));
2043 map
= isl_map_read_from_str(ctx
,
2044 "[n] -> { [x] -> [y] : y = x + 1 and 0 <= x and x <= n and "
2045 " 0 <= y and y <= n }");
2046 map
= isl_map_transitive_closure(map
, &exact
);
2047 map2
= isl_map_read_from_str(ctx
,
2048 "[n] -> { [x] -> [y] : y > x and 0 <= x and x <= n and "
2049 " 0 <= y and y <= n }");
2050 assert(isl_map_is_equal(map
, map2
));
2054 /* COCOA example 2 */
2055 map
= isl_map_read_from_str(ctx
,
2056 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 2 and j2 = j + 2 and "
2057 "1 <= i and i < n - 1 and 1 <= j and j < n - 1 or "
2058 "i2 = i + 2 and j2 = j - 2 and "
2059 "1 <= i and i < n - 1 and 3 <= j and j <= n }");
2060 map
= isl_map_transitive_closure(map
, &exact
);
2062 map2
= isl_map_read_from_str(ctx
,
2063 "[n] -> { [i,j] -> [i2,j2] : exists (k1,k2,k : "
2064 "1 <= i and i < n - 1 and 1 <= j and j <= n and "
2065 "3 <= i2 and i2 <= n and 1 <= j2 and j2 <= n and "
2066 "i2 = i + 2 k1 + 2 k2 and j2 = j + 2 k1 - 2 k2 and "
2067 "k1 >= 0 and k2 >= 0 and k1 + k2 = k and k >= 1) }");
2068 assert(isl_map_is_equal(map
, map2
));
2072 /* COCOA Fig.2 left */
2073 map
= isl_map_read_from_str(ctx
,
2074 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 2 and j2 = j and "
2075 "i <= 2 j - 3 and i <= n - 2 and j <= 2 i - 1 and "
2077 "i2 = i and j2 = j + 2 and i <= 2 j - 1 and i <= n and "
2078 "j <= 2 i - 3 and j <= n - 2 or "
2079 "i2 = i + 1 and j2 = j + 1 and i <= 2 j - 1 and "
2080 "i <= n - 1 and j <= 2 i - 1 and j <= n - 1 }");
2081 map
= isl_map_transitive_closure(map
, &exact
);
2085 /* COCOA Fig.2 right */
2086 map
= isl_map_read_from_str(ctx
,
2087 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 3 and j2 = j and "
2088 "i <= 2 j - 4 and i <= n - 3 and j <= 2 i - 1 and "
2090 "i2 = i and j2 = j + 3 and i <= 2 j - 1 and i <= n and "
2091 "j <= 2 i - 4 and j <= n - 3 or "
2092 "i2 = i + 1 and j2 = j + 1 and i <= 2 j - 1 and "
2093 "i <= n - 1 and j <= 2 i - 1 and j <= n - 1 }");
2094 map
= isl_map_power(map
, &exact
);
2098 /* COCOA Fig.2 right */
2099 map
= isl_map_read_from_str(ctx
,
2100 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 3 and j2 = j and "
2101 "i <= 2 j - 4 and i <= n - 3 and j <= 2 i - 1 and "
2103 "i2 = i and j2 = j + 3 and i <= 2 j - 1 and i <= n and "
2104 "j <= 2 i - 4 and j <= n - 3 or "
2105 "i2 = i + 1 and j2 = j + 1 and i <= 2 j - 1 and "
2106 "i <= n - 1 and j <= 2 i - 1 and j <= n - 1 }");
2107 map
= isl_map_transitive_closure(map
, &exact
);
2109 map2
= isl_map_read_from_str(ctx
,
2110 "[n] -> { [i,j] -> [i2,j2] : exists (k1,k2,k3,k : "
2111 "i <= 2 j - 1 and i <= n and j <= 2 i - 1 and "
2112 "j <= n and 3 + i + 2 j <= 3 n and "
2113 "3 + 2 i + j <= 3n and i2 <= 2 j2 -1 and i2 <= n and "
2114 "i2 <= 3 j2 - 4 and j2 <= 2 i2 -1 and j2 <= n and "
2115 "13 + 4 j2 <= 11 i2 and i2 = i + 3 k1 + k3 and "
2116 "j2 = j + 3 k2 + k3 and k1 >= 0 and k2 >= 0 and "
2117 "k3 >= 0 and k1 + k2 + k3 = k and k > 0) }");
2118 assert(isl_map_is_equal(map
, map2
));
2122 map
= cocoa_fig_1_right_graph(ctx
);
2123 map
= isl_map_transitive_closure(map
, &exact
);
2125 map2
= cocoa_fig_1_right_tc(ctx
);
2126 assert(isl_map_is_equal(map
, map2
));
2130 map
= cocoa_fig_1_right_graph(ctx
);
2131 map
= isl_map_power(map
, &exact
);
2132 map2
= cocoa_fig_1_right_power(ctx
);
2133 equal
= isl_map_is_equal(map
, map2
);
2139 isl_die(ctx
, isl_error_unknown
, "power not exact", return -1);
2141 isl_die(ctx
, isl_error_unknown
, "unexpected power", return -1);
2143 /* COCOA Theorem 1 counter example */
2144 map
= isl_map_read_from_str(ctx
,
2145 "{ [i,j] -> [i2,j2] : i = 0 and 0 <= j and j <= 1 and "
2146 "i2 = 1 and j2 = j or "
2147 "i = 0 and j = 0 and i2 = 0 and j2 = 1 }");
2148 map
= isl_map_transitive_closure(map
, &exact
);
2152 map
= isl_map_read_from_str(ctx
,
2153 "[m,n] -> { [i,j] -> [i2,j2] : i2 = i and j2 = j + 2 and "
2154 "1 <= i,i2 <= n and 1 <= j,j2 <= m or "
2155 "i2 = i + 1 and 3 <= j2 - j <= 4 and "
2156 "1 <= i,i2 <= n and 1 <= j,j2 <= m }");
2157 map
= isl_map_transitive_closure(map
, &exact
);
2161 /* Kelly et al 1996, fig 12 */
2162 map
= isl_map_read_from_str(ctx
,
2163 "[n] -> { [i,j] -> [i2,j2] : i2 = i and j2 = j + 1 and "
2164 "1 <= i,j,j+1 <= n or "
2165 "j = n and j2 = 1 and i2 = i + 1 and "
2166 "1 <= i,i+1 <= n }");
2167 map
= isl_map_transitive_closure(map
, &exact
);
2169 map2
= isl_map_read_from_str(ctx
,
2170 "[n] -> { [i,j] -> [i2,j2] : 1 <= j < j2 <= n and "
2171 "1 <= i <= n and i = i2 or "
2172 "1 <= i < i2 <= n and 1 <= j <= n and "
2174 assert(isl_map_is_equal(map
, map2
));
2178 /* Omega's closure4 */
2179 map
= isl_map_read_from_str(ctx
,
2180 "[m,n] -> { [x,y] -> [x2,y2] : x2 = x and y2 = y + 1 and "
2181 "1 <= x,y <= 10 or "
2182 "x2 = x + 1 and y2 = y and "
2183 "1 <= x <= 20 && 5 <= y <= 15 }");
2184 map
= isl_map_transitive_closure(map
, &exact
);
2188 map
= isl_map_read_from_str(ctx
,
2189 "[n] -> { [x] -> [y]: 1 <= n <= y - x <= 10 }");
2190 map
= isl_map_transitive_closure(map
, &exact
);
2192 map2
= isl_map_read_from_str(ctx
,
2193 "[n] -> { [x] -> [y] : 1 <= n <= 10 and y >= n + x }");
2194 assert(isl_map_is_equal(map
, map2
));
2198 str
= "[n, m] -> { [i0, i1, i2, i3] -> [o0, o1, o2, o3] : "
2199 "i3 = 1 and o0 = i0 and o1 = -1 + i1 and o2 = -1 + i2 and "
2200 "o3 = -2 + i2 and i1 <= -1 + i0 and i1 >= 1 - m + i0 and "
2201 "i1 >= 2 and i1 <= n and i2 >= 3 and i2 <= 1 + n and i2 <= m }";
2202 map
= isl_map_read_from_str(ctx
, str
);
2203 map
= isl_map_transitive_closure(map
, &exact
);
2205 map2
= isl_map_read_from_str(ctx
, str
);
2206 assert(isl_map_is_equal(map
, map2
));
2210 str
= "{[0] -> [1]; [2] -> [3]}";
2211 map
= isl_map_read_from_str(ctx
, str
);
2212 map
= isl_map_transitive_closure(map
, &exact
);
2214 map2
= isl_map_read_from_str(ctx
, str
);
2215 assert(isl_map_is_equal(map
, map2
));
2219 str
= "[n] -> { [[i0, i1, 1, 0, i0] -> [i5, 1]] -> "
2220 "[[i0, -1 + i1, 2, 0, i0] -> [-1 + i5, 2]] : "
2221 "exists (e0 = [(3 - n)/3]: i5 >= 2 and i1 >= 2 and "
2222 "3i0 <= -1 + n and i1 <= -1 + n and i5 <= -1 + n and "
2223 "3e0 >= 1 - n and 3e0 <= 2 - n and 3i0 >= -2 + n); "
2224 "[[i0, i1, 2, 0, i0] -> [i5, 1]] -> "
2225 "[[i0, i1, 1, 0, i0] -> [-1 + i5, 2]] : "
2226 "exists (e0 = [(3 - n)/3]: i5 >= 2 and i1 >= 1 and "
2227 "3i0 <= -1 + n and i1 <= -1 + n and i5 <= -1 + n and "
2228 "3e0 >= 1 - n and 3e0 <= 2 - n and 3i0 >= -2 + n); "
2229 "[[i0, i1, 1, 0, i0] -> [i5, 2]] -> "
2230 "[[i0, -1 + i1, 2, 0, i0] -> [i5, 1]] : "
2231 "exists (e0 = [(3 - n)/3]: i1 >= 2 and i5 >= 1 and "
2232 "3i0 <= -1 + n and i1 <= -1 + n and i5 <= -1 + n and "
2233 "3e0 >= 1 - n and 3e0 <= 2 - n and 3i0 >= -2 + n); "
2234 "[[i0, i1, 2, 0, i0] -> [i5, 2]] -> "
2235 "[[i0, i1, 1, 0, i0] -> [i5, 1]] : "
2236 "exists (e0 = [(3 - n)/3]: i5 >= 1 and i1 >= 1 and "
2237 "3i0 <= -1 + n and i1 <= -1 + n and i5 <= -1 + n and "
2238 "3e0 >= 1 - n and 3e0 <= 2 - n and 3i0 >= -2 + n) }";
2239 map
= isl_map_read_from_str(ctx
, str
);
2240 map
= isl_map_transitive_closure(map
, NULL
);
2247 static int test_lex(struct isl_ctx
*ctx
)
2253 dim
= isl_space_set_alloc(ctx
, 0, 0);
2254 map
= isl_map_lex_le(dim
);
2255 empty
= isl_map_is_empty(map
);
2261 isl_die(ctx
, isl_error_unknown
,
2262 "expecting non-empty result", return -1);
2267 /* Inputs for isl_map_lexmin tests.
2268 * "map" is the input and "lexmin" is the expected result.
2273 } lexmin_tests
[] = {
2274 { "{ [x] -> [y] : x <= y <= 10; [x] -> [5] : -8 <= x <= 8 }",
2275 "{ [x] -> [5] : 6 <= x <= 8; "
2276 "[x] -> [x] : x <= 5 or (9 <= x <= 10) }" },
2277 { "{ [x] -> [y] : 4y = x or 4y = -1 + x or 4y = -2 + x }",
2278 "{ [x] -> [y] : 4y = x or 4y = -1 + x or 4y = -2 + x }" },
2279 { "{ [x] -> [y] : x = 4y; [x] -> [y] : x = 2y }",
2280 "{ [x] -> [y] : (4y = x and x >= 0) or "
2281 "(exists (e0 = [(x)/4], e1 = [(-2 + x)/4]: 2y = x and "
2282 "4e1 = -2 + x and 4e0 <= -1 + x and 4e0 >= -3 + x)) or "
2283 "(exists (e0 = [(x)/4]: 2y = x and 4e0 = x and x <= -4)) }" },
2284 { "{ T[a] -> S[b, c] : a = 4b-2c and c >= b }",
2285 "{ T[a] -> S[b, c] : 2b = a and 2c = a }" },
2286 /* Check that empty pieces are properly combined. */
2287 { "[K, N] -> { [x, y] -> [a, b] : K+2<=N<=K+4 and x>=4 and "
2288 "2N-6<=x<K+N and N-1<=a<=K+N-1 and N+b-6<=a<=2N-4 and "
2289 "b<=2N-3K+a and 3b<=4N-K+1 and b>=N and a>=x+1 }",
2290 "[K, N] -> { [x, y] -> [1 + x, N] : x >= -6 + 2N and "
2291 "x <= -5 + 2N and x >= -1 + 3K - N and x <= -2 + K + N and "
2293 { "{ [i, k, j] -> [a, b, c, d] : 8*floor((b)/8) = b and k <= 255 and "
2294 "a <= 255 and c <= 255 and d <= 255 - j and "
2295 "255 - j <= 7d <= 7 - i and 240d <= 239 + a and "
2296 "247d <= 247 + k - j and 247d <= 247 + k - b and "
2297 "247d <= 247 + i and 248 - b <= 248d <= c and "
2298 "254d >= i - a + b and 254d >= -a + b and "
2299 "255d >= -i + a - b and 1792d >= -63736 + 257b }",
2301 "[-127762 + i + 502j, -62992 + 248j, 63240 - 248j, 255 - j] : "
2302 "k <= 255 and 7j >= 1778 + i and 246j >= 62738 - k and "
2303 "247j >= 62738 - i and 509j <= 129795 + i and "
2304 "742j >= 188724 - i; "
2305 "[0, k, j] -> [1, 0, 248, 1] : k <= 255 and 248 <= j <= 254, k }" },
2306 { "{ [a] -> [b] : 0 <= b <= 255 and -509 + a <= 512b < a and "
2307 "16*floor((8 + b)/16) <= 7 + b; "
2309 "{ [a] -> [b = 1] : a >= 510 or a <= 0; "
2310 "[a] -> [b = 0] : 0 < a <= 509 }" },
2311 { "{ rat: [i] : 1 <= 2i <= 9 }", "{ rat: [i] : 2i = 1 }" },
2312 { "{ rat: [i] : 1 <= 2i <= 9 or i >= 10 }", "{ rat: [i] : 2i = 1 }" },
2315 static int test_lexmin(struct isl_ctx
*ctx
)
2320 isl_basic_map
*bmap
;
2321 isl_map
*map
, *map2
;
2324 isl_pw_multi_aff
*pma
;
2326 str
= "[p0, p1] -> { [] -> [] : "
2327 "exists (e0 = [(2p1)/3], e1, e2, e3 = [(3 - p1 + 3e0)/3], "
2328 "e4 = [(p1)/3], e5 = [(p1 + 3e4)/3]: "
2329 "3e0 >= -2 + 2p1 and 3e0 >= p1 and 3e3 >= 1 - p1 + 3e0 and "
2330 "3e0 <= 2p1 and 3e3 >= -2 + p1 and 3e3 <= -1 + p1 and p1 >= 3 and "
2331 "3e5 >= -2 + 2p1 and 3e5 >= p1 and 3e5 <= -1 + p1 + 3e4 and "
2332 "3e4 <= p1 and 3e4 >= -2 + p1 and e3 <= -1 + e0 and "
2333 "3e4 >= 6 - p1 + 3e1 and 3e1 >= p1 and 3e5 >= -2 + p1 + 3e4 and "
2334 "2e4 >= 3 - p1 + 2e1 and e4 <= e1 and 3e3 <= 2 - p1 + 3e0 and "
2335 "e5 >= 1 + e1 and 3e4 >= 6 - 2p1 + 3e1 and "
2336 "p0 >= 2 and p1 >= p0 and 3e2 >= p1 and 3e4 >= 6 - p1 + 3e2 and "
2337 "e2 <= e1 and e3 >= 1 and e4 <= e2) }";
2338 map
= isl_map_read_from_str(ctx
, str
);
2339 map
= isl_map_lexmin(map
);
2342 str
= "[C] -> { [obj,a,b,c] : obj <= 38 a + 7 b + 10 c and "
2343 "a + b <= 1 and c <= 10 b and c <= C and a,b,c,C >= 0 }";
2344 set
= isl_set_read_from_str(ctx
, str
);
2345 set
= isl_set_lexmax(set
);
2346 str
= "[C] -> { [obj,a,b,c] : C = 8 }";
2347 set2
= isl_set_read_from_str(ctx
, str
);
2348 set
= isl_set_intersect(set
, set2
);
2349 assert(!isl_set_is_empty(set
));
2352 for (i
= 0; i
< ARRAY_SIZE(lexmin_tests
); ++i
) {
2353 map
= isl_map_read_from_str(ctx
, lexmin_tests
[i
].map
);
2354 map
= isl_map_lexmin(map
);
2355 map2
= isl_map_read_from_str(ctx
, lexmin_tests
[i
].lexmin
);
2356 equal
= isl_map_is_equal(map
, map2
);
2363 isl_die(ctx
, isl_error_unknown
,
2364 "unexpected result", return -1);
2367 str
= "{ [i] -> [i', j] : j = i - 8i' and i' >= 0 and i' <= 7 and "
2368 " 8i' <= i and 8i' >= -7 + i }";
2369 bmap
= isl_basic_map_read_from_str(ctx
, str
);
2370 pma
= isl_basic_map_lexmin_pw_multi_aff(isl_basic_map_copy(bmap
));
2371 map2
= isl_map_from_pw_multi_aff(pma
);
2372 map
= isl_map_from_basic_map(bmap
);
2373 assert(isl_map_is_equal(map
, map2
));
2377 str
= "[i] -> { [i', j] : j = i - 8i' and i' >= 0 and i' <= 7 and "
2378 " 8i' <= i and 8i' >= -7 + i }";
2379 set
= isl_set_read_from_str(ctx
, str
);
2380 pma
= isl_set_lexmin_pw_multi_aff(isl_set_copy(set
));
2381 set2
= isl_set_from_pw_multi_aff(pma
);
2382 equal
= isl_set_is_equal(set
, set2
);
2388 isl_die(ctx
, isl_error_unknown
,
2389 "unexpected difference between set and "
2390 "piecewise affine expression", return -1);
2395 /* A specialized isl_set_min_val test case that would return the wrong result
2396 * in earlier versions of isl.
2397 * The explicit call to isl_basic_set_union prevents the second basic set
2398 * from being determined to be empty prior to the call to isl_set_min_val,
2399 * at least at the point where this test case was introduced.
2401 static int test_min_special(isl_ctx
*ctx
)
2404 isl_basic_set
*bset1
, *bset2
;
2410 str
= "{ [a, b] : a >= 2 and b >= 0 and 14 - a <= b <= 9 }";
2411 bset1
= isl_basic_set_read_from_str(ctx
, str
);
2412 str
= "{ [a, b] : 1 <= a, b and a + b <= 1 }";
2413 bset2
= isl_basic_set_read_from_str(ctx
, str
);
2414 set
= isl_basic_set_union(bset1
, bset2
);
2415 obj
= isl_aff_read_from_str(ctx
, "{ [a, b] -> [a] }");
2417 res
= isl_set_min_val(set
, obj
);
2418 ok
= isl_val_cmp_si(res
, 5) == 0;
2427 isl_die(ctx
, isl_error_unknown
, "unexpected minimum",
2436 __isl_give isl_val
*(*fn
)(__isl_keep isl_set
*set
,
2437 __isl_keep isl_aff
*obj
);
2440 { "{ [-1]; [1] }", "{ [x] -> [x] }", &isl_set_min_val
, "-1" },
2441 { "{ [-1]; [1] }", "{ [x] -> [x] }", &isl_set_max_val
, "1" },
2442 { "{ [a, b] : 0 <= a, b <= 100 and b mod 2 = 0}",
2443 "{ [a, b] -> [floor((b - 2*floor((-a)/4))/5)] }",
2444 &isl_set_max_val
, "30" },
2448 /* Perform basic isl_set_min_val and isl_set_max_val tests.
2449 * In particular, check the results on non-convex inputs.
2451 static int test_min(struct isl_ctx
*ctx
)
2459 for (i
= 0; i
< ARRAY_SIZE(opt_tests
); ++i
) {
2460 set
= isl_set_read_from_str(ctx
, opt_tests
[i
].set
);
2461 obj
= isl_aff_read_from_str(ctx
, opt_tests
[i
].obj
);
2462 res
= isl_val_read_from_str(ctx
, opt_tests
[i
].res
);
2463 val
= opt_tests
[i
].fn(set
, obj
);
2464 ok
= isl_val_eq(res
, val
);
2473 isl_die(ctx
, isl_error_unknown
,
2474 "unexpected optimum", return -1);
2477 if (test_min_special(ctx
) < 0)
2488 static isl_stat
collect_must_may(__isl_take isl_map
*dep
, int must
,
2489 void *dep_user
, void *user
)
2491 struct must_may
*mm
= (struct must_may
*)user
;
2494 mm
->must
= isl_map_union(mm
->must
, dep
);
2496 mm
->may
= isl_map_union(mm
->may
, dep
);
2501 static int common_space(void *first
, void *second
)
2503 int depth
= *(int *)first
;
2507 static int map_is_equal(__isl_keep isl_map
*map
, const char *str
)
2515 map2
= isl_map_read_from_str(map
->ctx
, str
);
2516 equal
= isl_map_is_equal(map
, map2
);
2522 static int map_check_equal(__isl_keep isl_map
*map
, const char *str
)
2526 equal
= map_is_equal(map
, str
);
2530 isl_die(isl_map_get_ctx(map
), isl_error_unknown
,
2531 "result not as expected", return -1);
2535 static int test_dep(struct isl_ctx
*ctx
)
2540 isl_access_info
*ai
;
2547 str
= "{ [2,i,0] -> [i] : 0 <= i <= 10 }";
2548 map
= isl_map_read_from_str(ctx
, str
);
2549 ai
= isl_access_info_alloc(map
, &depth
, &common_space
, 2);
2551 str
= "{ [0,i,0] -> [i] : 0 <= i <= 10 }";
2552 map
= isl_map_read_from_str(ctx
, str
);
2553 ai
= isl_access_info_add_source(ai
, map
, 1, &depth
);
2555 str
= "{ [1,i,0] -> [5] : 0 <= i <= 10 }";
2556 map
= isl_map_read_from_str(ctx
, str
);
2557 ai
= isl_access_info_add_source(ai
, map
, 1, &depth
);
2559 flow
= isl_access_info_compute_flow(ai
);
2560 dim
= isl_space_alloc(ctx
, 0, 3, 3);
2561 mm
.must
= isl_map_empty(isl_space_copy(dim
));
2562 mm
.may
= isl_map_empty(dim
);
2564 isl_flow_foreach(flow
, collect_must_may
, &mm
);
2566 str
= "{ [0,i,0] -> [2,i,0] : (0 <= i <= 4) or (6 <= i <= 10); "
2567 " [1,10,0] -> [2,5,0] }";
2568 assert(map_is_equal(mm
.must
, str
));
2569 str
= "{ [i,j,k] -> [l,m,n] : 1 = 0 }";
2570 assert(map_is_equal(mm
.may
, str
));
2572 isl_map_free(mm
.must
);
2573 isl_map_free(mm
.may
);
2574 isl_flow_free(flow
);
2577 str
= "{ [2,i,0] -> [i] : 0 <= i <= 10 }";
2578 map
= isl_map_read_from_str(ctx
, str
);
2579 ai
= isl_access_info_alloc(map
, &depth
, &common_space
, 2);
2581 str
= "{ [0,i,0] -> [i] : 0 <= i <= 10 }";
2582 map
= isl_map_read_from_str(ctx
, str
);
2583 ai
= isl_access_info_add_source(ai
, map
, 1, &depth
);
2585 str
= "{ [1,i,0] -> [5] : 0 <= i <= 10 }";
2586 map
= isl_map_read_from_str(ctx
, str
);
2587 ai
= isl_access_info_add_source(ai
, map
, 0, &depth
);
2589 flow
= isl_access_info_compute_flow(ai
);
2590 dim
= isl_space_alloc(ctx
, 0, 3, 3);
2591 mm
.must
= isl_map_empty(isl_space_copy(dim
));
2592 mm
.may
= isl_map_empty(dim
);
2594 isl_flow_foreach(flow
, collect_must_may
, &mm
);
2596 str
= "{ [0,i,0] -> [2,i,0] : (0 <= i <= 4) or (6 <= i <= 10) }";
2597 assert(map_is_equal(mm
.must
, str
));
2598 str
= "{ [0,5,0] -> [2,5,0]; [1,i,0] -> [2,5,0] : 0 <= i <= 10 }";
2599 assert(map_is_equal(mm
.may
, str
));
2601 isl_map_free(mm
.must
);
2602 isl_map_free(mm
.may
);
2603 isl_flow_free(flow
);
2606 str
= "{ [2,i,0] -> [i] : 0 <= i <= 10 }";
2607 map
= isl_map_read_from_str(ctx
, str
);
2608 ai
= isl_access_info_alloc(map
, &depth
, &common_space
, 2);
2610 str
= "{ [0,i,0] -> [i] : 0 <= i <= 10 }";
2611 map
= isl_map_read_from_str(ctx
, str
);
2612 ai
= isl_access_info_add_source(ai
, map
, 0, &depth
);
2614 str
= "{ [1,i,0] -> [5] : 0 <= i <= 10 }";
2615 map
= isl_map_read_from_str(ctx
, str
);
2616 ai
= isl_access_info_add_source(ai
, map
, 0, &depth
);
2618 flow
= isl_access_info_compute_flow(ai
);
2619 dim
= isl_space_alloc(ctx
, 0, 3, 3);
2620 mm
.must
= isl_map_empty(isl_space_copy(dim
));
2621 mm
.may
= isl_map_empty(dim
);
2623 isl_flow_foreach(flow
, collect_must_may
, &mm
);
2625 str
= "{ [0,i,0] -> [2,i,0] : 0 <= i <= 10; "
2626 " [1,i,0] -> [2,5,0] : 0 <= i <= 10 }";
2627 assert(map_is_equal(mm
.may
, str
));
2628 str
= "{ [i,j,k] -> [l,m,n] : 1 = 0 }";
2629 assert(map_is_equal(mm
.must
, str
));
2631 isl_map_free(mm
.must
);
2632 isl_map_free(mm
.may
);
2633 isl_flow_free(flow
);
2636 str
= "{ [0,i,2] -> [i] : 0 <= i <= 10 }";
2637 map
= isl_map_read_from_str(ctx
, str
);
2638 ai
= isl_access_info_alloc(map
, &depth
, &common_space
, 2);
2640 str
= "{ [0,i,0] -> [i] : 0 <= i <= 10 }";
2641 map
= isl_map_read_from_str(ctx
, str
);
2642 ai
= isl_access_info_add_source(ai
, map
, 0, &depth
);
2644 str
= "{ [0,i,1] -> [5] : 0 <= i <= 10 }";
2645 map
= isl_map_read_from_str(ctx
, str
);
2646 ai
= isl_access_info_add_source(ai
, map
, 0, &depth
);
2648 flow
= isl_access_info_compute_flow(ai
);
2649 dim
= isl_space_alloc(ctx
, 0, 3, 3);
2650 mm
.must
= isl_map_empty(isl_space_copy(dim
));
2651 mm
.may
= isl_map_empty(dim
);
2653 isl_flow_foreach(flow
, collect_must_may
, &mm
);
2655 str
= "{ [0,i,0] -> [0,i,2] : 0 <= i <= 10; "
2656 " [0,i,1] -> [0,5,2] : 0 <= i <= 5 }";
2657 assert(map_is_equal(mm
.may
, str
));
2658 str
= "{ [i,j,k] -> [l,m,n] : 1 = 0 }";
2659 assert(map_is_equal(mm
.must
, str
));
2661 isl_map_free(mm
.must
);
2662 isl_map_free(mm
.may
);
2663 isl_flow_free(flow
);
2666 str
= "{ [0,i,1] -> [i] : 0 <= i <= 10 }";
2667 map
= isl_map_read_from_str(ctx
, str
);
2668 ai
= isl_access_info_alloc(map
, &depth
, &common_space
, 2);
2670 str
= "{ [0,i,0] -> [i] : 0 <= i <= 10 }";
2671 map
= isl_map_read_from_str(ctx
, str
);
2672 ai
= isl_access_info_add_source(ai
, map
, 0, &depth
);
2674 str
= "{ [0,i,2] -> [5] : 0 <= i <= 10 }";
2675 map
= isl_map_read_from_str(ctx
, str
);
2676 ai
= isl_access_info_add_source(ai
, map
, 0, &depth
);
2678 flow
= isl_access_info_compute_flow(ai
);
2679 dim
= isl_space_alloc(ctx
, 0, 3, 3);
2680 mm
.must
= isl_map_empty(isl_space_copy(dim
));
2681 mm
.may
= isl_map_empty(dim
);
2683 isl_flow_foreach(flow
, collect_must_may
, &mm
);
2685 str
= "{ [0,i,0] -> [0,i,1] : 0 <= i <= 10; "
2686 " [0,i,2] -> [0,5,1] : 0 <= i <= 4 }";
2687 assert(map_is_equal(mm
.may
, str
));
2688 str
= "{ [i,j,k] -> [l,m,n] : 1 = 0 }";
2689 assert(map_is_equal(mm
.must
, str
));
2691 isl_map_free(mm
.must
);
2692 isl_map_free(mm
.may
);
2693 isl_flow_free(flow
);
2698 str
= "{ [1,i,0,0,0] -> [i,j] : 0 <= i <= 10 and 0 <= j <= 10 }";
2699 map
= isl_map_read_from_str(ctx
, str
);
2700 ai
= isl_access_info_alloc(map
, &depth
, &common_space
, 1);
2702 str
= "{ [0,i,0,j,0] -> [i,j] : 0 <= i <= 10 and 0 <= j <= 10 }";
2703 map
= isl_map_read_from_str(ctx
, str
);
2704 ai
= isl_access_info_add_source(ai
, map
, 1, &depth
);
2706 flow
= isl_access_info_compute_flow(ai
);
2707 dim
= isl_space_alloc(ctx
, 0, 5, 5);
2708 mm
.must
= isl_map_empty(isl_space_copy(dim
));
2709 mm
.may
= isl_map_empty(dim
);
2711 isl_flow_foreach(flow
, collect_must_may
, &mm
);
2713 str
= "{ [0,i,0,j,0] -> [1,i,0,0,0] : 0 <= i,j <= 10 }";
2714 assert(map_is_equal(mm
.must
, str
));
2715 str
= "{ [0,0,0,0,0] -> [0,0,0,0,0] : 1 = 0 }";
2716 assert(map_is_equal(mm
.may
, str
));
2718 isl_map_free(mm
.must
);
2719 isl_map_free(mm
.may
);
2720 isl_flow_free(flow
);
2725 /* Check that the dependence analysis proceeds without errors.
2726 * Earlier versions of isl would break down during the analysis
2727 * due to the use of the wrong spaces.
2729 static int test_flow(isl_ctx
*ctx
)
2732 isl_union_map
*access
, *schedule
;
2733 isl_union_map
*must_dep
, *may_dep
;
2736 str
= "{ S0[j] -> i[]; S1[j,i] -> i[]; S2[] -> i[]; S3[] -> i[] }";
2737 access
= isl_union_map_read_from_str(ctx
, str
);
2738 str
= "{ S0[j] -> [0,j,0,0] : 0 <= j < 10; "
2739 "S1[j,i] -> [0,j,1,i] : 0 <= j < i < 10; "
2740 "S2[] -> [1,0,0,0]; "
2741 "S3[] -> [-1,0,0,0] }";
2742 schedule
= isl_union_map_read_from_str(ctx
, str
);
2743 r
= isl_union_map_compute_flow(access
, isl_union_map_copy(access
),
2744 isl_union_map_copy(access
), schedule
,
2745 &must_dep
, &may_dep
, NULL
, NULL
);
2746 isl_union_map_free(may_dep
);
2747 isl_union_map_free(must_dep
);
2756 { "[N] -> { [i] -> [f] : 0 <= i <= N and 0 <= i - 10 f <= 9 }", 1 },
2757 { "[N] -> { [i] -> [f] : 0 <= i <= N and 0 <= i - 10 f <= 10 }", 0 },
2758 { "{ [i] -> [3*floor(i/2) + 5*floor(i/3)] }", 1 },
2759 { "{ S1[i] -> [i] : 0 <= i <= 9; S2[i] -> [i] : 0 <= i <= 9 }", 1 },
2760 { "{ [i] -> S1[i] : 0 <= i <= 9; [i] -> S2[i] : 0 <= i <= 9 }", 0 },
2761 { "{ A[i] -> [i]; B[i] -> [i]; B[i] -> [i + 1] }", 0 },
2762 { "{ A[i] -> [i]; B[i] -> [i] : i < 0; B[i] -> [i + 1] : i > 0 }", 1 },
2763 { "{ A[i] -> [i]; B[i] -> A[i] : i < 0; B[i] -> [i + 1] : i > 0 }", 1 },
2764 { "{ A[i] -> [i]; B[i] -> [j] : i - 1 <= j <= i }", 0 },
2767 int test_sv(isl_ctx
*ctx
)
2769 isl_union_map
*umap
;
2773 for (i
= 0; i
< ARRAY_SIZE(sv_tests
); ++i
) {
2774 umap
= isl_union_map_read_from_str(ctx
, sv_tests
[i
].map
);
2775 sv
= isl_union_map_is_single_valued(umap
);
2776 isl_union_map_free(umap
);
2779 if (sv_tests
[i
].sv
&& !sv
)
2780 isl_die(ctx
, isl_error_internal
,
2781 "map not detected as single valued", return -1);
2782 if (!sv_tests
[i
].sv
&& sv
)
2783 isl_die(ctx
, isl_error_internal
,
2784 "map detected as single valued", return -1);
2793 } bijective_tests
[] = {
2794 { "[N,M]->{[i,j] -> [i]}", 0 },
2795 { "[N,M]->{[i,j] -> [i] : j=i}", 1 },
2796 { "[N,M]->{[i,j] -> [i] : j=0}", 1 },
2797 { "[N,M]->{[i,j] -> [i] : j=N}", 1 },
2798 { "[N,M]->{[i,j] -> [j,i]}", 1 },
2799 { "[N,M]->{[i,j] -> [i+j]}", 0 },
2800 { "[N,M]->{[i,j] -> []}", 0 },
2801 { "[N,M]->{[i,j] -> [i,j,N]}", 1 },
2802 { "[N,M]->{[i,j] -> [2i]}", 0 },
2803 { "[N,M]->{[i,j] -> [i,i]}", 0 },
2804 { "[N,M]->{[i,j] -> [2i,i]}", 0 },
2805 { "[N,M]->{[i,j] -> [2i,j]}", 1 },
2806 { "[N,M]->{[i,j] -> [x,y] : 2x=i & y =j}", 1 },
2809 static int test_bijective(struct isl_ctx
*ctx
)
2815 for (i
= 0; i
< ARRAY_SIZE(bijective_tests
); ++i
) {
2816 map
= isl_map_read_from_str(ctx
, bijective_tests
[i
].str
);
2817 bijective
= isl_map_is_bijective(map
);
2821 if (bijective_tests
[i
].bijective
&& !bijective
)
2822 isl_die(ctx
, isl_error_internal
,
2823 "map not detected as bijective", return -1);
2824 if (!bijective_tests
[i
].bijective
&& bijective
)
2825 isl_die(ctx
, isl_error_internal
,
2826 "map detected as bijective", return -1);
2832 /* Inputs for isl_pw_qpolynomial_gist tests.
2833 * "pwqp" is the input, "set" is the context and "gist" is the expected result.
2839 } pwqp_gist_tests
[] = {
2840 { "{ [i] -> i }", "{ [k] : exists a : k = 2a }", "{ [i] -> i }" },
2841 { "{ [i] -> i + [ (i + [i/3])/2 ] }", "{ [10] }", "{ [i] -> 16 }" },
2842 { "{ [i] -> ([(i)/2]) }", "{ [k] : exists a : k = 2a+1 }",
2843 "{ [i] -> -1/2 + 1/2 * i }" },
2844 { "{ [i] -> i^2 : i != 0 }", "{ [i] : i != 0 }", "{ [i] -> i^2 }" },
2847 static int test_pwqp(struct isl_ctx
*ctx
)
2852 isl_pw_qpolynomial
*pwqp1
, *pwqp2
;
2855 str
= "{ [i,j,k] -> 1 + 9 * [i/5] + 7 * [j/11] + 4 * [k/13] }";
2856 pwqp1
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2858 pwqp1
= isl_pw_qpolynomial_move_dims(pwqp1
, isl_dim_param
, 0,
2861 str
= "[j] -> { [i,k] -> 1 + 9 * [i/5] + 7 * [j/11] + 4 * [k/13] }";
2862 pwqp2
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2864 pwqp1
= isl_pw_qpolynomial_sub(pwqp1
, pwqp2
);
2866 assert(isl_pw_qpolynomial_is_zero(pwqp1
));
2868 isl_pw_qpolynomial_free(pwqp1
);
2870 for (i
= 0; i
< ARRAY_SIZE(pwqp_gist_tests
); ++i
) {
2871 str
= pwqp_gist_tests
[i
].pwqp
;
2872 pwqp1
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2873 str
= pwqp_gist_tests
[i
].set
;
2874 set
= isl_set_read_from_str(ctx
, str
);
2875 pwqp1
= isl_pw_qpolynomial_gist(pwqp1
, set
);
2876 str
= pwqp_gist_tests
[i
].gist
;
2877 pwqp2
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2878 pwqp1
= isl_pw_qpolynomial_sub(pwqp1
, pwqp2
);
2879 equal
= isl_pw_qpolynomial_is_zero(pwqp1
);
2880 isl_pw_qpolynomial_free(pwqp1
);
2885 isl_die(ctx
, isl_error_unknown
,
2886 "unexpected result", return -1);
2889 str
= "{ [i] -> ([([i/2] + [i/2])/5]) }";
2890 pwqp1
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2891 str
= "{ [i] -> ([(2 * [i/2])/5]) }";
2892 pwqp2
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2894 pwqp1
= isl_pw_qpolynomial_sub(pwqp1
, pwqp2
);
2896 assert(isl_pw_qpolynomial_is_zero(pwqp1
));
2898 isl_pw_qpolynomial_free(pwqp1
);
2900 str
= "{ [x] -> ([x/2] + [(x+1)/2]) }";
2901 pwqp1
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2902 str
= "{ [x] -> x }";
2903 pwqp2
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2905 pwqp1
= isl_pw_qpolynomial_sub(pwqp1
, pwqp2
);
2907 assert(isl_pw_qpolynomial_is_zero(pwqp1
));
2909 isl_pw_qpolynomial_free(pwqp1
);
2911 str
= "{ [i] -> ([i/2]) : i >= 0; [i] -> ([i/3]) : i < 0 }";
2912 pwqp1
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2913 pwqp2
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2914 pwqp1
= isl_pw_qpolynomial_coalesce(pwqp1
);
2915 pwqp1
= isl_pw_qpolynomial_sub(pwqp1
, pwqp2
);
2916 assert(isl_pw_qpolynomial_is_zero(pwqp1
));
2917 isl_pw_qpolynomial_free(pwqp1
);
2919 str
= "{ [a,b,a] -> (([(2*[a/3]+b)/5]) * ([(2*[a/3]+b)/5])) }";
2920 pwqp2
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2921 str
= "{ [a,b,c] -> (([(2*[a/3]+b)/5]) * ([(2*[c/3]+b)/5])) }";
2922 pwqp1
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2923 set
= isl_set_read_from_str(ctx
, "{ [a,b,a] }");
2924 pwqp1
= isl_pw_qpolynomial_intersect_domain(pwqp1
, set
);
2925 equal
= isl_pw_qpolynomial_plain_is_equal(pwqp1
, pwqp2
);
2926 isl_pw_qpolynomial_free(pwqp1
);
2927 isl_pw_qpolynomial_free(pwqp2
);
2931 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
2933 str
= "{ [a,b,c] -> (([(2*[a/3]+1)/5]) * ([(2*[c/3]+1)/5])) : b = 1 }";
2934 pwqp2
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2935 str
= "{ [a,b,c] -> (([(2*[a/3]+b)/5]) * ([(2*[c/3]+b)/5])) }";
2936 pwqp1
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2937 pwqp1
= isl_pw_qpolynomial_fix_val(pwqp1
, isl_dim_set
, 1,
2939 equal
= isl_pw_qpolynomial_plain_is_equal(pwqp1
, pwqp2
);
2940 isl_pw_qpolynomial_free(pwqp1
);
2941 isl_pw_qpolynomial_free(pwqp2
);
2945 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
2950 static int test_split_periods(isl_ctx
*ctx
)
2953 isl_pw_qpolynomial
*pwqp
;
2955 str
= "{ [U,V] -> 1/3 * U + 2/3 * V - [(U + 2V)/3] + [U/2] : "
2956 "U + 2V + 3 >= 0 and - U -2V >= 0 and - U + 10 >= 0 and "
2957 "U >= 0; [U,V] -> U^2 : U >= 100 }";
2958 pwqp
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2960 pwqp
= isl_pw_qpolynomial_split_periods(pwqp
, 2);
2962 isl_pw_qpolynomial_free(pwqp
);
2970 static int test_union(isl_ctx
*ctx
)
2973 isl_union_set
*uset1
, *uset2
;
2974 isl_union_map
*umap1
, *umap2
;
2977 str
= "{ [i] : 0 <= i <= 1 }";
2978 uset1
= isl_union_set_read_from_str(ctx
, str
);
2979 str
= "{ [1] -> [0] }";
2980 umap1
= isl_union_map_read_from_str(ctx
, str
);
2982 umap2
= isl_union_set_lex_gt_union_set(isl_union_set_copy(uset1
), uset1
);
2983 equal
= isl_union_map_is_equal(umap1
, umap2
);
2985 isl_union_map_free(umap1
);
2986 isl_union_map_free(umap2
);
2991 isl_die(ctx
, isl_error_unknown
, "union maps not equal",
2994 str
= "{ A[i] -> B[i]; B[i] -> C[i]; A[0] -> C[1] }";
2995 umap1
= isl_union_map_read_from_str(ctx
, str
);
2996 str
= "{ A[i]; B[i] }";
2997 uset1
= isl_union_set_read_from_str(ctx
, str
);
2999 uset2
= isl_union_map_domain(umap1
);
3001 equal
= isl_union_set_is_equal(uset1
, uset2
);
3003 isl_union_set_free(uset1
);
3004 isl_union_set_free(uset2
);
3009 isl_die(ctx
, isl_error_unknown
, "union sets not equal",
3015 /* Check that computing a bound of a non-zero polynomial over an unbounded
3016 * domain does not produce a rational value.
3017 * In particular, check that the upper bound is infinity.
3019 static int test_bound_unbounded_domain(isl_ctx
*ctx
)
3022 isl_pw_qpolynomial
*pwqp
;
3023 isl_pw_qpolynomial_fold
*pwf
, *pwf2
;
3026 str
= "{ [m,n] -> -m * n }";
3027 pwqp
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
3028 pwf
= isl_pw_qpolynomial_bound(pwqp
, isl_fold_max
, NULL
);
3030 pwqp
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
3031 pwf2
= isl_pw_qpolynomial_bound(pwqp
, isl_fold_max
, NULL
);
3032 equal
= isl_pw_qpolynomial_fold_plain_is_equal(pwf
, pwf2
);
3033 isl_pw_qpolynomial_fold_free(pwf
);
3034 isl_pw_qpolynomial_fold_free(pwf2
);
3039 isl_die(ctx
, isl_error_unknown
,
3040 "expecting infinite polynomial bound", return -1);
3045 static int test_bound(isl_ctx
*ctx
)
3049 isl_pw_qpolynomial
*pwqp
;
3050 isl_pw_qpolynomial_fold
*pwf
;
3052 if (test_bound_unbounded_domain(ctx
) < 0)
3055 str
= "{ [[a, b, c, d] -> [e]] -> 0 }";
3056 pwqp
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
3057 pwf
= isl_pw_qpolynomial_bound(pwqp
, isl_fold_max
, NULL
);
3058 dim
= isl_pw_qpolynomial_fold_dim(pwf
, isl_dim_in
);
3059 isl_pw_qpolynomial_fold_free(pwf
);
3061 isl_die(ctx
, isl_error_unknown
, "unexpected input dimension",
3064 str
= "{ [[x]->[x]] -> 1 : exists a : x = 2 a }";
3065 pwqp
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
3066 pwf
= isl_pw_qpolynomial_bound(pwqp
, isl_fold_max
, NULL
);
3067 dim
= isl_pw_qpolynomial_fold_dim(pwf
, isl_dim_in
);
3068 isl_pw_qpolynomial_fold_free(pwf
);
3070 isl_die(ctx
, isl_error_unknown
, "unexpected input dimension",
3076 static int test_lift(isl_ctx
*ctx
)
3079 isl_basic_map
*bmap
;
3080 isl_basic_set
*bset
;
3082 str
= "{ [i0] : exists e0 : i0 = 4e0 }";
3083 bset
= isl_basic_set_read_from_str(ctx
, str
);
3084 bset
= isl_basic_set_lift(bset
);
3085 bmap
= isl_basic_map_from_range(bset
);
3086 bset
= isl_basic_map_domain(bmap
);
3087 isl_basic_set_free(bset
);
3096 } subset_tests
[] = {
3098 "{ [i0, i1] : exists (e0 = [(i0 - i1)/16], e1: "
3099 "16e0 <= i0 - i1 and 16e0 >= -15 + i0 - i1 and "
3100 "16e1 <= i1 and 16e0 >= -i1 and 16e1 >= -i0 + i1) }", 1 },
3102 "{ [i] : exists (e0 = [(255i)/256], e1 = [(127i + 65e0)/191], "
3103 "e2 = [(3i + 61e1)/65], e3 = [(52i + 12e2)/61], "
3104 "e4 = [(2i + e3)/3], e5 = [(4i + e3)/4], e6 = [(8i + e3)/12]: "
3105 "3e4 = 2i + e3 and 4e5 = 4i + e3 and 12e6 = 8i + e3 and "
3106 "i <= 255 and 64e3 >= -45 + 67i and i >= 0 and "
3107 "256e0 <= 255i and 256e0 >= -255 + 255i and "
3108 "191e1 <= 127i + 65e0 and 191e1 >= -190 + 127i + 65e0 and "
3109 "65e2 <= 3i + 61e1 and 65e2 >= -64 + 3i + 61e1 and "
3110 "61e3 <= 52i + 12e2 and 61e3 >= -60 + 52i + 12e2) }", 1 },
3111 { "{ [i] : 0 <= i <= 10 }", "{ rat: [i] : 0 <= i <= 10 }", 1 },
3112 { "{ rat: [i] : 0 <= i <= 10 }", "{ [i] : 0 <= i <= 10 }", 0 },
3113 { "{ rat: [0] }", "{ [i] : 0 <= i <= 10 }", 1 },
3114 { "{ rat: [(1)/2] }", "{ [i] : 0 <= i <= 10 }", 0 },
3115 { "{ [t, i] : (exists (e0 = [(2 + t)/4]: 4e0 <= 2 + t and "
3116 "4e0 >= -1 + t and i >= 57 and i <= 62 and "
3117 "4e0 <= 62 + t - i and 4e0 >= -61 + t + i and "
3118 "t >= 0 and t <= 511 and 4e0 <= -57 + t + i and "
3119 "4e0 >= 58 + t - i and i >= 58 + t and i >= 62 - t)) }",
3120 "{ [i0, i1] : (exists (e0 = [(4 + i0)/4]: 4e0 <= 62 + i0 - i1 and "
3121 "4e0 >= 1 + i0 and i0 >= 0 and i0 <= 511 and "
3122 "4e0 <= -57 + i0 + i1)) or "
3123 "(exists (e0 = [(2 + i0)/4]: 4e0 <= i0 and "
3124 "4e0 >= 58 + i0 - i1 and i0 >= 2 and i0 <= 511 and "
3125 "4e0 >= -61 + i0 + i1)) or "
3126 "(i1 <= 66 - i0 and i0 >= 2 and i1 >= 59 + i0) }", 1 },
3127 { "[a, b] -> { : a = 0 and b = -1 }", "[b, a] -> { : b >= -10 }", 1 },
3130 static int test_subset(isl_ctx
*ctx
)
3133 isl_set
*set1
, *set2
;
3136 for (i
= 0; i
< ARRAY_SIZE(subset_tests
); ++i
) {
3137 set1
= isl_set_read_from_str(ctx
, subset_tests
[i
].set1
);
3138 set2
= isl_set_read_from_str(ctx
, subset_tests
[i
].set2
);
3139 subset
= isl_set_is_subset(set1
, set2
);
3144 if (subset
!= subset_tests
[i
].subset
)
3145 isl_die(ctx
, isl_error_unknown
,
3146 "incorrect subset result", return -1);
3153 const char *minuend
;
3154 const char *subtrahend
;
3155 const char *difference
;
3156 } subtract_domain_tests
[] = {
3157 { "{ A[i] -> B[i] }", "{ A[i] }", "{ }" },
3158 { "{ A[i] -> B[i] }", "{ B[i] }", "{ A[i] -> B[i] }" },
3159 { "{ A[i] -> B[i] }", "{ A[i] : i > 0 }", "{ A[i] -> B[i] : i <= 0 }" },
3162 static int test_subtract(isl_ctx
*ctx
)
3165 isl_union_map
*umap1
, *umap2
;
3166 isl_union_pw_multi_aff
*upma1
, *upma2
;
3167 isl_union_set
*uset
;
3170 for (i
= 0; i
< ARRAY_SIZE(subtract_domain_tests
); ++i
) {
3171 umap1
= isl_union_map_read_from_str(ctx
,
3172 subtract_domain_tests
[i
].minuend
);
3173 uset
= isl_union_set_read_from_str(ctx
,
3174 subtract_domain_tests
[i
].subtrahend
);
3175 umap2
= isl_union_map_read_from_str(ctx
,
3176 subtract_domain_tests
[i
].difference
);
3177 umap1
= isl_union_map_subtract_domain(umap1
, uset
);
3178 equal
= isl_union_map_is_equal(umap1
, umap2
);
3179 isl_union_map_free(umap1
);
3180 isl_union_map_free(umap2
);
3184 isl_die(ctx
, isl_error_unknown
,
3185 "incorrect subtract domain result", return -1);
3188 for (i
= 0; i
< ARRAY_SIZE(subtract_domain_tests
); ++i
) {
3189 upma1
= isl_union_pw_multi_aff_read_from_str(ctx
,
3190 subtract_domain_tests
[i
].minuend
);
3191 uset
= isl_union_set_read_from_str(ctx
,
3192 subtract_domain_tests
[i
].subtrahend
);
3193 upma2
= isl_union_pw_multi_aff_read_from_str(ctx
,
3194 subtract_domain_tests
[i
].difference
);
3195 upma1
= isl_union_pw_multi_aff_subtract_domain(upma1
, uset
);
3196 equal
= isl_union_pw_multi_aff_plain_is_equal(upma1
, upma2
);
3197 isl_union_pw_multi_aff_free(upma1
);
3198 isl_union_pw_multi_aff_free(upma2
);
3202 isl_die(ctx
, isl_error_unknown
,
3203 "incorrect subtract domain result", return -1);
3209 /* Check that intersecting the empty basic set with another basic set
3210 * does not increase the number of constraints. In particular,
3211 * the empty basic set should maintain its canonical representation.
3213 static int test_intersect(isl_ctx
*ctx
)
3216 isl_basic_set
*bset1
, *bset2
;
3218 bset1
= isl_basic_set_read_from_str(ctx
, "{ [a,b,c] : 1 = 0 }");
3219 bset2
= isl_basic_set_read_from_str(ctx
, "{ [1,2,3] }");
3220 n1
= isl_basic_set_n_constraint(bset1
);
3221 bset1
= isl_basic_set_intersect(bset1
, bset2
);
3222 n2
= isl_basic_set_n_constraint(bset1
);
3223 isl_basic_set_free(bset1
);
3227 isl_die(ctx
, isl_error_unknown
,
3228 "number of constraints of empty set changed",
3234 int test_factorize(isl_ctx
*ctx
)
3237 isl_basic_set
*bset
;
3240 str
= "{ [i0, i1, i2, i3, i4, i5, i6, i7] : 3i5 <= 2 - 2i0 and "
3241 "i0 >= -2 and i6 >= 1 + i3 and i7 >= 0 and 3i5 >= -2i0 and "
3242 "2i4 <= i2 and i6 >= 1 + 2i0 + 3i1 and i4 <= -1 and "
3243 "i6 >= 1 + 2i0 + 3i5 and i6 <= 2 + 2i0 + 3i5 and "
3244 "3i5 <= 2 - 2i0 - i2 + 3i4 and i6 <= 2 + 2i0 + 3i1 and "
3245 "i0 <= -1 and i7 <= i2 + i3 - 3i4 - i6 and "
3246 "3i5 >= -2i0 - i2 + 3i4 }";
3247 bset
= isl_basic_set_read_from_str(ctx
, str
);
3248 f
= isl_basic_set_factorizer(bset
);
3249 isl_basic_set_free(bset
);
3250 isl_factorizer_free(f
);
3252 isl_die(ctx
, isl_error_unknown
,
3253 "failed to construct factorizer", return -1);
3255 str
= "{ [i0, i1, i2, i3, i4, i5, i6, i7, i8, i9, i10, i11, i12] : "
3256 "i12 <= 2 + i0 - i11 and 2i8 >= -i4 and i11 >= i1 and "
3257 "3i5 <= -i2 and 2i11 >= -i4 - 2i7 and i11 <= 3 + i0 + 3i9 and "
3258 "i11 <= -i4 - 2i7 and i12 >= -i10 and i2 >= -2 and "
3259 "i11 >= i1 + 3i10 and i11 >= 1 + i0 + 3i9 and "
3260 "i11 <= 1 - i4 - 2i8 and 6i6 <= 6 - i2 and 3i6 >= 1 - i2 and "
3261 "i11 <= 2 + i1 and i12 <= i4 + i11 and i12 >= i0 - i11 and "
3262 "3i5 >= -2 - i2 and i12 >= -1 + i4 + i11 and 3i3 <= 3 - i2 and "
3263 "9i6 <= 11 - i2 + 6i5 and 3i3 >= 1 - i2 and "
3264 "9i6 <= 5 - i2 + 6i3 and i12 <= -1 and i2 <= 0 }";
3265 bset
= isl_basic_set_read_from_str(ctx
, str
);
3266 f
= isl_basic_set_factorizer(bset
);
3267 isl_basic_set_free(bset
);
3268 isl_factorizer_free(f
);
3270 isl_die(ctx
, isl_error_unknown
,
3271 "failed to construct factorizer", return -1);
3276 static isl_stat
check_injective(__isl_take isl_map
*map
, void *user
)
3278 int *injective
= user
;
3280 *injective
= isl_map_is_injective(map
);
3283 if (*injective
< 0 || !*injective
)
3284 return isl_stat_error
;
3289 int test_one_schedule(isl_ctx
*ctx
, const char *d
, const char *w
,
3290 const char *r
, const char *s
, int tilable
, int parallel
)
3294 isl_union_map
*W
, *R
, *S
;
3295 isl_union_map
*empty
;
3296 isl_union_map
*dep_raw
, *dep_war
, *dep_waw
, *dep
;
3297 isl_union_map
*validity
, *proximity
, *coincidence
;
3298 isl_union_map
*schedule
;
3299 isl_union_map
*test
;
3300 isl_union_set
*delta
;
3301 isl_union_set
*domain
;
3305 isl_schedule_constraints
*sc
;
3306 isl_schedule
*sched
;
3307 int is_nonneg
, is_parallel
, is_tilable
, is_injection
, is_complete
;
3309 D
= isl_union_set_read_from_str(ctx
, d
);
3310 W
= isl_union_map_read_from_str(ctx
, w
);
3311 R
= isl_union_map_read_from_str(ctx
, r
);
3312 S
= isl_union_map_read_from_str(ctx
, s
);
3314 W
= isl_union_map_intersect_domain(W
, isl_union_set_copy(D
));
3315 R
= isl_union_map_intersect_domain(R
, isl_union_set_copy(D
));
3317 empty
= isl_union_map_empty(isl_union_map_get_space(S
));
3318 isl_union_map_compute_flow(isl_union_map_copy(R
),
3319 isl_union_map_copy(W
), empty
,
3320 isl_union_map_copy(S
),
3321 &dep_raw
, NULL
, NULL
, NULL
);
3322 isl_union_map_compute_flow(isl_union_map_copy(W
),
3323 isl_union_map_copy(W
),
3324 isl_union_map_copy(R
),
3325 isl_union_map_copy(S
),
3326 &dep_waw
, &dep_war
, NULL
, NULL
);
3328 dep
= isl_union_map_union(dep_waw
, dep_war
);
3329 dep
= isl_union_map_union(dep
, dep_raw
);
3330 validity
= isl_union_map_copy(dep
);
3331 coincidence
= isl_union_map_copy(dep
);
3332 proximity
= isl_union_map_copy(dep
);
3334 sc
= isl_schedule_constraints_on_domain(isl_union_set_copy(D
));
3335 sc
= isl_schedule_constraints_set_validity(sc
, validity
);
3336 sc
= isl_schedule_constraints_set_coincidence(sc
, coincidence
);
3337 sc
= isl_schedule_constraints_set_proximity(sc
, proximity
);
3338 sched
= isl_schedule_constraints_compute_schedule(sc
);
3339 schedule
= isl_schedule_get_map(sched
);
3340 isl_schedule_free(sched
);
3341 isl_union_map_free(W
);
3342 isl_union_map_free(R
);
3343 isl_union_map_free(S
);
3346 isl_union_map_foreach_map(schedule
, &check_injective
, &is_injection
);
3348 domain
= isl_union_map_domain(isl_union_map_copy(schedule
));
3349 is_complete
= isl_union_set_is_subset(D
, domain
);
3350 isl_union_set_free(D
);
3351 isl_union_set_free(domain
);
3353 test
= isl_union_map_reverse(isl_union_map_copy(schedule
));
3354 test
= isl_union_map_apply_range(test
, dep
);
3355 test
= isl_union_map_apply_range(test
, schedule
);
3357 delta
= isl_union_map_deltas(test
);
3358 if (isl_union_set_n_set(delta
) == 0) {
3362 isl_union_set_free(delta
);
3364 delta_set
= isl_set_from_union_set(delta
);
3366 slice
= isl_set_universe(isl_set_get_space(delta_set
));
3367 for (i
= 0; i
< tilable
; ++i
)
3368 slice
= isl_set_lower_bound_si(slice
, isl_dim_set
, i
, 0);
3369 is_tilable
= isl_set_is_subset(delta_set
, slice
);
3370 isl_set_free(slice
);
3372 slice
= isl_set_universe(isl_set_get_space(delta_set
));
3373 for (i
= 0; i
< parallel
; ++i
)
3374 slice
= isl_set_fix_si(slice
, isl_dim_set
, i
, 0);
3375 is_parallel
= isl_set_is_subset(delta_set
, slice
);
3376 isl_set_free(slice
);
3378 origin
= isl_set_universe(isl_set_get_space(delta_set
));
3379 for (i
= 0; i
< isl_set_dim(origin
, isl_dim_set
); ++i
)
3380 origin
= isl_set_fix_si(origin
, isl_dim_set
, i
, 0);
3382 delta_set
= isl_set_union(delta_set
, isl_set_copy(origin
));
3383 delta_set
= isl_set_lexmin(delta_set
);
3385 is_nonneg
= isl_set_is_equal(delta_set
, origin
);
3387 isl_set_free(origin
);
3388 isl_set_free(delta_set
);
3391 if (is_nonneg
< 0 || is_parallel
< 0 || is_tilable
< 0 ||
3392 is_injection
< 0 || is_complete
< 0)
3395 isl_die(ctx
, isl_error_unknown
,
3396 "generated schedule incomplete", return -1);
3398 isl_die(ctx
, isl_error_unknown
,
3399 "generated schedule not injective on each statement",
3402 isl_die(ctx
, isl_error_unknown
,
3403 "negative dependences in generated schedule",
3406 isl_die(ctx
, isl_error_unknown
,
3407 "generated schedule not as tilable as expected",
3410 isl_die(ctx
, isl_error_unknown
,
3411 "generated schedule not as parallel as expected",
3417 /* Compute a schedule for the given instance set, validity constraints,
3418 * proximity constraints and context and return a corresponding union map
3421 static __isl_give isl_union_map
*compute_schedule_with_context(isl_ctx
*ctx
,
3422 const char *domain
, const char *validity
, const char *proximity
,
3423 const char *context
)
3428 isl_union_map
*prox
;
3429 isl_schedule_constraints
*sc
;
3430 isl_schedule
*schedule
;
3431 isl_union_map
*sched
;
3433 con
= isl_set_read_from_str(ctx
, context
);
3434 dom
= isl_union_set_read_from_str(ctx
, domain
);
3435 dep
= isl_union_map_read_from_str(ctx
, validity
);
3436 prox
= isl_union_map_read_from_str(ctx
, proximity
);
3437 sc
= isl_schedule_constraints_on_domain(dom
);
3438 sc
= isl_schedule_constraints_set_context(sc
, con
);
3439 sc
= isl_schedule_constraints_set_validity(sc
, dep
);
3440 sc
= isl_schedule_constraints_set_proximity(sc
, prox
);
3441 schedule
= isl_schedule_constraints_compute_schedule(sc
);
3442 sched
= isl_schedule_get_map(schedule
);
3443 isl_schedule_free(schedule
);
3448 /* Compute a schedule for the given instance set, validity constraints and
3449 * proximity constraints and return a corresponding union map representation.
3451 static __isl_give isl_union_map
*compute_schedule(isl_ctx
*ctx
,
3452 const char *domain
, const char *validity
, const char *proximity
)
3454 return compute_schedule_with_context(ctx
, domain
, validity
, proximity
,
3458 /* Check that a schedule can be constructed on the given domain
3459 * with the given validity and proximity constraints.
3461 static int test_has_schedule(isl_ctx
*ctx
, const char *domain
,
3462 const char *validity
, const char *proximity
)
3464 isl_union_map
*sched
;
3466 sched
= compute_schedule(ctx
, domain
, validity
, proximity
);
3470 isl_union_map_free(sched
);
3474 int test_special_schedule(isl_ctx
*ctx
, const char *domain
,
3475 const char *validity
, const char *proximity
, const char *expected_sched
)
3477 isl_union_map
*sched1
, *sched2
;
3480 sched1
= compute_schedule(ctx
, domain
, validity
, proximity
);
3481 sched2
= isl_union_map_read_from_str(ctx
, expected_sched
);
3483 equal
= isl_union_map_is_equal(sched1
, sched2
);
3484 isl_union_map_free(sched1
);
3485 isl_union_map_free(sched2
);
3490 isl_die(ctx
, isl_error_unknown
, "unexpected schedule",
3496 /* Check that the schedule map is properly padded, even after being
3497 * reconstructed from the band forest.
3499 static int test_padded_schedule(isl_ctx
*ctx
)
3503 isl_union_map
*validity
, *proximity
;
3504 isl_schedule_constraints
*sc
;
3505 isl_schedule
*sched
;
3506 isl_union_map
*map1
, *map2
;
3507 isl_band_list
*list
;
3510 str
= "[N] -> { S0[i] : 0 <= i <= N; S1[i, j] : 0 <= i, j <= N }";
3511 D
= isl_union_set_read_from_str(ctx
, str
);
3512 validity
= isl_union_map_empty(isl_union_set_get_space(D
));
3513 proximity
= isl_union_map_copy(validity
);
3514 sc
= isl_schedule_constraints_on_domain(D
);
3515 sc
= isl_schedule_constraints_set_validity(sc
, validity
);
3516 sc
= isl_schedule_constraints_set_proximity(sc
, proximity
);
3517 sched
= isl_schedule_constraints_compute_schedule(sc
);
3518 map1
= isl_schedule_get_map(sched
);
3519 list
= isl_schedule_get_band_forest(sched
);
3520 isl_band_list_free(list
);
3521 map2
= isl_schedule_get_map(sched
);
3522 isl_schedule_free(sched
);
3523 equal
= isl_union_map_is_equal(map1
, map2
);
3524 isl_union_map_free(map1
);
3525 isl_union_map_free(map2
);
3530 isl_die(ctx
, isl_error_unknown
,
3531 "reconstructed schedule map not the same as original",
3537 /* Check that conditional validity constraints are also taken into
3538 * account across bands.
3539 * In particular, try to make sure that live ranges D[1,0]->C[2,1] and
3540 * D[2,0]->C[3,0] are not local in the outer band of the generated schedule
3541 * and then check that the adjacent order constraint C[2,1]->D[2,0]
3542 * is enforced by the rest of the schedule.
3544 static int test_special_conditional_schedule_constraints(isl_ctx
*ctx
)
3547 isl_union_set
*domain
;
3548 isl_union_map
*validity
, *proximity
, *condition
;
3549 isl_union_map
*sink
, *source
, *dep
;
3550 isl_schedule_constraints
*sc
;
3551 isl_schedule
*schedule
;
3552 isl_union_access_info
*access
;
3553 isl_union_flow
*flow
;
3556 str
= "[n] -> { C[k, i] : k <= -1 + n and i >= 0 and i <= -1 + k; "
3557 "A[k] : k >= 1 and k <= -1 + n; "
3558 "B[k, i] : k <= -1 + n and i >= 0 and i <= -1 + k; "
3559 "D[k, i] : k <= -1 + n and i >= 0 and i <= -1 + k }";
3560 domain
= isl_union_set_read_from_str(ctx
, str
);
3561 sc
= isl_schedule_constraints_on_domain(domain
);
3562 str
= "[n] -> { D[k, i] -> C[1 + k, k - i] : "
3563 "k <= -2 + n and i >= 1 and i <= -1 + k; "
3564 "D[k, i] -> C[1 + k, i] : "
3565 "k <= -2 + n and i >= 1 and i <= -1 + k; "
3566 "D[k, 0] -> C[1 + k, k] : k >= 1 and k <= -2 + n; "
3567 "D[k, 0] -> C[1 + k, 0] : k >= 1 and k <= -2 + n }";
3568 validity
= isl_union_map_read_from_str(ctx
, str
);
3569 sc
= isl_schedule_constraints_set_validity(sc
, validity
);
3570 str
= "[n] -> { C[k, i] -> D[k, i] : "
3571 "0 <= i <= -1 + k and k <= -1 + n }";
3572 proximity
= isl_union_map_read_from_str(ctx
, str
);
3573 sc
= isl_schedule_constraints_set_proximity(sc
, proximity
);
3574 str
= "[n] -> { [D[k, i] -> a[]] -> [C[1 + k, k - i] -> b[]] : "
3575 "i <= -1 + k and i >= 1 and k <= -2 + n; "
3576 "[B[k, i] -> c[]] -> [B[k, 1 + i] -> c[]] : "
3577 "k <= -1 + n and i >= 0 and i <= -2 + k }";
3578 condition
= isl_union_map_read_from_str(ctx
, str
);
3579 str
= "[n] -> { [B[k, i] -> e[]] -> [D[k, i] -> a[]] : "
3580 "i >= 0 and i <= -1 + k and k <= -1 + n; "
3581 "[C[k, i] -> b[]] -> [D[k', -1 + k - i] -> a[]] : "
3582 "i >= 0 and i <= -1 + k and k <= -1 + n and "
3583 "k' <= -1 + n and k' >= k - i and k' >= 1 + k; "
3584 "[C[k, i] -> b[]] -> [D[k, -1 + k - i] -> a[]] : "
3585 "i >= 0 and i <= -1 + k and k <= -1 + n; "
3586 "[B[k, i] -> c[]] -> [A[k'] -> d[]] : "
3587 "k <= -1 + n and i >= 0 and i <= -1 + k and "
3588 "k' >= 1 and k' <= -1 + n and k' >= 1 + k }";
3589 validity
= isl_union_map_read_from_str(ctx
, str
);
3590 sc
= isl_schedule_constraints_set_conditional_validity(sc
, condition
,
3592 schedule
= isl_schedule_constraints_compute_schedule(sc
);
3593 str
= "{ D[2,0] -> [] }";
3594 sink
= isl_union_map_read_from_str(ctx
, str
);
3595 access
= isl_union_access_info_from_sink(sink
);
3596 str
= "{ C[2,1] -> [] }";
3597 source
= isl_union_map_read_from_str(ctx
, str
);
3598 access
= isl_union_access_info_set_must_source(access
, source
);
3599 access
= isl_union_access_info_set_schedule(access
, schedule
);
3600 flow
= isl_union_access_info_compute_flow(access
);
3601 dep
= isl_union_flow_get_must_dependence(flow
);
3602 isl_union_flow_free(flow
);
3603 empty
= isl_union_map_is_empty(dep
);
3604 isl_union_map_free(dep
);
3609 isl_die(ctx
, isl_error_unknown
,
3610 "conditional validity not respected", return -1);
3615 /* Input for testing of schedule construction based on
3616 * conditional constraints.
3618 * domain is the iteration domain
3619 * flow are the flow dependences, which determine the validity and
3620 * proximity constraints
3621 * condition are the conditions on the conditional validity constraints
3622 * conditional_validity are the conditional validity constraints
3623 * outer_band_n is the expected number of members in the outer band
3628 const char *condition
;
3629 const char *conditional_validity
;
3631 } live_range_tests
[] = {
3632 /* Contrived example that illustrates that we need to keep
3633 * track of tagged condition dependences and
3634 * tagged conditional validity dependences
3635 * in isl_sched_edge separately.
3636 * In particular, the conditional validity constraints on A
3637 * cannot be satisfied,
3638 * but they can be ignored because there are no corresponding
3639 * condition constraints. However, we do have an additional
3640 * conditional validity constraint that maps to the same
3641 * dependence relation
3642 * as the condition constraint on B. If we did not make a distinction
3643 * between tagged condition and tagged conditional validity
3644 * dependences, then we
3645 * could end up treating this shared dependence as an condition
3646 * constraint on A, forcing a localization of the conditions,
3647 * which is impossible.
3649 { "{ S[i] : 0 <= 1 < 100; T[i] : 0 <= 1 < 100 }",
3650 "{ S[i] -> S[i+1] : 0 <= i < 99 }",
3651 "{ [S[i] -> B[]] -> [S[i+1] -> B[]] : 0 <= i < 99 }",
3652 "{ [S[i] -> A[]] -> [T[i'] -> A[]] : 0 <= i', i < 100 and i != i';"
3653 "[T[i] -> A[]] -> [S[i'] -> A[]] : 0 <= i', i < 100 and i != i';"
3654 "[S[i] -> A[]] -> [S[i+1] -> A[]] : 0 <= i < 99 }",
3657 /* TACO 2013 Fig. 7 */
3658 { "[n] -> { S1[i,j] : 0 <= i,j < n; S2[i,j] : 0 <= i,j < n }",
3659 "[n] -> { S1[i,j] -> S2[i,j] : 0 <= i,j < n;"
3660 "S2[i,j] -> S2[i,j+1] : 0 <= i < n and 0 <= j < n - 1 }",
3661 "[n] -> { [S1[i,j] -> t[]] -> [S2[i,j] -> t[]] : 0 <= i,j < n;"
3662 "[S2[i,j] -> x1[]] -> [S2[i,j+1] -> x1[]] : "
3663 "0 <= i < n and 0 <= j < n - 1 }",
3664 "[n] -> { [S2[i,j] -> t[]] -> [S1[i,j'] -> t[]] : "
3665 "0 <= i < n and 0 <= j < j' < n;"
3666 "[S2[i,j] -> t[]] -> [S1[i',j'] -> t[]] : "
3667 "0 <= i < i' < n and 0 <= j,j' < n;"
3668 "[S2[i,j] -> x1[]] -> [S2[i,j'] -> x1[]] : "
3669 "0 <= i,j,j' < n and j < j' }",
3672 /* TACO 2013 Fig. 7, without tags */
3673 { "[n] -> { S1[i,j] : 0 <= i,j < n; S2[i,j] : 0 <= i,j < n }",
3674 "[n] -> { S1[i,j] -> S2[i,j] : 0 <= i,j < n;"
3675 "S2[i,j] -> S2[i,j+1] : 0 <= i < n and 0 <= j < n - 1 }",
3676 "[n] -> { S1[i,j] -> S2[i,j] : 0 <= i,j < n;"
3677 "S2[i,j] -> S2[i,j+1] : 0 <= i < n and 0 <= j < n - 1 }",
3678 "[n] -> { S2[i,j] -> S1[i,j'] : 0 <= i < n and 0 <= j < j' < n;"
3679 "S2[i,j] -> S1[i',j'] : 0 <= i < i' < n and 0 <= j,j' < n;"
3680 "S2[i,j] -> S2[i,j'] : 0 <= i,j,j' < n and j < j' }",
3683 /* TACO 2013 Fig. 12 */
3684 { "{ S1[i,0] : 0 <= i <= 1; S2[i,j] : 0 <= i <= 1 and 1 <= j <= 2;"
3685 "S3[i,3] : 0 <= i <= 1 }",
3686 "{ S1[i,0] -> S2[i,1] : 0 <= i <= 1;"
3687 "S2[i,1] -> S2[i,2] : 0 <= i <= 1;"
3688 "S2[i,2] -> S3[i,3] : 0 <= i <= 1 }",
3689 "{ [S1[i,0]->t[]] -> [S2[i,1]->t[]] : 0 <= i <= 1;"
3690 "[S2[i,1]->t[]] -> [S2[i,2]->t[]] : 0 <= i <= 1;"
3691 "[S2[i,2]->t[]] -> [S3[i,3]->t[]] : 0 <= i <= 1 }",
3692 "{ [S2[i,1]->t[]] -> [S2[i,2]->t[]] : 0 <= i <= 1;"
3693 "[S2[0,j]->t[]] -> [S2[1,j']->t[]] : 1 <= j,j' <= 2;"
3694 "[S2[0,j]->t[]] -> [S1[1,0]->t[]] : 1 <= j <= 2;"
3695 "[S3[0,3]->t[]] -> [S2[1,j]->t[]] : 1 <= j <= 2;"
3696 "[S3[0,3]->t[]] -> [S1[1,0]->t[]] }",
3701 /* Test schedule construction based on conditional constraints.
3702 * In particular, check the number of members in the outer band node
3703 * as an indication of whether tiling is possible or not.
3705 static int test_conditional_schedule_constraints(isl_ctx
*ctx
)
3708 isl_union_set
*domain
;
3709 isl_union_map
*condition
;
3710 isl_union_map
*flow
;
3711 isl_union_map
*validity
;
3712 isl_schedule_constraints
*sc
;
3713 isl_schedule
*schedule
;
3714 isl_schedule_node
*node
;
3717 if (test_special_conditional_schedule_constraints(ctx
) < 0)
3720 for (i
= 0; i
< ARRAY_SIZE(live_range_tests
); ++i
) {
3721 domain
= isl_union_set_read_from_str(ctx
,
3722 live_range_tests
[i
].domain
);
3723 flow
= isl_union_map_read_from_str(ctx
,
3724 live_range_tests
[i
].flow
);
3725 condition
= isl_union_map_read_from_str(ctx
,
3726 live_range_tests
[i
].condition
);
3727 validity
= isl_union_map_read_from_str(ctx
,
3728 live_range_tests
[i
].conditional_validity
);
3729 sc
= isl_schedule_constraints_on_domain(domain
);
3730 sc
= isl_schedule_constraints_set_validity(sc
,
3731 isl_union_map_copy(flow
));
3732 sc
= isl_schedule_constraints_set_proximity(sc
, flow
);
3733 sc
= isl_schedule_constraints_set_conditional_validity(sc
,
3734 condition
, validity
);
3735 schedule
= isl_schedule_constraints_compute_schedule(sc
);
3736 node
= isl_schedule_get_root(schedule
);
3738 isl_schedule_node_get_type(node
) != isl_schedule_node_band
)
3739 node
= isl_schedule_node_first_child(node
);
3740 n_member
= isl_schedule_node_band_n_member(node
);
3741 isl_schedule_node_free(node
);
3742 isl_schedule_free(schedule
);
3746 if (n_member
!= live_range_tests
[i
].outer_band_n
)
3747 isl_die(ctx
, isl_error_unknown
,
3748 "unexpected number of members in outer band",
3754 /* Check that the schedule computed for the given instance set and
3755 * dependence relation strongly satisfies the dependences.
3756 * In particular, check that no instance is scheduled before
3757 * or together with an instance on which it depends.
3758 * Earlier versions of isl would produce a schedule that
3759 * only weakly satisfies the dependences.
3761 static int test_strongly_satisfying_schedule(isl_ctx
*ctx
)
3763 const char *domain
, *dep
;
3764 isl_union_map
*D
, *schedule
;
3768 domain
= "{ B[i0, i1] : 0 <= i0 <= 1 and 0 <= i1 <= 11; "
3769 "A[i0] : 0 <= i0 <= 1 }";
3770 dep
= "{ B[i0, i1] -> B[i0, 1 + i1] : 0 <= i0 <= 1 and 0 <= i1 <= 10; "
3771 "B[0, 11] -> A[1]; A[i0] -> B[i0, 0] : 0 <= i0 <= 1 }";
3772 schedule
= compute_schedule(ctx
, domain
, dep
, dep
);
3773 D
= isl_union_map_read_from_str(ctx
, dep
);
3774 D
= isl_union_map_apply_domain(D
, isl_union_map_copy(schedule
));
3775 D
= isl_union_map_apply_range(D
, schedule
);
3776 map
= isl_map_from_union_map(D
);
3777 ge
= isl_map_lex_ge(isl_space_domain(isl_map_get_space(map
)));
3778 map
= isl_map_intersect(map
, ge
);
3779 empty
= isl_map_is_empty(map
);
3785 isl_die(ctx
, isl_error_unknown
,
3786 "dependences not strongly satisfied", return -1);
3791 /* Compute a schedule for input where the instance set constraints
3792 * conflict with the context constraints.
3793 * Earlier versions of isl did not properly handle this situation.
3795 static int test_conflicting_context_schedule(isl_ctx
*ctx
)
3797 isl_union_map
*schedule
;
3798 const char *domain
, *context
;
3800 domain
= "[n] -> { A[] : n >= 0 }";
3801 context
= "[n] -> { : n < 0 }";
3802 schedule
= compute_schedule_with_context(ctx
,
3803 domain
, "{}", "{}", context
);
3804 isl_union_map_free(schedule
);
3812 /* Check that the dependence carrying step is not confused by
3813 * a bound on the coefficient size.
3814 * In particular, force the scheduler to move to a dependence carrying
3815 * step by demanding outer coincidence and bound the size of
3816 * the coefficients. Earlier versions of isl would take this
3817 * bound into account while carrying dependences, breaking
3818 * fundamental assumptions.
3819 * On the other hand, the dependence carrying step now tries
3820 * to prevent loop coalescing by default, so check that indeed
3821 * no loop coalescing occurs by comparing the computed schedule
3822 * to the expected non-coalescing schedule.
3824 static int test_bounded_coefficients_schedule(isl_ctx
*ctx
)
3826 const char *domain
, *dep
;
3829 isl_schedule_constraints
*sc
;
3830 isl_schedule
*schedule
;
3831 isl_union_map
*sched1
, *sched2
;
3834 domain
= "{ C[i0, i1] : 2 <= i0 <= 3999 and 0 <= i1 <= -1 + i0 }";
3835 dep
= "{ C[i0, i1] -> C[i0, 1 + i1] : i0 <= 3999 and i1 >= 0 and "
3837 "C[i0, -1 + i0] -> C[1 + i0, 0] : i0 <= 3998 and i0 >= 1 }";
3838 I
= isl_union_set_read_from_str(ctx
, domain
);
3839 D
= isl_union_map_read_from_str(ctx
, dep
);
3840 sc
= isl_schedule_constraints_on_domain(I
);
3841 sc
= isl_schedule_constraints_set_validity(sc
, isl_union_map_copy(D
));
3842 sc
= isl_schedule_constraints_set_coincidence(sc
, D
);
3843 isl_options_set_schedule_outer_coincidence(ctx
, 1);
3844 isl_options_set_schedule_max_coefficient(ctx
, 20);
3845 schedule
= isl_schedule_constraints_compute_schedule(sc
);
3846 isl_options_set_schedule_max_coefficient(ctx
, -1);
3847 isl_options_set_schedule_outer_coincidence(ctx
, 0);
3848 sched1
= isl_schedule_get_map(schedule
);
3849 isl_schedule_free(schedule
);
3851 sched2
= isl_union_map_read_from_str(ctx
, "{ C[x,y] -> [x,y] }");
3852 equal
= isl_union_map_is_equal(sched1
, sched2
);
3853 isl_union_map_free(sched1
);
3854 isl_union_map_free(sched2
);
3859 isl_die(ctx
, isl_error_unknown
,
3860 "unexpected schedule", return -1);
3865 /* Check that a set of schedule constraints that only allow for
3866 * a coalescing schedule still produces a schedule even if the user
3867 * request a non-coalescing schedule. Earlier versions of isl
3868 * would not handle this case correctly.
3870 static int test_coalescing_schedule(isl_ctx
*ctx
)
3872 const char *domain
, *dep
;
3875 isl_schedule_constraints
*sc
;
3876 isl_schedule
*schedule
;
3877 int treat_coalescing
;
3879 domain
= "{ S[a, b] : 0 <= a <= 1 and 0 <= b <= 1 }";
3880 dep
= "{ S[a, b] -> S[a + b, 1 - b] }";
3881 I
= isl_union_set_read_from_str(ctx
, domain
);
3882 D
= isl_union_map_read_from_str(ctx
, dep
);
3883 sc
= isl_schedule_constraints_on_domain(I
);
3884 sc
= isl_schedule_constraints_set_validity(sc
, D
);
3885 treat_coalescing
= isl_options_get_schedule_treat_coalescing(ctx
);
3886 isl_options_set_schedule_treat_coalescing(ctx
, 1);
3887 schedule
= isl_schedule_constraints_compute_schedule(sc
);
3888 isl_options_set_schedule_treat_coalescing(ctx
, treat_coalescing
);
3889 isl_schedule_free(schedule
);
3895 int test_schedule(isl_ctx
*ctx
)
3897 const char *D
, *W
, *R
, *V
, *P
, *S
;
3898 int max_coincidence
;
3899 int treat_coalescing
;
3901 /* Handle resulting schedule with zero bands. */
3902 if (test_one_schedule(ctx
, "{[]}", "{}", "{}", "{[] -> []}", 0, 0) < 0)
3906 D
= "[T,N] -> { S1[t,i] : 1 <= t <= T and 2 <= i <= N - 1 }";
3907 W
= "{ S1[t,i] -> a[t,i] }";
3908 R
= "{ S1[t,i] -> a[t-1,i]; S1[t,i] -> a[t-1,i-1]; "
3909 "S1[t,i] -> a[t-1,i+1] }";
3910 S
= "{ S1[t,i] -> [t,i] }";
3911 if (test_one_schedule(ctx
, D
, W
, R
, S
, 2, 0) < 0)
3914 /* Fig. 5 of CC2008 */
3915 D
= "[N] -> { S_0[i, j] : i >= 0 and i <= -1 + N and j >= 2 and "
3917 W
= "[N] -> { S_0[i, j] -> a[i, j] : i >= 0 and i <= -1 + N and "
3918 "j >= 2 and j <= -1 + N }";
3919 R
= "[N] -> { S_0[i, j] -> a[j, i] : i >= 0 and i <= -1 + N and "
3920 "j >= 2 and j <= -1 + N; "
3921 "S_0[i, j] -> a[i, -1 + j] : i >= 0 and i <= -1 + N and "
3922 "j >= 2 and j <= -1 + N }";
3923 S
= "[N] -> { S_0[i, j] -> [0, i, 0, j, 0] }";
3924 if (test_one_schedule(ctx
, D
, W
, R
, S
, 2, 0) < 0)
3927 D
= "{ S1[i] : 0 <= i <= 10; S2[i] : 0 <= i <= 9 }";
3928 W
= "{ S1[i] -> a[i] }";
3929 R
= "{ S2[i] -> a[i+1] }";
3930 S
= "{ S1[i] -> [0,i]; S2[i] -> [1,i] }";
3931 if (test_one_schedule(ctx
, D
, W
, R
, S
, 1, 1) < 0)
3934 D
= "{ S1[i] : 0 <= i < 10; S2[i] : 0 <= i < 10 }";
3935 W
= "{ S1[i] -> a[i] }";
3936 R
= "{ S2[i] -> a[9-i] }";
3937 S
= "{ S1[i] -> [0,i]; S2[i] -> [1,i] }";
3938 if (test_one_schedule(ctx
, D
, W
, R
, S
, 1, 1) < 0)
3941 D
= "[N] -> { S1[i] : 0 <= i < N; S2[i] : 0 <= i < N }";
3942 W
= "{ S1[i] -> a[i] }";
3943 R
= "[N] -> { S2[i] -> a[N-1-i] }";
3944 S
= "{ S1[i] -> [0,i]; S2[i] -> [1,i] }";
3945 if (test_one_schedule(ctx
, D
, W
, R
, S
, 1, 1) < 0)
3948 D
= "{ S1[i] : 0 < i < 10; S2[i] : 0 <= i < 10 }";
3949 W
= "{ S1[i] -> a[i]; S2[i] -> b[i] }";
3950 R
= "{ S2[i] -> a[i]; S1[i] -> b[i-1] }";
3951 S
= "{ S1[i] -> [i,0]; S2[i] -> [i,1] }";
3952 if (test_one_schedule(ctx
, D
, W
, R
, S
, 0, 0) < 0)
3955 D
= "[N] -> { S1[i] : 1 <= i <= N; S2[i,j] : 1 <= i,j <= N }";
3956 W
= "{ S1[i] -> a[0,i]; S2[i,j] -> a[i,j] }";
3957 R
= "{ S2[i,j] -> a[i-1,j] }";
3958 S
= "{ S1[i] -> [0,i,0]; S2[i,j] -> [1,i,j] }";
3959 if (test_one_schedule(ctx
, D
, W
, R
, S
, 2, 1) < 0)
3962 D
= "[N] -> { S1[i] : 1 <= i <= N; S2[i,j] : 1 <= i,j <= N }";
3963 W
= "{ S1[i] -> a[i,0]; S2[i,j] -> a[i,j] }";
3964 R
= "{ S2[i,j] -> a[i,j-1] }";
3965 S
= "{ S1[i] -> [0,i,0]; S2[i,j] -> [1,i,j] }";
3966 if (test_one_schedule(ctx
, D
, W
, R
, S
, 2, 1) < 0)
3969 D
= "[N] -> { S_0[]; S_1[i] : i >= 0 and i <= -1 + N; S_2[] }";
3970 W
= "[N] -> { S_0[] -> a[0]; S_2[] -> b[0]; "
3971 "S_1[i] -> a[1 + i] : i >= 0 and i <= -1 + N }";
3972 R
= "[N] -> { S_2[] -> a[N]; S_1[i] -> a[i] : i >= 0 and i <= -1 + N }";
3973 S
= "[N] -> { S_1[i] -> [1, i, 0]; S_2[] -> [2, 0, 1]; "
3974 "S_0[] -> [0, 0, 0] }";
3975 if (test_one_schedule(ctx
, D
, W
, R
, S
, 1, 0) < 0)
3977 ctx
->opt
->schedule_parametric
= 0;
3978 if (test_one_schedule(ctx
, D
, W
, R
, S
, 0, 0) < 0)
3980 ctx
->opt
->schedule_parametric
= 1;
3982 D
= "[N] -> { S1[i] : 1 <= i <= N; S2[i] : 1 <= i <= N; "
3983 "S3[i,j] : 1 <= i,j <= N; S4[i] : 1 <= i <= N }";
3984 W
= "{ S1[i] -> a[i,0]; S2[i] -> a[0,i]; S3[i,j] -> a[i,j] }";
3985 R
= "[N] -> { S3[i,j] -> a[i-1,j]; S3[i,j] -> a[i,j-1]; "
3986 "S4[i] -> a[i,N] }";
3987 S
= "{ S1[i] -> [0,i,0]; S2[i] -> [1,i,0]; S3[i,j] -> [2,i,j]; "
3988 "S4[i] -> [4,i,0] }";
3989 max_coincidence
= isl_options_get_schedule_maximize_coincidence(ctx
);
3990 isl_options_set_schedule_maximize_coincidence(ctx
, 0);
3991 if (test_one_schedule(ctx
, D
, W
, R
, S
, 2, 0) < 0)
3993 isl_options_set_schedule_maximize_coincidence(ctx
, max_coincidence
);
3995 D
= "[N] -> { S_0[i, j] : i >= 1 and i <= N and j >= 1 and j <= N }";
3996 W
= "[N] -> { S_0[i, j] -> s[0] : i >= 1 and i <= N and j >= 1 and "
3998 R
= "[N] -> { S_0[i, j] -> s[0] : i >= 1 and i <= N and j >= 1 and "
4000 "S_0[i, j] -> a[i, j] : i >= 1 and i <= N and j >= 1 and "
4002 S
= "[N] -> { S_0[i, j] -> [0, i, 0, j, 0] }";
4003 if (test_one_schedule(ctx
, D
, W
, R
, S
, 0, 0) < 0)
4006 D
= "[N] -> { S_0[t] : t >= 0 and t <= -1 + N; "
4007 " S_2[t] : t >= 0 and t <= -1 + N; "
4008 " S_1[t, i] : t >= 0 and t <= -1 + N and i >= 0 and "
4010 W
= "[N] -> { S_0[t] -> a[t, 0] : t >= 0 and t <= -1 + N; "
4011 " S_2[t] -> b[t] : t >= 0 and t <= -1 + N; "
4012 " S_1[t, i] -> a[t, 1 + i] : t >= 0 and t <= -1 + N and "
4013 "i >= 0 and i <= -1 + N }";
4014 R
= "[N] -> { S_1[t, i] -> a[t, i] : t >= 0 and t <= -1 + N and "
4015 "i >= 0 and i <= -1 + N; "
4016 " S_2[t] -> a[t, N] : t >= 0 and t <= -1 + N }";
4017 S
= "[N] -> { S_2[t] -> [0, t, 2]; S_1[t, i] -> [0, t, 1, i, 0]; "
4018 " S_0[t] -> [0, t, 0] }";
4020 if (test_one_schedule(ctx
, D
, W
, R
, S
, 2, 1) < 0)
4022 ctx
->opt
->schedule_parametric
= 0;
4023 if (test_one_schedule(ctx
, D
, W
, R
, S
, 0, 0) < 0)
4025 ctx
->opt
->schedule_parametric
= 1;
4027 D
= "[N] -> { S1[i,j] : 0 <= i,j < N; S2[i,j] : 0 <= i,j < N }";
4028 S
= "{ S1[i,j] -> [0,i,j]; S2[i,j] -> [1,i,j] }";
4029 if (test_one_schedule(ctx
, D
, "{}", "{}", S
, 2, 2) < 0)
4032 D
= "[M, N] -> { S_1[i] : i >= 0 and i <= -1 + M; "
4033 "S_0[i, j] : i >= 0 and i <= -1 + M and j >= 0 and j <= -1 + N }";
4034 W
= "[M, N] -> { S_0[i, j] -> a[j] : i >= 0 and i <= -1 + M and "
4035 "j >= 0 and j <= -1 + N; "
4036 "S_1[i] -> b[0] : i >= 0 and i <= -1 + M }";
4037 R
= "[M, N] -> { S_0[i, j] -> a[0] : i >= 0 and i <= -1 + M and "
4038 "j >= 0 and j <= -1 + N; "
4039 "S_1[i] -> b[0] : i >= 0 and i <= -1 + M }";
4040 S
= "[M, N] -> { S_1[i] -> [1, i, 0]; S_0[i, j] -> [0, i, 0, j, 0] }";
4041 if (test_one_schedule(ctx
, D
, W
, R
, S
, 0, 0) < 0)
4044 D
= "{ S_0[i] : i >= 0 }";
4045 W
= "{ S_0[i] -> a[i] : i >= 0 }";
4046 R
= "{ S_0[i] -> a[0] : i >= 0 }";
4047 S
= "{ S_0[i] -> [0, i, 0] }";
4048 if (test_one_schedule(ctx
, D
, W
, R
, S
, 0, 0) < 0)
4051 D
= "{ S_0[i] : i >= 0; S_1[i] : i >= 0 }";
4052 W
= "{ S_0[i] -> a[i] : i >= 0; S_1[i] -> b[i] : i >= 0 }";
4053 R
= "{ S_0[i] -> b[0] : i >= 0; S_1[i] -> a[i] : i >= 0 }";
4054 S
= "{ S_1[i] -> [0, i, 1]; S_0[i] -> [0, i, 0] }";
4055 if (test_one_schedule(ctx
, D
, W
, R
, S
, 0, 0) < 0)
4058 D
= "[n] -> { S_0[j, k] : j <= -1 + n and j >= 0 and "
4059 "k <= -1 + n and k >= 0 }";
4060 W
= "[n] -> { S_0[j, k] -> B[j] : j <= -1 + n and j >= 0 and " "k <= -1 + n and k >= 0 }";
4061 R
= "[n] -> { S_0[j, k] -> B[j] : j <= -1 + n and j >= 0 and "
4062 "k <= -1 + n and k >= 0; "
4063 "S_0[j, k] -> B[k] : j <= -1 + n and j >= 0 and "
4064 "k <= -1 + n and k >= 0; "
4065 "S_0[j, k] -> A[k] : j <= -1 + n and j >= 0 and "
4066 "k <= -1 + n and k >= 0 }";
4067 S
= "[n] -> { S_0[j, k] -> [2, j, k] }";
4068 ctx
->opt
->schedule_outer_coincidence
= 1;
4069 if (test_one_schedule(ctx
, D
, W
, R
, S
, 0, 0) < 0)
4071 ctx
->opt
->schedule_outer_coincidence
= 0;
4073 D
= "{Stmt_for_body24[i0, i1, i2, i3]:"
4074 "i0 >= 0 and i0 <= 1 and i1 >= 0 and i1 <= 6 and i2 >= 2 and "
4075 "i2 <= 6 - i1 and i3 >= 0 and i3 <= -1 + i2;"
4076 "Stmt_for_body24[i0, i1, 1, 0]:"
4077 "i0 >= 0 and i0 <= 1 and i1 >= 0 and i1 <= 5;"
4078 "Stmt_for_body7[i0, i1, i2]:"
4079 "i0 >= 0 and i0 <= 1 and i1 >= 0 and i1 <= 7 and i2 >= 0 and "
4082 V
= "{Stmt_for_body24[0, i1, i2, i3] -> "
4083 "Stmt_for_body24[1, i1, i2, i3]:"
4084 "i3 >= 0 and i3 <= -1 + i2 and i1 >= 0 and i2 <= 6 - i1 and "
4086 "Stmt_for_body24[0, i1, i2, i3] -> "
4087 "Stmt_for_body7[1, 1 + i1 + i3, 1 + i1 + i2]:"
4088 "i3 <= -1 + i2 and i2 <= 6 - i1 and i2 >= 1 and i1 >= 0 and "
4090 "Stmt_for_body24[0, i1, i2, i3] ->"
4091 "Stmt_for_body7[1, i1, 1 + i1 + i3]:"
4092 "i3 >= 0 and i2 <= 6 - i1 and i1 >= 0 and i3 <= -1 + i2;"
4093 "Stmt_for_body7[0, i1, i2] -> Stmt_for_body7[1, i1, i2]:"
4094 "(i2 >= 1 + i1 and i2 <= 6 and i1 >= 0 and i1 <= 4) or "
4095 "(i2 >= 3 and i2 <= 7 and i1 >= 1 and i2 >= 1 + i1) or "
4096 "(i2 >= 0 and i2 <= i1 and i2 >= -7 + i1 and i1 <= 7);"
4097 "Stmt_for_body7[0, i1, 1 + i1] -> Stmt_for_body7[1, i1, 1 + i1]:"
4098 "i1 <= 6 and i1 >= 0;"
4099 "Stmt_for_body7[0, 0, 7] -> Stmt_for_body7[1, 0, 7];"
4100 "Stmt_for_body7[i0, i1, i2] -> "
4101 "Stmt_for_body24[i0, o1, -1 + i2 - o1, -1 + i1 - o1]:"
4102 "i0 >= 0 and i0 <= 1 and o1 >= 0 and i2 >= 1 + i1 and "
4103 "o1 <= -2 + i2 and i2 <= 7 and o1 <= -1 + i1;"
4104 "Stmt_for_body7[i0, i1, i2] -> "
4105 "Stmt_for_body24[i0, i1, o2, -1 - i1 + i2]:"
4106 "i0 >= 0 and i0 <= 1 and i1 >= 0 and o2 >= -i1 + i2 and "
4107 "o2 >= 1 and o2 <= 6 - i1 and i2 >= 1 + i1 }";
4109 S
= "{ Stmt_for_body24[i0, i1, i2, i3] -> "
4110 "[i0, 5i0 + i1, 6i0 + i1 + i2, 1 + 6i0 + i1 + i2 + i3, 1];"
4111 "Stmt_for_body7[i0, i1, i2] -> [0, 5i0, 6i0 + i1, 6i0 + i2, 0] }";
4113 treat_coalescing
= isl_options_get_schedule_treat_coalescing(ctx
);
4114 isl_options_set_schedule_treat_coalescing(ctx
, 0);
4115 if (test_special_schedule(ctx
, D
, V
, P
, S
) < 0)
4117 isl_options_set_schedule_treat_coalescing(ctx
, treat_coalescing
);
4119 D
= "{ S_0[i, j] : i >= 1 and i <= 10 and j >= 1 and j <= 8 }";
4120 V
= "{ S_0[i, j] -> S_0[i, 1 + j] : i >= 1 and i <= 10 and "
4121 "j >= 1 and j <= 7;"
4122 "S_0[i, j] -> S_0[1 + i, j] : i >= 1 and i <= 9 and "
4123 "j >= 1 and j <= 8 }";
4125 S
= "{ S_0[i, j] -> [i + j, j] }";
4126 ctx
->opt
->schedule_algorithm
= ISL_SCHEDULE_ALGORITHM_FEAUTRIER
;
4127 if (test_special_schedule(ctx
, D
, V
, P
, S
) < 0)
4129 ctx
->opt
->schedule_algorithm
= ISL_SCHEDULE_ALGORITHM_ISL
;
4131 /* Fig. 1 from Feautrier's "Some Efficient Solutions..." pt. 2, 1992 */
4132 D
= "[N] -> { S_0[i, j] : i >= 0 and i <= -1 + N and "
4133 "j >= 0 and j <= -1 + i }";
4134 V
= "[N] -> { S_0[i, j] -> S_0[i, 1 + j] : j <= -2 + i and "
4135 "i <= -1 + N and j >= 0;"
4136 "S_0[i, -1 + i] -> S_0[1 + i, 0] : i >= 1 and "
4139 S
= "{ S_0[i, j] -> [i, j] }";
4140 ctx
->opt
->schedule_algorithm
= ISL_SCHEDULE_ALGORITHM_FEAUTRIER
;
4141 if (test_special_schedule(ctx
, D
, V
, P
, S
) < 0)
4143 ctx
->opt
->schedule_algorithm
= ISL_SCHEDULE_ALGORITHM_ISL
;
4145 /* Test both algorithms on a case with only proximity dependences. */
4146 D
= "{ S[i,j] : 0 <= i <= 10 }";
4148 P
= "{ S[i,j] -> S[i+1,j] : 0 <= i,j <= 10 }";
4149 S
= "{ S[i, j] -> [j, i] }";
4150 ctx
->opt
->schedule_algorithm
= ISL_SCHEDULE_ALGORITHM_FEAUTRIER
;
4151 if (test_special_schedule(ctx
, D
, V
, P
, S
) < 0)
4153 ctx
->opt
->schedule_algorithm
= ISL_SCHEDULE_ALGORITHM_ISL
;
4154 if (test_special_schedule(ctx
, D
, V
, P
, S
) < 0)
4157 D
= "{ A[a]; B[] }";
4159 P
= "{ A[a] -> B[] }";
4160 if (test_has_schedule(ctx
, D
, V
, P
) < 0)
4163 if (test_padded_schedule(ctx
) < 0)
4166 /* Check that check for progress is not confused by rational
4169 D
= "[N] -> { S0[i, j] : i >= 0 and i <= N and j >= 0 and j <= N }";
4170 V
= "[N] -> { S0[i0, -1 + N] -> S0[2 + i0, 0] : i0 >= 0 and "
4172 "S0[i0, i1] -> S0[i0, 1 + i1] : i0 >= 0 and "
4173 "i0 <= N and i1 >= 0 and i1 <= -1 + N }";
4175 ctx
->opt
->schedule_algorithm
= ISL_SCHEDULE_ALGORITHM_FEAUTRIER
;
4176 if (test_has_schedule(ctx
, D
, V
, P
) < 0)
4178 ctx
->opt
->schedule_algorithm
= ISL_SCHEDULE_ALGORITHM_ISL
;
4180 /* Check that we allow schedule rows that are only non-trivial
4181 * on some full-dimensional domains.
4183 D
= "{ S1[j] : 0 <= j <= 1; S0[]; S2[k] : 0 <= k <= 1 }";
4184 V
= "{ S0[] -> S1[j] : 0 <= j <= 1; S2[0] -> S0[];"
4185 "S1[j] -> S2[1] : 0 <= j <= 1 }";
4187 ctx
->opt
->schedule_algorithm
= ISL_SCHEDULE_ALGORITHM_FEAUTRIER
;
4188 if (test_has_schedule(ctx
, D
, V
, P
) < 0)
4190 ctx
->opt
->schedule_algorithm
= ISL_SCHEDULE_ALGORITHM_ISL
;
4192 if (test_conditional_schedule_constraints(ctx
) < 0)
4195 if (test_strongly_satisfying_schedule(ctx
) < 0)
4198 if (test_conflicting_context_schedule(ctx
) < 0)
4201 if (test_bounded_coefficients_schedule(ctx
) < 0)
4203 if (test_coalescing_schedule(ctx
) < 0)
4209 /* Perform scheduling tests using the whole component scheduler.
4211 static int test_schedule_whole(isl_ctx
*ctx
)
4216 whole
= isl_options_get_schedule_whole_component(ctx
);
4217 isl_options_set_schedule_whole_component(ctx
, 1);
4218 r
= test_schedule(ctx
);
4219 isl_options_set_schedule_whole_component(ctx
, whole
);
4224 /* Perform scheduling tests using the incremental scheduler.
4226 static int test_schedule_incremental(isl_ctx
*ctx
)
4231 whole
= isl_options_get_schedule_whole_component(ctx
);
4232 isl_options_set_schedule_whole_component(ctx
, 0);
4233 r
= test_schedule(ctx
);
4234 isl_options_set_schedule_whole_component(ctx
, whole
);
4239 int test_plain_injective(isl_ctx
*ctx
, const char *str
, int injective
)
4241 isl_union_map
*umap
;
4244 umap
= isl_union_map_read_from_str(ctx
, str
);
4245 test
= isl_union_map_plain_is_injective(umap
);
4246 isl_union_map_free(umap
);
4249 if (test
== injective
)
4252 isl_die(ctx
, isl_error_unknown
,
4253 "map not detected as injective", return -1);
4255 isl_die(ctx
, isl_error_unknown
,
4256 "map detected as injective", return -1);
4259 int test_injective(isl_ctx
*ctx
)
4263 if (test_plain_injective(ctx
, "{S[i,j] -> A[0]; T[i,j] -> B[1]}", 0))
4265 if (test_plain_injective(ctx
, "{S[] -> A[0]; T[] -> B[0]}", 1))
4267 if (test_plain_injective(ctx
, "{S[] -> A[0]; T[] -> A[1]}", 1))
4269 if (test_plain_injective(ctx
, "{S[] -> A[0]; T[] -> A[0]}", 0))
4271 if (test_plain_injective(ctx
, "{S[i] -> A[i,0]; T[i] -> A[i,1]}", 1))
4273 if (test_plain_injective(ctx
, "{S[i] -> A[i]; T[i] -> A[i]}", 0))
4275 if (test_plain_injective(ctx
, "{S[] -> A[0,0]; T[] -> A[0,1]}", 1))
4277 if (test_plain_injective(ctx
, "{S[] -> A[0,0]; T[] -> A[1,0]}", 1))
4280 str
= "{S[] -> A[0,0]; T[] -> A[0,1]; U[] -> A[1,0]}";
4281 if (test_plain_injective(ctx
, str
, 1))
4283 str
= "{S[] -> A[0,0]; T[] -> A[0,1]; U[] -> A[0,0]}";
4284 if (test_plain_injective(ctx
, str
, 0))
4290 static int aff_plain_is_equal(__isl_keep isl_aff
*aff
, const char *str
)
4298 aff2
= isl_aff_read_from_str(isl_aff_get_ctx(aff
), str
);
4299 equal
= isl_aff_plain_is_equal(aff
, aff2
);
4305 static int aff_check_plain_equal(__isl_keep isl_aff
*aff
, const char *str
)
4309 equal
= aff_plain_is_equal(aff
, str
);
4313 isl_die(isl_aff_get_ctx(aff
), isl_error_unknown
,
4314 "result not as expected", return -1);
4319 __isl_give isl_aff
*(*fn
)(__isl_take isl_aff
*aff1
,
4320 __isl_take isl_aff
*aff2
);
4322 ['+'] = { &isl_aff_add
},
4323 ['-'] = { &isl_aff_sub
},
4324 ['*'] = { &isl_aff_mul
},
4325 ['/'] = { &isl_aff_div
},
4333 } aff_bin_tests
[] = {
4334 { "{ [i] -> [i] }", '+', "{ [i] -> [i] }",
4335 "{ [i] -> [2i] }" },
4336 { "{ [i] -> [i] }", '-', "{ [i] -> [i] }",
4338 { "{ [i] -> [i] }", '*', "{ [i] -> [2] }",
4339 "{ [i] -> [2i] }" },
4340 { "{ [i] -> [2] }", '*', "{ [i] -> [i] }",
4341 "{ [i] -> [2i] }" },
4342 { "{ [i] -> [i] }", '/', "{ [i] -> [2] }",
4343 "{ [i] -> [i/2] }" },
4344 { "{ [i] -> [2i] }", '/', "{ [i] -> [2] }",
4346 { "{ [i] -> [i] }", '+', "{ [i] -> [NaN] }",
4347 "{ [i] -> [NaN] }" },
4348 { "{ [i] -> [i] }", '-', "{ [i] -> [NaN] }",
4349 "{ [i] -> [NaN] }" },
4350 { "{ [i] -> [i] }", '*', "{ [i] -> [NaN] }",
4351 "{ [i] -> [NaN] }" },
4352 { "{ [i] -> [2] }", '*', "{ [i] -> [NaN] }",
4353 "{ [i] -> [NaN] }" },
4354 { "{ [i] -> [i] }", '/', "{ [i] -> [NaN] }",
4355 "{ [i] -> [NaN] }" },
4356 { "{ [i] -> [2] }", '/', "{ [i] -> [NaN] }",
4357 "{ [i] -> [NaN] }" },
4358 { "{ [i] -> [NaN] }", '+', "{ [i] -> [i] }",
4359 "{ [i] -> [NaN] }" },
4360 { "{ [i] -> [NaN] }", '-', "{ [i] -> [i] }",
4361 "{ [i] -> [NaN] }" },
4362 { "{ [i] -> [NaN] }", '*', "{ [i] -> [2] }",
4363 "{ [i] -> [NaN] }" },
4364 { "{ [i] -> [NaN] }", '*', "{ [i] -> [i] }",
4365 "{ [i] -> [NaN] }" },
4366 { "{ [i] -> [NaN] }", '/', "{ [i] -> [2] }",
4367 "{ [i] -> [NaN] }" },
4368 { "{ [i] -> [NaN] }", '/', "{ [i] -> [i] }",
4369 "{ [i] -> [NaN] }" },
4372 /* Perform some basic tests of binary operations on isl_aff objects.
4374 static int test_bin_aff(isl_ctx
*ctx
)
4377 isl_aff
*aff1
, *aff2
, *res
;
4378 __isl_give isl_aff
*(*fn
)(__isl_take isl_aff
*aff1
,
4379 __isl_take isl_aff
*aff2
);
4382 for (i
= 0; i
< ARRAY_SIZE(aff_bin_tests
); ++i
) {
4383 aff1
= isl_aff_read_from_str(ctx
, aff_bin_tests
[i
].arg1
);
4384 aff2
= isl_aff_read_from_str(ctx
, aff_bin_tests
[i
].arg2
);
4385 res
= isl_aff_read_from_str(ctx
, aff_bin_tests
[i
].res
);
4386 fn
= aff_bin_op
[aff_bin_tests
[i
].op
].fn
;
4387 aff1
= fn(aff1
, aff2
);
4388 if (isl_aff_is_nan(res
))
4389 ok
= isl_aff_is_nan(aff1
);
4391 ok
= isl_aff_plain_is_equal(aff1
, res
);
4397 isl_die(ctx
, isl_error_unknown
,
4398 "unexpected result", return -1);
4405 __isl_give isl_union_pw_multi_aff
*(*fn
)(
4406 __isl_take isl_union_pw_multi_aff
*upma1
,
4407 __isl_take isl_union_pw_multi_aff
*upma2
);
4411 } upma_bin_tests
[] = {
4412 { &isl_union_pw_multi_aff_add
, "{ A[] -> [0]; B[0] -> [1] }",
4413 "{ B[x] -> [2] : x >= 0 }", "{ B[0] -> [3] }" },
4414 { &isl_union_pw_multi_aff_union_add
, "{ A[] -> [0]; B[0] -> [1] }",
4415 "{ B[x] -> [2] : x >= 0 }",
4416 "{ A[] -> [0]; B[0] -> [3]; B[x] -> [2] : x >= 1 }" },
4417 { &isl_union_pw_multi_aff_pullback_union_pw_multi_aff
,
4418 "{ A[] -> B[0]; C[x] -> B[1] : x < 10; C[y] -> B[2] : y >= 10 }",
4419 "{ D[i] -> A[] : i < 0; D[i] -> C[i + 5] : i >= 0 }",
4420 "{ D[i] -> B[0] : i < 0; D[i] -> B[1] : 0 <= i < 5; "
4421 "D[i] -> B[2] : i >= 5 }" },
4422 { &isl_union_pw_multi_aff_union_add
, "{ B[x] -> A[1] : x <= 0 }",
4423 "{ B[x] -> C[2] : x > 0 }",
4424 "{ B[x] -> A[1] : x <= 0; B[x] -> C[2] : x > 0 }" },
4425 { &isl_union_pw_multi_aff_union_add
, "{ B[x] -> A[1] : x <= 0 }",
4426 "{ B[x] -> A[2] : x >= 0 }",
4427 "{ B[x] -> A[1] : x < 0; B[x] -> A[2] : x > 0; B[0] -> A[3] }" },
4430 /* Perform some basic tests of binary operations on
4431 * isl_union_pw_multi_aff objects.
4433 static int test_bin_upma(isl_ctx
*ctx
)
4436 isl_union_pw_multi_aff
*upma1
, *upma2
, *res
;
4439 for (i
= 0; i
< ARRAY_SIZE(upma_bin_tests
); ++i
) {
4440 upma1
= isl_union_pw_multi_aff_read_from_str(ctx
,
4441 upma_bin_tests
[i
].arg1
);
4442 upma2
= isl_union_pw_multi_aff_read_from_str(ctx
,
4443 upma_bin_tests
[i
].arg2
);
4444 res
= isl_union_pw_multi_aff_read_from_str(ctx
,
4445 upma_bin_tests
[i
].res
);
4446 upma1
= upma_bin_tests
[i
].fn(upma1
, upma2
);
4447 ok
= isl_union_pw_multi_aff_plain_is_equal(upma1
, res
);
4448 isl_union_pw_multi_aff_free(upma1
);
4449 isl_union_pw_multi_aff_free(res
);
4453 isl_die(ctx
, isl_error_unknown
,
4454 "unexpected result", return -1);
4461 __isl_give isl_union_pw_multi_aff
*(*fn
)(
4462 __isl_take isl_union_pw_multi_aff
*upma1
,
4463 __isl_take isl_union_pw_multi_aff
*upma2
);
4466 } upma_bin_fail_tests
[] = {
4467 { &isl_union_pw_multi_aff_union_add
, "{ B[x] -> A[1] : x <= 0 }",
4468 "{ B[x] -> C[2] : x >= 0 }" },
4471 /* Perform some basic tests of binary operations on
4472 * isl_union_pw_multi_aff objects that are expected to fail.
4474 static int test_bin_upma_fail(isl_ctx
*ctx
)
4477 isl_union_pw_multi_aff
*upma1
, *upma2
;
4480 on_error
= isl_options_get_on_error(ctx
);
4481 isl_options_set_on_error(ctx
, ISL_ON_ERROR_CONTINUE
);
4482 n
= ARRAY_SIZE(upma_bin_fail_tests
);
4483 for (i
= 0; i
< n
; ++i
) {
4484 upma1
= isl_union_pw_multi_aff_read_from_str(ctx
,
4485 upma_bin_fail_tests
[i
].arg1
);
4486 upma2
= isl_union_pw_multi_aff_read_from_str(ctx
,
4487 upma_bin_fail_tests
[i
].arg2
);
4488 upma1
= upma_bin_fail_tests
[i
].fn(upma1
, upma2
);
4489 isl_union_pw_multi_aff_free(upma1
);
4493 isl_options_set_on_error(ctx
, on_error
);
4495 isl_die(ctx
, isl_error_unknown
,
4496 "operation not expected to succeed", return -1);
4501 int test_aff(isl_ctx
*ctx
)
4506 isl_local_space
*ls
;
4510 if (test_bin_aff(ctx
) < 0)
4512 if (test_bin_upma(ctx
) < 0)
4514 if (test_bin_upma_fail(ctx
) < 0)
4517 space
= isl_space_set_alloc(ctx
, 0, 1);
4518 ls
= isl_local_space_from_space(space
);
4519 aff
= isl_aff_zero_on_domain(ls
);
4521 aff
= isl_aff_add_coefficient_si(aff
, isl_dim_in
, 0, 1);
4522 aff
= isl_aff_scale_down_ui(aff
, 3);
4523 aff
= isl_aff_floor(aff
);
4524 aff
= isl_aff_add_coefficient_si(aff
, isl_dim_in
, 0, 1);
4525 aff
= isl_aff_scale_down_ui(aff
, 2);
4526 aff
= isl_aff_floor(aff
);
4527 aff
= isl_aff_add_coefficient_si(aff
, isl_dim_in
, 0, 1);
4530 set
= isl_set_read_from_str(ctx
, str
);
4531 aff
= isl_aff_gist(aff
, set
);
4533 aff
= isl_aff_add_constant_si(aff
, -16);
4534 zero
= isl_aff_plain_is_zero(aff
);
4540 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
4542 aff
= isl_aff_read_from_str(ctx
, "{ [-1] }");
4543 aff
= isl_aff_scale_down_ui(aff
, 64);
4544 aff
= isl_aff_floor(aff
);
4545 equal
= aff_check_plain_equal(aff
, "{ [-1] }");
4553 int test_dim_max(isl_ctx
*ctx
)
4557 isl_set
*set1
, *set2
;
4562 str
= "[N] -> { [i] : 0 <= i <= min(N,10) }";
4563 set
= isl_set_read_from_str(ctx
, str
);
4564 pwaff
= isl_set_dim_max(set
, 0);
4565 set1
= isl_set_from_pw_aff(pwaff
);
4566 str
= "[N] -> { [10] : N >= 10; [N] : N <= 9 and N >= 0 }";
4567 set2
= isl_set_read_from_str(ctx
, str
);
4568 equal
= isl_set_is_equal(set1
, set2
);
4574 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
4576 str
= "[N] -> { [i] : 0 <= i <= max(2N,N+6) }";
4577 set
= isl_set_read_from_str(ctx
, str
);
4578 pwaff
= isl_set_dim_max(set
, 0);
4579 set1
= isl_set_from_pw_aff(pwaff
);
4580 str
= "[N] -> { [6 + N] : -6 <= N <= 5; [2N] : N >= 6 }";
4581 set2
= isl_set_read_from_str(ctx
, str
);
4582 equal
= isl_set_is_equal(set1
, set2
);
4588 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
4590 str
= "[N] -> { [i] : 0 <= i <= 2N or 0 <= i <= N+6 }";
4591 set
= isl_set_read_from_str(ctx
, str
);
4592 pwaff
= isl_set_dim_max(set
, 0);
4593 set1
= isl_set_from_pw_aff(pwaff
);
4594 str
= "[N] -> { [6 + N] : -6 <= N <= 5; [2N] : N >= 6 }";
4595 set2
= isl_set_read_from_str(ctx
, str
);
4596 equal
= isl_set_is_equal(set1
, set2
);
4602 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
4604 str
= "[N,M] -> { [i,j] -> [([i/16]), i%16, ([j/16]), j%16] : "
4605 "0 <= i < N and 0 <= j < M }";
4606 map
= isl_map_read_from_str(ctx
, str
);
4607 set
= isl_map_range(map
);
4609 pwaff
= isl_set_dim_max(isl_set_copy(set
), 0);
4610 set1
= isl_set_from_pw_aff(pwaff
);
4611 str
= "[N,M] -> { [([(N-1)/16])] : M,N > 0 }";
4612 set2
= isl_set_read_from_str(ctx
, str
);
4613 equal
= isl_set_is_equal(set1
, set2
);
4617 pwaff
= isl_set_dim_max(isl_set_copy(set
), 3);
4618 set1
= isl_set_from_pw_aff(pwaff
);
4619 str
= "[N,M] -> { [t] : t = min(M-1,15) and M,N > 0 }";
4620 set2
= isl_set_read_from_str(ctx
, str
);
4621 if (equal
>= 0 && equal
)
4622 equal
= isl_set_is_equal(set1
, set2
);
4631 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
4633 /* Check that solutions are properly merged. */
4634 str
= "[n] -> { [a, b, c] : c >= -4a - 2b and "
4635 "c <= -1 + n - 4a - 2b and c >= -2b and "
4636 "4a >= -4 + n and c >= 0 }";
4637 set
= isl_set_read_from_str(ctx
, str
);
4638 pwaff
= isl_set_dim_min(set
, 2);
4639 set1
= isl_set_from_pw_aff(pwaff
);
4640 str
= "[n] -> { [(0)] : n >= 1 }";
4641 set2
= isl_set_read_from_str(ctx
, str
);
4642 equal
= isl_set_is_equal(set1
, set2
);
4649 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
4651 /* Check that empty solution lie in the right space. */
4652 str
= "[n] -> { [t,a] : 1 = 0 }";
4653 set
= isl_set_read_from_str(ctx
, str
);
4654 pwaff
= isl_set_dim_max(set
, 0);
4655 set1
= isl_set_from_pw_aff(pwaff
);
4656 str
= "[n] -> { [t] : 1 = 0 }";
4657 set2
= isl_set_read_from_str(ctx
, str
);
4658 equal
= isl_set_is_equal(set1
, set2
);
4665 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
4670 /* Is "pma" obviously equal to the isl_pw_multi_aff represented by "str"?
4672 static int pw_multi_aff_plain_is_equal(__isl_keep isl_pw_multi_aff
*pma
,
4676 isl_pw_multi_aff
*pma2
;
4682 ctx
= isl_pw_multi_aff_get_ctx(pma
);
4683 pma2
= isl_pw_multi_aff_read_from_str(ctx
, str
);
4684 equal
= isl_pw_multi_aff_plain_is_equal(pma
, pma2
);
4685 isl_pw_multi_aff_free(pma2
);
4690 /* Check that "pma" is obviously equal to the isl_pw_multi_aff
4691 * represented by "str".
4693 static int pw_multi_aff_check_plain_equal(__isl_keep isl_pw_multi_aff
*pma
,
4698 equal
= pw_multi_aff_plain_is_equal(pma
, str
);
4702 isl_die(isl_pw_multi_aff_get_ctx(pma
), isl_error_unknown
,
4703 "result not as expected", return -1);
4707 /* Basic test for isl_pw_multi_aff_product.
4709 * Check that multiple pieces are properly handled.
4711 static int test_product_pma(isl_ctx
*ctx
)
4715 isl_pw_multi_aff
*pma1
, *pma2
;
4717 str
= "{ A[i] -> B[1] : i < 0; A[i] -> B[2] : i >= 0 }";
4718 pma1
= isl_pw_multi_aff_read_from_str(ctx
, str
);
4719 str
= "{ C[] -> D[] }";
4720 pma2
= isl_pw_multi_aff_read_from_str(ctx
, str
);
4721 pma1
= isl_pw_multi_aff_product(pma1
, pma2
);
4722 str
= "{ [A[i] -> C[]] -> [B[(1)] -> D[]] : i < 0;"
4723 "[A[i] -> C[]] -> [B[(2)] -> D[]] : i >= 0 }";
4724 equal
= pw_multi_aff_check_plain_equal(pma1
, str
);
4725 isl_pw_multi_aff_free(pma1
);
4732 int test_product(isl_ctx
*ctx
)
4736 isl_union_set
*uset1
, *uset2
;
4740 set
= isl_set_read_from_str(ctx
, str
);
4741 set
= isl_set_product(set
, isl_set_copy(set
));
4742 ok
= isl_set_is_wrapping(set
);
4747 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
4750 uset1
= isl_union_set_read_from_str(ctx
, str
);
4751 uset1
= isl_union_set_product(uset1
, isl_union_set_copy(uset1
));
4752 str
= "{ [[] -> []] }";
4753 uset2
= isl_union_set_read_from_str(ctx
, str
);
4754 ok
= isl_union_set_is_equal(uset1
, uset2
);
4755 isl_union_set_free(uset1
);
4756 isl_union_set_free(uset2
);
4760 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
4762 if (test_product_pma(ctx
) < 0)
4768 /* Check that two sets are not considered disjoint just because
4769 * they have a different set of (named) parameters.
4771 static int test_disjoint(isl_ctx
*ctx
)
4774 isl_set
*set
, *set2
;
4777 str
= "[n] -> { [[]->[]] }";
4778 set
= isl_set_read_from_str(ctx
, str
);
4779 str
= "{ [[]->[]] }";
4780 set2
= isl_set_read_from_str(ctx
, str
);
4781 disjoint
= isl_set_is_disjoint(set
, set2
);
4787 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
4792 int test_equal(isl_ctx
*ctx
)
4795 isl_set
*set
, *set2
;
4799 set
= isl_set_read_from_str(ctx
, str
);
4801 set2
= isl_set_read_from_str(ctx
, str
);
4802 equal
= isl_set_is_equal(set
, set2
);
4808 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
4813 static int test_plain_fixed(isl_ctx
*ctx
, __isl_take isl_map
*map
,
4814 enum isl_dim_type type
, unsigned pos
, int fixed
)
4818 test
= isl_map_plain_is_fixed(map
, type
, pos
, NULL
);
4825 isl_die(ctx
, isl_error_unknown
,
4826 "map not detected as fixed", return -1);
4828 isl_die(ctx
, isl_error_unknown
,
4829 "map detected as fixed", return -1);
4832 int test_fixed(isl_ctx
*ctx
)
4837 str
= "{ [i] -> [i] }";
4838 map
= isl_map_read_from_str(ctx
, str
);
4839 if (test_plain_fixed(ctx
, map
, isl_dim_out
, 0, 0))
4841 str
= "{ [i] -> [1] }";
4842 map
= isl_map_read_from_str(ctx
, str
);
4843 if (test_plain_fixed(ctx
, map
, isl_dim_out
, 0, 1))
4845 str
= "{ S_1[p1] -> [o0] : o0 = -2 and p1 >= 1 and p1 <= 7 }";
4846 map
= isl_map_read_from_str(ctx
, str
);
4847 if (test_plain_fixed(ctx
, map
, isl_dim_out
, 0, 1))
4849 map
= isl_map_read_from_str(ctx
, str
);
4850 map
= isl_map_neg(map
);
4851 if (test_plain_fixed(ctx
, map
, isl_dim_out
, 0, 1))
4857 struct isl_vertices_test_data
{
4860 const char *vertex
[6];
4861 } vertices_tests
[] = {
4862 { "{ A[t, i] : t = 12 and i >= 4 and i <= 12 }",
4863 2, { "{ A[12, 4] }", "{ A[12, 12] }" } },
4864 { "{ A[t, i] : t = 14 and i = 1 }",
4865 1, { "{ A[14, 1] }" } },
4866 { "[n, m] -> { [a, b, c] : b <= a and a <= n and b > 0 and c >= b and "
4867 "c <= m and m <= n and m > 0 }",
4869 "[n, m] -> { [n, m, m] : 0 < m <= n }",
4870 "[n, m] -> { [n, 1, m] : 0 < m <= n }",
4871 "[n, m] -> { [n, 1, 1] : 0 < m <= n }",
4872 "[n, m] -> { [m, m, m] : 0 < m <= n }",
4873 "[n, m] -> { [1, 1, m] : 0 < m <= n }",
4874 "[n, m] -> { [1, 1, 1] : 0 < m <= n }"
4878 /* Check that "vertex" corresponds to one of the vertices in data->vertex.
4880 static isl_stat
find_vertex(__isl_take isl_vertex
*vertex
, void *user
)
4882 struct isl_vertices_test_data
*data
= user
;
4885 isl_basic_set
*bset
;
4886 isl_pw_multi_aff
*pma
;
4890 ctx
= isl_vertex_get_ctx(vertex
);
4891 bset
= isl_vertex_get_domain(vertex
);
4892 ma
= isl_vertex_get_expr(vertex
);
4893 pma
= isl_pw_multi_aff_alloc(isl_set_from_basic_set(bset
), ma
);
4895 for (i
= 0; i
< data
->n
; ++i
) {
4896 isl_pw_multi_aff
*pma_i
;
4898 pma_i
= isl_pw_multi_aff_read_from_str(ctx
, data
->vertex
[i
]);
4899 equal
= isl_pw_multi_aff_plain_is_equal(pma
, pma_i
);
4900 isl_pw_multi_aff_free(pma_i
);
4902 if (equal
< 0 || equal
)
4906 isl_pw_multi_aff_free(pma
);
4907 isl_vertex_free(vertex
);
4910 return isl_stat_error
;
4912 return equal
? isl_stat_ok
: isl_stat_error
;
4915 int test_vertices(isl_ctx
*ctx
)
4919 for (i
= 0; i
< ARRAY_SIZE(vertices_tests
); ++i
) {
4920 isl_basic_set
*bset
;
4921 isl_vertices
*vertices
;
4925 bset
= isl_basic_set_read_from_str(ctx
, vertices_tests
[i
].set
);
4926 vertices
= isl_basic_set_compute_vertices(bset
);
4927 n
= isl_vertices_get_n_vertices(vertices
);
4928 if (vertices_tests
[i
].n
!= n
)
4930 if (isl_vertices_foreach_vertex(vertices
, &find_vertex
,
4931 &vertices_tests
[i
]) < 0)
4933 isl_vertices_free(vertices
);
4934 isl_basic_set_free(bset
);
4939 isl_die(ctx
, isl_error_unknown
, "unexpected vertices",
4946 int test_union_pw(isl_ctx
*ctx
)
4950 isl_union_set
*uset
;
4951 isl_union_pw_qpolynomial
*upwqp1
, *upwqp2
;
4953 str
= "{ [x] -> x^2 }";
4954 upwqp1
= isl_union_pw_qpolynomial_read_from_str(ctx
, str
);
4955 upwqp2
= isl_union_pw_qpolynomial_copy(upwqp1
);
4956 uset
= isl_union_pw_qpolynomial_domain(upwqp1
);
4957 upwqp1
= isl_union_pw_qpolynomial_copy(upwqp2
);
4958 upwqp1
= isl_union_pw_qpolynomial_intersect_domain(upwqp1
, uset
);
4959 equal
= isl_union_pw_qpolynomial_plain_is_equal(upwqp1
, upwqp2
);
4960 isl_union_pw_qpolynomial_free(upwqp1
);
4961 isl_union_pw_qpolynomial_free(upwqp2
);
4965 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
4970 /* Test that isl_union_pw_qpolynomial_eval picks up the function
4971 * defined over the correct domain space.
4973 static int test_eval(isl_ctx
*ctx
)
4978 isl_union_pw_qpolynomial
*upwqp
;
4982 str
= "{ A[x] -> x^2; B[x] -> -x^2 }";
4983 upwqp
= isl_union_pw_qpolynomial_read_from_str(ctx
, str
);
4985 set
= isl_set_read_from_str(ctx
, str
);
4986 pnt
= isl_set_sample_point(set
);
4987 v
= isl_union_pw_qpolynomial_eval(upwqp
, pnt
);
4988 cmp
= isl_val_cmp_si(v
, 36);
4994 isl_die(ctx
, isl_error_unknown
, "unexpected value", return -1);
4999 /* Descriptions of sets that are tested for reparsing after printing.
5001 const char *output_tests
[] = {
5002 "{ [1, y] : 0 <= y <= 1; [x, -x] : 0 <= x <= 1 }",
5005 /* Check that printing a set and reparsing a set from the printed output
5006 * results in the same set.
5008 static int test_output_set(isl_ctx
*ctx
)
5012 isl_set
*set1
, *set2
;
5015 for (i
= 0; i
< ARRAY_SIZE(output_tests
); ++i
) {
5016 set1
= isl_set_read_from_str(ctx
, output_tests
[i
]);
5017 str
= isl_set_to_str(set1
);
5018 set2
= isl_set_read_from_str(ctx
, str
);
5020 equal
= isl_set_is_equal(set1
, set2
);
5026 isl_die(ctx
, isl_error_unknown
,
5027 "parsed output not the same", return -1);
5033 int test_output(isl_ctx
*ctx
)
5041 if (test_output_set(ctx
) < 0)
5044 str
= "[x] -> { [1] : x % 4 <= 2; [2] : x = 3 }";
5045 pa
= isl_pw_aff_read_from_str(ctx
, str
);
5047 p
= isl_printer_to_str(ctx
);
5048 p
= isl_printer_set_output_format(p
, ISL_FORMAT_C
);
5049 p
= isl_printer_print_pw_aff(p
, pa
);
5050 s
= isl_printer_get_str(p
);
5051 isl_printer_free(p
);
5052 isl_pw_aff_free(pa
);
5056 equal
= !strcmp(s
, "4 * floord(x, 4) + 2 >= x ? 1 : 2");
5061 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
5066 int test_sample(isl_ctx
*ctx
)
5069 isl_basic_set
*bset1
, *bset2
;
5072 str
= "{ [a, b, c, d, e, f, g, h, i, j, k] : "
5073 "3i >= 1073741823b - c - 1073741823e + f and c >= 0 and "
5074 "3i >= -1 + 3221225466b + c + d - 3221225466e - f and "
5075 "2e >= a - b and 3e <= 2a and 3k <= -a and f <= -1 + a and "
5076 "3i <= 4 - a + 4b + 2c - e - 2f and 3k <= -a + c - f and "
5077 "3h >= -2 + a and 3g >= -3 - a and 3k >= -2 - a and "
5078 "3i >= -2 - a - 2c + 3e + 2f and 3h <= a + c - f and "
5079 "3h >= a + 2147483646b + 2c - 2147483646e - 2f and "
5080 "3g <= -1 - a and 3i <= 1 + c + d - f and a <= 1073741823 and "
5081 "f >= 1 - a + 1073741822b + c + d - 1073741822e and "
5082 "3i >= 1 + 2b - 2c + e + 2f + 3g and "
5083 "1073741822f <= 1073741822 - a + 1073741821b + 1073741822c +"
5084 "d - 1073741821e and "
5085 "3j <= 3 - a + 3b and 3g <= -2 - 2b + c + d - e - f and "
5086 "3j >= 1 - a + b + 2e and "
5087 "3f >= -3 + a + 3221225462b + 3c + d - 3221225465e and "
5088 "3i <= 4 - a + 4b - e and "
5089 "f <= 1073741822 + 1073741822b - 1073741822e and 3h <= a and "
5090 "f >= 0 and 2e <= 4 - a + 5b - d and 2e <= a - b + d and "
5091 "c <= -1 + a and 3i >= -2 - a + 3e and "
5092 "1073741822e <= 1073741823 - a + 1073741822b + c and "
5093 "3g >= -4 + 3221225464b + 3c + d - 3221225467e - 3f and "
5094 "3i >= -1 + 3221225466b + 3c + d - 3221225466e - 3f and "
5095 "1073741823e >= 1 + 1073741823b - d and "
5096 "3i >= 1073741823b + c - 1073741823e - f and "
5097 "3i >= 1 + 2b + e + 3g }";
5098 bset1
= isl_basic_set_read_from_str(ctx
, str
);
5099 bset2
= isl_basic_set_sample(isl_basic_set_copy(bset1
));
5100 empty
= isl_basic_set_is_empty(bset2
);
5101 subset
= isl_basic_set_is_subset(bset2
, bset1
);
5102 isl_basic_set_free(bset1
);
5103 isl_basic_set_free(bset2
);
5104 if (empty
< 0 || subset
< 0)
5107 isl_die(ctx
, isl_error_unknown
, "point not found", return -1);
5109 isl_die(ctx
, isl_error_unknown
, "bad point found", return -1);
5114 int test_fixed_power(isl_ctx
*ctx
)
5122 str
= "{ [i] -> [i + 1] }";
5123 map
= isl_map_read_from_str(ctx
, str
);
5124 isl_int_set_si(exp
, 23);
5125 map
= isl_map_fixed_power(map
, exp
);
5126 equal
= map_check_equal(map
, "{ [i] -> [i + 23] }");
5135 int test_slice(isl_ctx
*ctx
)
5141 str
= "{ [i] -> [j] }";
5142 map
= isl_map_read_from_str(ctx
, str
);
5143 map
= isl_map_equate(map
, isl_dim_in
, 0, isl_dim_out
, 0);
5144 equal
= map_check_equal(map
, "{ [i] -> [i] }");
5149 str
= "{ [i] -> [j] }";
5150 map
= isl_map_read_from_str(ctx
, str
);
5151 map
= isl_map_equate(map
, isl_dim_in
, 0, isl_dim_in
, 0);
5152 equal
= map_check_equal(map
, "{ [i] -> [j] }");
5157 str
= "{ [i] -> [j] }";
5158 map
= isl_map_read_from_str(ctx
, str
);
5159 map
= isl_map_oppose(map
, isl_dim_in
, 0, isl_dim_out
, 0);
5160 equal
= map_check_equal(map
, "{ [i] -> [-i] }");
5165 str
= "{ [i] -> [j] }";
5166 map
= isl_map_read_from_str(ctx
, str
);
5167 map
= isl_map_oppose(map
, isl_dim_in
, 0, isl_dim_in
, 0);
5168 equal
= map_check_equal(map
, "{ [0] -> [j] }");
5173 str
= "{ [i] -> [j] }";
5174 map
= isl_map_read_from_str(ctx
, str
);
5175 map
= isl_map_order_gt(map
, isl_dim_in
, 0, isl_dim_out
, 0);
5176 equal
= map_check_equal(map
, "{ [i] -> [j] : i > j }");
5181 str
= "{ [i] -> [j] }";
5182 map
= isl_map_read_from_str(ctx
, str
);
5183 map
= isl_map_order_gt(map
, isl_dim_in
, 0, isl_dim_in
, 0);
5184 equal
= map_check_equal(map
, "{ [i] -> [j] : false }");
5192 int test_eliminate(isl_ctx
*ctx
)
5198 str
= "{ [i] -> [j] : i = 2j }";
5199 map
= isl_map_read_from_str(ctx
, str
);
5200 map
= isl_map_eliminate(map
, isl_dim_out
, 0, 1);
5201 equal
= map_check_equal(map
, "{ [i] -> [j] : exists a : i = 2a }");
5209 /* Check that isl_set_dim_residue_class detects that the values of j
5210 * in the set below are all odd and that it does not detect any spurious
5213 static int test_residue_class(isl_ctx
*ctx
)
5220 str
= "{ [i,j] : j = 4 i + 1 and 0 <= i <= 100; "
5221 "[i,j] : j = 4 i + 3 and 500 <= i <= 600 }";
5222 set
= isl_set_read_from_str(ctx
, str
);
5225 res
= isl_set_dim_residue_class(set
, 1, &m
, &r
);
5227 (isl_int_cmp_si(m
, 2) != 0 || isl_int_cmp_si(r
, 1) != 0))
5228 isl_die(ctx
, isl_error_unknown
, "incorrect residue class",
5237 int test_align_parameters(isl_ctx
*ctx
)
5241 isl_multi_aff
*ma1
, *ma2
;
5244 str
= "{ A[B[] -> C[]] -> D[E[] -> F[]] }";
5245 ma1
= isl_multi_aff_read_from_str(ctx
, str
);
5247 space
= isl_space_params_alloc(ctx
, 1);
5248 space
= isl_space_set_dim_name(space
, isl_dim_param
, 0, "N");
5249 ma1
= isl_multi_aff_align_params(ma1
, space
);
5251 str
= "[N] -> { A[B[] -> C[]] -> D[E[] -> F[]] }";
5252 ma2
= isl_multi_aff_read_from_str(ctx
, str
);
5254 equal
= isl_multi_aff_plain_is_equal(ma1
, ma2
);
5256 isl_multi_aff_free(ma1
);
5257 isl_multi_aff_free(ma2
);
5262 isl_die(ctx
, isl_error_unknown
,
5263 "result not as expected", return -1);
5268 static int test_list(isl_ctx
*ctx
)
5270 isl_id
*a
, *b
, *c
, *d
, *id
;
5274 a
= isl_id_alloc(ctx
, "a", NULL
);
5275 b
= isl_id_alloc(ctx
, "b", NULL
);
5276 c
= isl_id_alloc(ctx
, "c", NULL
);
5277 d
= isl_id_alloc(ctx
, "d", NULL
);
5279 list
= isl_id_list_alloc(ctx
, 4);
5280 list
= isl_id_list_add(list
, a
);
5281 list
= isl_id_list_add(list
, b
);
5282 list
= isl_id_list_add(list
, c
);
5283 list
= isl_id_list_add(list
, d
);
5284 list
= isl_id_list_drop(list
, 1, 1);
5286 if (isl_id_list_n_id(list
) != 3) {
5287 isl_id_list_free(list
);
5288 isl_die(ctx
, isl_error_unknown
,
5289 "unexpected number of elements in list", return -1);
5292 id
= isl_id_list_get_id(list
, 0);
5295 id
= isl_id_list_get_id(list
, 1);
5298 id
= isl_id_list_get_id(list
, 2);
5302 isl_id_list_free(list
);
5305 isl_die(ctx
, isl_error_unknown
,
5306 "unexpected elements in list", return -1);
5311 const char *set_conversion_tests
[] = {
5312 "[N] -> { [i] : N - 1 <= 2 i <= N }",
5313 "[N] -> { [i] : exists a : i = 4 a and N - 1 <= i <= N }",
5314 "[N] -> { [i,j] : exists a : i = 4 a and N - 1 <= i, 2j <= N }",
5315 "[N] -> { [[i]->[j]] : exists a : i = 4 a and N - 1 <= i, 2j <= N }",
5316 "[N] -> { [3*floor(N/2) + 5*floor(N/3)] }",
5317 "[a, b] -> { [c, d] : (4*floor((-a + c)/4) = -a + c and "
5318 "32*floor((-b + d)/32) = -b + d and 5 <= c <= 8 and "
5319 "-3 + c <= d <= 28 + c) }",
5322 /* Check that converting from isl_set to isl_pw_multi_aff and back
5323 * to isl_set produces the original isl_set.
5325 static int test_set_conversion(isl_ctx
*ctx
)
5329 isl_set
*set1
, *set2
;
5330 isl_pw_multi_aff
*pma
;
5333 for (i
= 0; i
< ARRAY_SIZE(set_conversion_tests
); ++i
) {
5334 str
= set_conversion_tests
[i
];
5335 set1
= isl_set_read_from_str(ctx
, str
);
5336 pma
= isl_pw_multi_aff_from_set(isl_set_copy(set1
));
5337 set2
= isl_set_from_pw_multi_aff(pma
);
5338 equal
= isl_set_is_equal(set1
, set2
);
5345 isl_die(ctx
, isl_error_unknown
, "bad conversion",
5352 const char *conversion_tests
[] = {
5353 "{ [a, b, c, d] -> s0[a, b, e, f] : "
5354 "exists (e0 = [(a - 2c)/3], e1 = [(-4 + b - 5d)/9], "
5355 "e2 = [(-d + f)/9]: 3e0 = a - 2c and 9e1 = -4 + b - 5d and "
5356 "9e2 = -d + f and f >= 0 and f <= 8 and 9e >= -5 - 2a and "
5358 "{ [a, b] -> [c] : exists (e0 = floor((-a - b + c)/5): "
5359 "5e0 = -a - b + c and c >= -a and c <= 4 - a) }",
5360 "{ [a, b] -> [c] : exists d : 18 * d = -3 - a + 2c and 1 <= c <= 3 }",
5363 /* Check that converting from isl_map to isl_pw_multi_aff and back
5364 * to isl_map produces the original isl_map.
5366 static int test_map_conversion(isl_ctx
*ctx
)
5369 isl_map
*map1
, *map2
;
5370 isl_pw_multi_aff
*pma
;
5373 for (i
= 0; i
< ARRAY_SIZE(conversion_tests
); ++i
) {
5374 map1
= isl_map_read_from_str(ctx
, conversion_tests
[i
]);
5375 pma
= isl_pw_multi_aff_from_map(isl_map_copy(map1
));
5376 map2
= isl_map_from_pw_multi_aff(pma
);
5377 equal
= isl_map_is_equal(map1
, map2
);
5384 isl_die(ctx
, isl_error_unknown
, "bad conversion",
5391 static int test_conversion(isl_ctx
*ctx
)
5393 if (test_set_conversion(ctx
) < 0)
5395 if (test_map_conversion(ctx
) < 0)
5400 /* Check that isl_basic_map_curry does not modify input.
5402 static int test_curry(isl_ctx
*ctx
)
5405 isl_basic_map
*bmap1
, *bmap2
;
5408 str
= "{ [A[] -> B[]] -> C[] }";
5409 bmap1
= isl_basic_map_read_from_str(ctx
, str
);
5410 bmap2
= isl_basic_map_curry(isl_basic_map_copy(bmap1
));
5411 equal
= isl_basic_map_is_equal(bmap1
, bmap2
);
5412 isl_basic_map_free(bmap1
);
5413 isl_basic_map_free(bmap2
);
5418 isl_die(ctx
, isl_error_unknown
,
5419 "curried map should not be equal to original",
5429 } preimage_tests
[] = {
5430 { "{ B[i,j] : 0 <= i < 10 and 0 <= j < 100 }",
5431 "{ A[j,i] -> B[i,j] }",
5432 "{ A[j,i] : 0 <= i < 10 and 0 <= j < 100 }" },
5433 { "{ rat: B[i,j] : 0 <= i, j and 3 i + 5 j <= 100 }",
5434 "{ A[a,b] -> B[a/2,b/6] }",
5435 "{ rat: A[a,b] : 0 <= a, b and 9 a + 5 b <= 600 }" },
5436 { "{ B[i,j] : 0 <= i, j and 3 i + 5 j <= 100 }",
5437 "{ A[a,b] -> B[a/2,b/6] }",
5438 "{ A[a,b] : 0 <= a, b and 9 a + 5 b <= 600 and "
5439 "exists i,j : a = 2 i and b = 6 j }" },
5440 { "[n] -> { S[i] : 0 <= i <= 100 }", "[n] -> { S[n] }",
5441 "[n] -> { : 0 <= n <= 100 }" },
5442 { "{ B[i] : 0 <= i < 100 and exists a : i = 4 a }",
5443 "{ A[a] -> B[2a] }",
5444 "{ A[a] : 0 <= a < 50 and exists b : a = 2 b }" },
5445 { "{ B[i] : 0 <= i < 100 and exists a : i = 4 a }",
5446 "{ A[a] -> B[([a/2])] }",
5447 "{ A[a] : 0 <= a < 200 and exists b : [a/2] = 4 b }" },
5448 { "{ B[i,j,k] : 0 <= i,j,k <= 100 }",
5449 "{ A[a] -> B[a,a,a/3] }",
5450 "{ A[a] : 0 <= a <= 100 and exists b : a = 3 b }" },
5451 { "{ B[i,j] : j = [(i)/2] } ", "{ A[i,j] -> B[i/3,j] }",
5452 "{ A[i,j] : j = [(i)/6] and exists a : i = 3 a }" },
5455 static int test_preimage_basic_set(isl_ctx
*ctx
)
5458 isl_basic_set
*bset1
, *bset2
;
5462 for (i
= 0; i
< ARRAY_SIZE(preimage_tests
); ++i
) {
5463 bset1
= isl_basic_set_read_from_str(ctx
, preimage_tests
[i
].set
);
5464 ma
= isl_multi_aff_read_from_str(ctx
, preimage_tests
[i
].ma
);
5465 bset2
= isl_basic_set_read_from_str(ctx
, preimage_tests
[i
].res
);
5466 bset1
= isl_basic_set_preimage_multi_aff(bset1
, ma
);
5467 equal
= isl_basic_set_is_equal(bset1
, bset2
);
5468 isl_basic_set_free(bset1
);
5469 isl_basic_set_free(bset2
);
5473 isl_die(ctx
, isl_error_unknown
, "bad preimage",
5484 } preimage_domain_tests
[] = {
5485 { "{ B[i,j] -> C[2i + 3j] : 0 <= i < 10 and 0 <= j < 100 }",
5486 "{ A[j,i] -> B[i,j] }",
5487 "{ A[j,i] -> C[2i + 3j] : 0 <= i < 10 and 0 <= j < 100 }" },
5488 { "{ B[i] -> C[i]; D[i] -> E[i] }",
5489 "{ A[i] -> B[i + 1] }",
5490 "{ A[i] -> C[i + 1] }" },
5491 { "{ B[i] -> C[i]; B[i] -> E[i] }",
5492 "{ A[i] -> B[i + 1] }",
5493 "{ A[i] -> C[i + 1]; A[i] -> E[i + 1] }" },
5494 { "{ B[i] -> C[([i/2])] }",
5495 "{ A[i] -> B[2i] }",
5496 "{ A[i] -> C[i] }" },
5497 { "{ B[i,j] -> C[([i/2]), ([(i+j)/3])] }",
5498 "{ A[i] -> B[([i/5]), ([i/7])] }",
5499 "{ A[i] -> C[([([i/5])/2]), ([(([i/5])+([i/7]))/3])] }" },
5500 { "[N] -> { B[i] -> C[([N/2]), i, ([N/3])] }",
5501 "[N] -> { A[] -> B[([N/5])] }",
5502 "[N] -> { A[] -> C[([N/2]), ([N/5]), ([N/3])] }" },
5503 { "{ B[i] -> C[i] : exists a : i = 5 a }",
5504 "{ A[i] -> B[2i] }",
5505 "{ A[i] -> C[2i] : exists a : 2i = 5 a }" },
5506 { "{ B[i] -> C[i] : exists a : i = 2 a; "
5507 "B[i] -> D[i] : exists a : i = 2 a + 1 }",
5508 "{ A[i] -> B[2i] }",
5509 "{ A[i] -> C[2i] }" },
5510 { "{ A[i] -> B[i] }", "{ C[i] -> A[(i + floor(i/3))/2] }",
5511 "{ C[i] -> B[j] : 2j = i + floor(i/3) }" },
5514 static int test_preimage_union_map(isl_ctx
*ctx
)
5517 isl_union_map
*umap1
, *umap2
;
5521 for (i
= 0; i
< ARRAY_SIZE(preimage_domain_tests
); ++i
) {
5522 umap1
= isl_union_map_read_from_str(ctx
,
5523 preimage_domain_tests
[i
].map
);
5524 ma
= isl_multi_aff_read_from_str(ctx
,
5525 preimage_domain_tests
[i
].ma
);
5526 umap2
= isl_union_map_read_from_str(ctx
,
5527 preimage_domain_tests
[i
].res
);
5528 umap1
= isl_union_map_preimage_domain_multi_aff(umap1
, ma
);
5529 equal
= isl_union_map_is_equal(umap1
, umap2
);
5530 isl_union_map_free(umap1
);
5531 isl_union_map_free(umap2
);
5535 isl_die(ctx
, isl_error_unknown
, "bad preimage",
5542 static int test_preimage(isl_ctx
*ctx
)
5544 if (test_preimage_basic_set(ctx
) < 0)
5546 if (test_preimage_union_map(ctx
) < 0)
5556 } pullback_tests
[] = {
5557 { "{ B[i,j] -> C[i + 2j] }" , "{ A[a,b] -> B[b,a] }",
5558 "{ A[a,b] -> C[b + 2a] }" },
5559 { "{ B[i] -> C[2i] }", "{ A[a] -> B[(a)/2] }", "{ A[a] -> C[a] }" },
5560 { "{ B[i] -> C[(i)/2] }", "{ A[a] -> B[2a] }", "{ A[a] -> C[a] }" },
5561 { "{ B[i] -> C[(i)/2] }", "{ A[a] -> B[(a)/3] }",
5562 "{ A[a] -> C[(a)/6] }" },
5563 { "{ B[i] -> C[2i] }", "{ A[a] -> B[5a] }", "{ A[a] -> C[10a] }" },
5564 { "{ B[i] -> C[2i] }", "{ A[a] -> B[(a)/3] }",
5565 "{ A[a] -> C[(2a)/3] }" },
5566 { "{ B[i,j] -> C[i + j] }", "{ A[a] -> B[a,a] }", "{ A[a] -> C[2a] }"},
5567 { "{ B[a] -> C[a,a] }", "{ A[i,j] -> B[i + j] }",
5568 "{ A[i,j] -> C[i + j, i + j] }"},
5569 { "{ B[i] -> C[([i/2])] }", "{ B[5] }", "{ C[2] }" },
5570 { "[n] -> { B[i,j] -> C[([i/2]) + 2j] }",
5571 "[n] -> { B[n,[n/3]] }", "[n] -> { C[([n/2]) + 2*[n/3]] }", },
5572 { "{ [i, j] -> [floor((i)/4) + floor((2*i+j)/5)] }",
5573 "{ [i, j] -> [floor((i)/3), j] }",
5574 "{ [i, j] -> [(floor((i)/12) + floor((j + 2*floor((i)/3))/5))] }" },
5577 static int test_pullback(isl_ctx
*ctx
)
5580 isl_multi_aff
*ma1
, *ma2
;
5584 for (i
= 0; i
< ARRAY_SIZE(pullback_tests
); ++i
) {
5585 ma1
= isl_multi_aff_read_from_str(ctx
, pullback_tests
[i
].ma1
);
5586 ma
= isl_multi_aff_read_from_str(ctx
, pullback_tests
[i
].ma
);
5587 ma2
= isl_multi_aff_read_from_str(ctx
, pullback_tests
[i
].res
);
5588 ma1
= isl_multi_aff_pullback_multi_aff(ma1
, ma
);
5589 equal
= isl_multi_aff_plain_is_equal(ma1
, ma2
);
5590 isl_multi_aff_free(ma1
);
5591 isl_multi_aff_free(ma2
);
5595 isl_die(ctx
, isl_error_unknown
, "bad pullback",
5602 /* Check that negation is printed correctly and that equal expressions
5603 * are correctly identified.
5605 static int test_ast(isl_ctx
*ctx
)
5607 isl_ast_expr
*expr
, *expr1
, *expr2
, *expr3
;
5611 expr1
= isl_ast_expr_from_id(isl_id_alloc(ctx
, "A", NULL
));
5612 expr2
= isl_ast_expr_from_id(isl_id_alloc(ctx
, "B", NULL
));
5613 expr
= isl_ast_expr_add(expr1
, expr2
);
5614 expr2
= isl_ast_expr_copy(expr
);
5615 expr
= isl_ast_expr_neg(expr
);
5616 expr2
= isl_ast_expr_neg(expr2
);
5617 equal
= isl_ast_expr_is_equal(expr
, expr2
);
5618 str
= isl_ast_expr_to_C_str(expr
);
5619 ok
= str
? !strcmp(str
, "-(A + B)") : -1;
5621 isl_ast_expr_free(expr
);
5622 isl_ast_expr_free(expr2
);
5624 if (ok
< 0 || equal
< 0)
5627 isl_die(ctx
, isl_error_unknown
,
5628 "equal expressions not considered equal", return -1);
5630 isl_die(ctx
, isl_error_unknown
,
5631 "isl_ast_expr printed incorrectly", return -1);
5633 expr1
= isl_ast_expr_from_id(isl_id_alloc(ctx
, "A", NULL
));
5634 expr2
= isl_ast_expr_from_id(isl_id_alloc(ctx
, "B", NULL
));
5635 expr
= isl_ast_expr_add(expr1
, expr2
);
5636 expr3
= isl_ast_expr_from_id(isl_id_alloc(ctx
, "C", NULL
));
5637 expr
= isl_ast_expr_sub(expr3
, expr
);
5638 str
= isl_ast_expr_to_C_str(expr
);
5639 ok
= str
? !strcmp(str
, "C - (A + B)") : -1;
5641 isl_ast_expr_free(expr
);
5646 isl_die(ctx
, isl_error_unknown
,
5647 "isl_ast_expr printed incorrectly", return -1);
5652 /* Check that isl_ast_build_expr_from_set returns a valid expression
5653 * for an empty set. Note that isl_ast_build_expr_from_set getting
5654 * called on an empty set probably indicates a bug in the caller.
5656 static int test_ast_build(isl_ctx
*ctx
)
5659 isl_ast_build
*build
;
5662 set
= isl_set_universe(isl_space_params_alloc(ctx
, 0));
5663 build
= isl_ast_build_from_context(set
);
5665 set
= isl_set_empty(isl_space_params_alloc(ctx
, 0));
5666 expr
= isl_ast_build_expr_from_set(build
, set
);
5668 isl_ast_expr_free(expr
);
5669 isl_ast_build_free(build
);
5677 /* Internal data structure for before_for and after_for callbacks.
5679 * depth is the current depth
5680 * before is the number of times before_for has been called
5681 * after is the number of times after_for has been called
5683 struct isl_test_codegen_data
{
5689 /* This function is called before each for loop in the AST generated
5690 * from test_ast_gen1.
5692 * Increment the number of calls and the depth.
5693 * Check that the space returned by isl_ast_build_get_schedule_space
5694 * matches the target space of the schedule returned by
5695 * isl_ast_build_get_schedule.
5696 * Return an isl_id that is checked by the corresponding call
5699 static __isl_give isl_id
*before_for(__isl_keep isl_ast_build
*build
,
5702 struct isl_test_codegen_data
*data
= user
;
5705 isl_union_map
*schedule
;
5706 isl_union_set
*uset
;
5711 ctx
= isl_ast_build_get_ctx(build
);
5713 if (data
->before
>= 3)
5714 isl_die(ctx
, isl_error_unknown
,
5715 "unexpected number of for nodes", return NULL
);
5716 if (data
->depth
>= 2)
5717 isl_die(ctx
, isl_error_unknown
,
5718 "unexpected depth", return NULL
);
5720 snprintf(name
, sizeof(name
), "d%d", data
->depth
);
5724 schedule
= isl_ast_build_get_schedule(build
);
5725 uset
= isl_union_map_range(schedule
);
5728 if (isl_union_set_n_set(uset
) != 1) {
5729 isl_union_set_free(uset
);
5730 isl_die(ctx
, isl_error_unknown
,
5731 "expecting single range space", return NULL
);
5734 space
= isl_ast_build_get_schedule_space(build
);
5735 set
= isl_union_set_extract_set(uset
, space
);
5736 isl_union_set_free(uset
);
5737 empty
= isl_set_is_empty(set
);
5743 isl_die(ctx
, isl_error_unknown
,
5744 "spaces don't match", return NULL
);
5746 return isl_id_alloc(ctx
, name
, NULL
);
5749 /* This function is called after each for loop in the AST generated
5750 * from test_ast_gen1.
5752 * Increment the number of calls and decrement the depth.
5753 * Check that the annotation attached to the node matches
5754 * the isl_id returned by the corresponding call to before_for.
5756 static __isl_give isl_ast_node
*after_for(__isl_take isl_ast_node
*node
,
5757 __isl_keep isl_ast_build
*build
, void *user
)
5759 struct isl_test_codegen_data
*data
= user
;
5767 if (data
->after
> data
->before
)
5768 isl_die(isl_ast_node_get_ctx(node
), isl_error_unknown
,
5769 "mismatch in number of for nodes",
5770 return isl_ast_node_free(node
));
5772 id
= isl_ast_node_get_annotation(node
);
5774 isl_die(isl_ast_node_get_ctx(node
), isl_error_unknown
,
5775 "missing annotation", return isl_ast_node_free(node
));
5777 name
= isl_id_get_name(id
);
5778 valid
= name
&& atoi(name
+ 1) == data
->depth
;
5782 isl_die(isl_ast_node_get_ctx(node
), isl_error_unknown
,
5783 "wrong annotation", return isl_ast_node_free(node
));
5788 /* Check that the before_each_for and after_each_for callbacks
5789 * are called for each for loop in the generated code,
5790 * that they are called in the right order and that the isl_id
5791 * returned from the before_each_for callback is attached to
5792 * the isl_ast_node passed to the corresponding after_each_for call.
5794 static int test_ast_gen1(isl_ctx
*ctx
)
5798 isl_union_map
*schedule
;
5799 isl_ast_build
*build
;
5801 struct isl_test_codegen_data data
;
5803 str
= "[N] -> { : N >= 10 }";
5804 set
= isl_set_read_from_str(ctx
, str
);
5805 str
= "[N] -> { A[i,j] -> S[8,i,3,j] : 0 <= i,j <= N; "
5806 "B[i,j] -> S[8,j,9,i] : 0 <= i,j <= N }";
5807 schedule
= isl_union_map_read_from_str(ctx
, str
);
5812 build
= isl_ast_build_from_context(set
);
5813 build
= isl_ast_build_set_before_each_for(build
,
5814 &before_for
, &data
);
5815 build
= isl_ast_build_set_after_each_for(build
,
5817 tree
= isl_ast_build_node_from_schedule_map(build
, schedule
);
5818 isl_ast_build_free(build
);
5822 isl_ast_node_free(tree
);
5824 if (data
.before
!= 3 || data
.after
!= 3)
5825 isl_die(ctx
, isl_error_unknown
,
5826 "unexpected number of for nodes", return -1);
5831 /* Check that the AST generator handles domains that are integrally disjoint
5832 * but not rationally disjoint.
5834 static int test_ast_gen2(isl_ctx
*ctx
)
5838 isl_union_map
*schedule
;
5839 isl_union_map
*options
;
5840 isl_ast_build
*build
;
5843 str
= "{ A[i,j] -> [i,j] : 0 <= i,j <= 1 }";
5844 schedule
= isl_union_map_read_from_str(ctx
, str
);
5845 set
= isl_set_universe(isl_space_params_alloc(ctx
, 0));
5846 build
= isl_ast_build_from_context(set
);
5848 str
= "{ [i,j] -> atomic[1] : i + j = 1; [i,j] -> unroll[1] : i = j }";
5849 options
= isl_union_map_read_from_str(ctx
, str
);
5850 build
= isl_ast_build_set_options(build
, options
);
5851 tree
= isl_ast_build_node_from_schedule_map(build
, schedule
);
5852 isl_ast_build_free(build
);
5855 isl_ast_node_free(tree
);
5860 /* Increment *user on each call.
5862 static __isl_give isl_ast_node
*count_domains(__isl_take isl_ast_node
*node
,
5863 __isl_keep isl_ast_build
*build
, void *user
)
5872 /* Test that unrolling tries to minimize the number of instances.
5873 * In particular, for the schedule given below, make sure it generates
5874 * 3 nodes (rather than 101).
5876 static int test_ast_gen3(isl_ctx
*ctx
)
5880 isl_union_map
*schedule
;
5881 isl_union_map
*options
;
5882 isl_ast_build
*build
;
5886 str
= "[n] -> { A[i] -> [i] : 0 <= i <= 100 and n <= i <= n + 2 }";
5887 schedule
= isl_union_map_read_from_str(ctx
, str
);
5888 set
= isl_set_universe(isl_space_params_alloc(ctx
, 0));
5890 str
= "{ [i] -> unroll[0] }";
5891 options
= isl_union_map_read_from_str(ctx
, str
);
5893 build
= isl_ast_build_from_context(set
);
5894 build
= isl_ast_build_set_options(build
, options
);
5895 build
= isl_ast_build_set_at_each_domain(build
,
5896 &count_domains
, &n_domain
);
5897 tree
= isl_ast_build_node_from_schedule_map(build
, schedule
);
5898 isl_ast_build_free(build
);
5902 isl_ast_node_free(tree
);
5905 isl_die(ctx
, isl_error_unknown
,
5906 "unexpected number of for nodes", return -1);
5911 /* Check that if the ast_build_exploit_nested_bounds options is set,
5912 * we do not get an outer if node in the generated AST,
5913 * while we do get such an outer if node if the options is not set.
5915 static int test_ast_gen4(isl_ctx
*ctx
)
5919 isl_union_map
*schedule
;
5920 isl_ast_build
*build
;
5922 enum isl_ast_node_type type
;
5925 enb
= isl_options_get_ast_build_exploit_nested_bounds(ctx
);
5926 str
= "[N,M] -> { A[i,j] -> [i,j] : 0 <= i <= N and 0 <= j <= M }";
5928 isl_options_set_ast_build_exploit_nested_bounds(ctx
, 1);
5930 schedule
= isl_union_map_read_from_str(ctx
, str
);
5931 set
= isl_set_universe(isl_space_params_alloc(ctx
, 0));
5932 build
= isl_ast_build_from_context(set
);
5933 tree
= isl_ast_build_node_from_schedule_map(build
, schedule
);
5934 isl_ast_build_free(build
);
5938 type
= isl_ast_node_get_type(tree
);
5939 isl_ast_node_free(tree
);
5941 if (type
== isl_ast_node_if
)
5942 isl_die(ctx
, isl_error_unknown
,
5943 "not expecting if node", return -1);
5945 isl_options_set_ast_build_exploit_nested_bounds(ctx
, 0);
5947 schedule
= isl_union_map_read_from_str(ctx
, str
);
5948 set
= isl_set_universe(isl_space_params_alloc(ctx
, 0));
5949 build
= isl_ast_build_from_context(set
);
5950 tree
= isl_ast_build_node_from_schedule_map(build
, schedule
);
5951 isl_ast_build_free(build
);
5955 type
= isl_ast_node_get_type(tree
);
5956 isl_ast_node_free(tree
);
5958 if (type
!= isl_ast_node_if
)
5959 isl_die(ctx
, isl_error_unknown
,
5960 "expecting if node", return -1);
5962 isl_options_set_ast_build_exploit_nested_bounds(ctx
, enb
);
5967 /* This function is called for each leaf in the AST generated
5968 * from test_ast_gen5.
5970 * We finalize the AST generation by extending the outer schedule
5971 * with a zero-dimensional schedule. If this results in any for loops,
5972 * then this means that we did not pass along enough information
5973 * about the outer schedule to the inner AST generation.
5975 static __isl_give isl_ast_node
*create_leaf(__isl_take isl_ast_build
*build
,
5978 isl_union_map
*schedule
, *extra
;
5981 schedule
= isl_ast_build_get_schedule(build
);
5982 extra
= isl_union_map_copy(schedule
);
5983 extra
= isl_union_map_from_domain(isl_union_map_domain(extra
));
5984 schedule
= isl_union_map_range_product(schedule
, extra
);
5985 tree
= isl_ast_build_node_from_schedule_map(build
, schedule
);
5986 isl_ast_build_free(build
);
5991 if (isl_ast_node_get_type(tree
) == isl_ast_node_for
)
5992 isl_die(isl_ast_node_get_ctx(tree
), isl_error_unknown
,
5993 "code should not contain any for loop",
5994 return isl_ast_node_free(tree
));
5999 /* Check that we do not lose any information when going back and
6000 * forth between internal and external schedule.
6002 * In particular, we create an AST where we unroll the only
6003 * non-constant dimension in the schedule. We therefore do
6004 * not expect any for loops in the AST. However, older versions
6005 * of isl would not pass along enough information about the outer
6006 * schedule when performing an inner code generation from a create_leaf
6007 * callback, resulting in the inner code generation producing a for loop.
6009 static int test_ast_gen5(isl_ctx
*ctx
)
6013 isl_union_map
*schedule
, *options
;
6014 isl_ast_build
*build
;
6017 str
= "{ A[] -> [1, 1, 2]; B[i] -> [1, i, 0] : i >= 1 and i <= 2 }";
6018 schedule
= isl_union_map_read_from_str(ctx
, str
);
6020 str
= "{ [a, b, c] -> unroll[1] : exists (e0 = [(a)/4]: "
6021 "4e0 >= -1 + a - b and 4e0 <= -2 + a + b) }";
6022 options
= isl_union_map_read_from_str(ctx
, str
);
6024 set
= isl_set_universe(isl_space_params_alloc(ctx
, 0));
6025 build
= isl_ast_build_from_context(set
);
6026 build
= isl_ast_build_set_options(build
, options
);
6027 build
= isl_ast_build_set_create_leaf(build
, &create_leaf
, NULL
);
6028 tree
= isl_ast_build_node_from_schedule_map(build
, schedule
);
6029 isl_ast_build_free(build
);
6030 isl_ast_node_free(tree
);
6037 /* Check that the expression
6039 * [n] -> { [n/2] : n <= 0 and n % 2 = 0; [0] : n > 0 }
6041 * is not combined into
6045 * as this would result in n/2 being evaluated in parts of
6046 * the definition domain where n is not a multiple of 2.
6048 static int test_ast_expr(isl_ctx
*ctx
)
6052 isl_ast_build
*build
;
6057 min_max
= isl_options_get_ast_build_detect_min_max(ctx
);
6058 isl_options_set_ast_build_detect_min_max(ctx
, 1);
6060 str
= "[n] -> { [n/2] : n <= 0 and n % 2 = 0; [0] : n > 0 }";
6061 pa
= isl_pw_aff_read_from_str(ctx
, str
);
6062 build
= isl_ast_build_alloc(ctx
);
6063 expr
= isl_ast_build_expr_from_pw_aff(build
, pa
);
6064 is_min
= isl_ast_expr_get_type(expr
) == isl_ast_expr_op
&&
6065 isl_ast_expr_get_op_type(expr
) == isl_ast_op_min
;
6066 isl_ast_build_free(build
);
6067 isl_ast_expr_free(expr
);
6069 isl_options_set_ast_build_detect_min_max(ctx
, min_max
);
6074 isl_die(ctx
, isl_error_unknown
,
6075 "expressions should not be combined", return -1);
6080 static int test_ast_gen(isl_ctx
*ctx
)
6082 if (test_ast_gen1(ctx
) < 0)
6084 if (test_ast_gen2(ctx
) < 0)
6086 if (test_ast_gen3(ctx
) < 0)
6088 if (test_ast_gen4(ctx
) < 0)
6090 if (test_ast_gen5(ctx
) < 0)
6092 if (test_ast_expr(ctx
) < 0)
6097 /* Check if dropping output dimensions from an isl_pw_multi_aff
6100 static int test_pw_multi_aff(isl_ctx
*ctx
)
6103 isl_pw_multi_aff
*pma1
, *pma2
;
6106 str
= "{ [i,j] -> [i+j, 4i-j] }";
6107 pma1
= isl_pw_multi_aff_read_from_str(ctx
, str
);
6108 str
= "{ [i,j] -> [4i-j] }";
6109 pma2
= isl_pw_multi_aff_read_from_str(ctx
, str
);
6111 pma1
= isl_pw_multi_aff_drop_dims(pma1
, isl_dim_out
, 0, 1);
6113 equal
= isl_pw_multi_aff_plain_is_equal(pma1
, pma2
);
6115 isl_pw_multi_aff_free(pma1
);
6116 isl_pw_multi_aff_free(pma2
);
6120 isl_die(ctx
, isl_error_unknown
,
6121 "expressions not equal", return -1);
6126 /* Check that we can properly parse multi piecewise affine expressions
6127 * where the piecewise affine expressions have different domains.
6129 static int test_multi_pw_aff(isl_ctx
*ctx
)
6132 isl_set
*dom
, *dom2
;
6133 isl_multi_pw_aff
*mpa1
, *mpa2
;
6138 mpa1
= isl_multi_pw_aff_read_from_str(ctx
, "{ [i] -> [i] }");
6139 dom
= isl_set_read_from_str(ctx
, "{ [i] : i > 0 }");
6140 mpa1
= isl_multi_pw_aff_intersect_domain(mpa1
, dom
);
6141 mpa2
= isl_multi_pw_aff_read_from_str(ctx
, "{ [i] -> [2i] }");
6142 mpa2
= isl_multi_pw_aff_flat_range_product(mpa1
, mpa2
);
6143 str
= "{ [i] -> [(i : i > 0), 2i] }";
6144 mpa1
= isl_multi_pw_aff_read_from_str(ctx
, str
);
6146 equal
= isl_multi_pw_aff_plain_is_equal(mpa1
, mpa2
);
6148 pa
= isl_multi_pw_aff_get_pw_aff(mpa1
, 0);
6149 dom
= isl_pw_aff_domain(pa
);
6150 pa
= isl_multi_pw_aff_get_pw_aff(mpa1
, 1);
6151 dom2
= isl_pw_aff_domain(pa
);
6152 equal_domain
= isl_set_is_equal(dom
, dom2
);
6156 isl_multi_pw_aff_free(mpa1
);
6157 isl_multi_pw_aff_free(mpa2
);
6162 isl_die(ctx
, isl_error_unknown
,
6163 "expressions not equal", return -1);
6165 if (equal_domain
< 0)
6168 isl_die(ctx
, isl_error_unknown
,
6169 "domains unexpectedly equal", return -1);
6174 /* This is a regression test for a bug where isl_basic_map_simplify
6175 * would end up in an infinite loop. In particular, we construct
6176 * an empty basic set that is not obviously empty.
6177 * isl_basic_set_is_empty marks the basic set as empty.
6178 * After projecting out i3, the variable can be dropped completely,
6179 * but isl_basic_map_simplify refrains from doing so if the basic set
6180 * is empty and would end up in an infinite loop if it didn't test
6181 * explicitly for empty basic maps in the outer loop.
6183 static int test_simplify_1(isl_ctx
*ctx
)
6186 isl_basic_set
*bset
;
6189 str
= "{ [i0, i1, i2, i3] : i0 >= -2 and 6i2 <= 4 + i0 + 5i1 and "
6190 "i2 <= 22 and 75i2 <= 111 + 13i0 + 60i1 and "
6191 "25i2 >= 38 + 6i0 + 20i1 and i0 <= -1 and i2 >= 20 and "
6193 bset
= isl_basic_set_read_from_str(ctx
, str
);
6194 empty
= isl_basic_set_is_empty(bset
);
6195 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 3, 1);
6196 isl_basic_set_free(bset
);
6200 isl_die(ctx
, isl_error_unknown
,
6201 "basic set should be empty", return -1);
6206 /* Check that the equality in the set description below
6207 * is simplified away.
6209 static int test_simplify_2(isl_ctx
*ctx
)
6212 isl_basic_set
*bset
;
6215 str
= "{ [a] : exists e0, e1: 32e1 = 31 + 31a + 31e0 }";
6216 bset
= isl_basic_set_read_from_str(ctx
, str
);
6217 universe
= isl_basic_set_plain_is_universe(bset
);
6218 isl_basic_set_free(bset
);
6223 isl_die(ctx
, isl_error_unknown
,
6224 "equality not simplified away", return -1);
6228 /* Some simplification tests.
6230 static int test_simplify(isl_ctx
*ctx
)
6232 if (test_simplify_1(ctx
) < 0)
6234 if (test_simplify_2(ctx
) < 0)
6239 /* This is a regression test for a bug where isl_tab_basic_map_partial_lexopt
6240 * with gbr context would fail to disable the use of the shifted tableau
6241 * when transferring equalities for the input to the context, resulting
6242 * in invalid sample values.
6244 static int test_partial_lexmin(isl_ctx
*ctx
)
6247 isl_basic_set
*bset
;
6248 isl_basic_map
*bmap
;
6251 str
= "{ [1, b, c, 1 - c] -> [e] : 2e <= -c and 2e >= -3 + c }";
6252 bmap
= isl_basic_map_read_from_str(ctx
, str
);
6253 str
= "{ [a, b, c, d] : c <= 1 and 2d >= 6 - 4b - c }";
6254 bset
= isl_basic_set_read_from_str(ctx
, str
);
6255 map
= isl_basic_map_partial_lexmin(bmap
, bset
, NULL
);
6264 /* Check that the variable compression performed on the existentially
6265 * quantified variables inside isl_basic_set_compute_divs is not confused
6266 * by the implicit equalities among the parameters.
6268 static int test_compute_divs(isl_ctx
*ctx
)
6271 isl_basic_set
*bset
;
6274 str
= "[a, b, c, d, e] -> { [] : exists (e0: 2d = b and a <= 124 and "
6275 "b <= 2046 and b >= 0 and b <= 60 + 64a and 2e >= b + 2c and "
6276 "2e >= b and 2e <= 1 + b and 2e <= 1 + b + 2c and "
6277 "32768e0 >= -124 + a and 2097152e0 <= 60 + 64a - b) }";
6278 bset
= isl_basic_set_read_from_str(ctx
, str
);
6279 set
= isl_basic_set_compute_divs(bset
);
6287 /* Check that the reaching domain elements and the prefix schedule
6288 * at a leaf node are the same before and after grouping.
6290 static int test_schedule_tree_group_1(isl_ctx
*ctx
)
6295 isl_union_set
*uset
;
6296 isl_multi_union_pw_aff
*mupa
;
6297 isl_union_pw_multi_aff
*upma1
, *upma2
;
6298 isl_union_set
*domain1
, *domain2
;
6299 isl_union_map
*umap1
, *umap2
;
6300 isl_schedule_node
*node
;
6302 str
= "{ S1[i,j] : 0 <= i,j < 10; S2[i,j] : 0 <= i,j < 10 }";
6303 uset
= isl_union_set_read_from_str(ctx
, str
);
6304 node
= isl_schedule_node_from_domain(uset
);
6305 node
= isl_schedule_node_child(node
, 0);
6306 str
= "[{ S1[i,j] -> [i]; S2[i,j] -> [9 - i] }]";
6307 mupa
= isl_multi_union_pw_aff_read_from_str(ctx
, str
);
6308 node
= isl_schedule_node_insert_partial_schedule(node
, mupa
);
6309 node
= isl_schedule_node_child(node
, 0);
6310 str
= "[{ S1[i,j] -> [j]; S2[i,j] -> [j] }]";
6311 mupa
= isl_multi_union_pw_aff_read_from_str(ctx
, str
);
6312 node
= isl_schedule_node_insert_partial_schedule(node
, mupa
);
6313 node
= isl_schedule_node_child(node
, 0);
6314 umap1
= isl_schedule_node_get_prefix_schedule_union_map(node
);
6315 upma1
= isl_schedule_node_get_prefix_schedule_union_pw_multi_aff(node
);
6316 domain1
= isl_schedule_node_get_domain(node
);
6317 id
= isl_id_alloc(ctx
, "group", NULL
);
6318 node
= isl_schedule_node_parent(node
);
6319 node
= isl_schedule_node_group(node
, id
);
6320 node
= isl_schedule_node_child(node
, 0);
6321 umap2
= isl_schedule_node_get_prefix_schedule_union_map(node
);
6322 upma2
= isl_schedule_node_get_prefix_schedule_union_pw_multi_aff(node
);
6323 domain2
= isl_schedule_node_get_domain(node
);
6324 equal
= isl_union_pw_multi_aff_plain_is_equal(upma1
, upma2
);
6325 if (equal
>= 0 && equal
)
6326 equal
= isl_union_set_is_equal(domain1
, domain2
);
6327 if (equal
>= 0 && equal
)
6328 equal
= isl_union_map_is_equal(umap1
, umap2
);
6329 isl_union_map_free(umap1
);
6330 isl_union_map_free(umap2
);
6331 isl_union_set_free(domain1
);
6332 isl_union_set_free(domain2
);
6333 isl_union_pw_multi_aff_free(upma1
);
6334 isl_union_pw_multi_aff_free(upma2
);
6335 isl_schedule_node_free(node
);
6340 isl_die(ctx
, isl_error_unknown
,
6341 "expressions not equal", return -1);
6346 /* Check that we can have nested groupings and that the union map
6347 * schedule representation is the same before and after the grouping.
6348 * Note that after the grouping, the union map representation contains
6349 * the domain constraints from the ranges of the expansion nodes,
6350 * while they are missing from the union map representation of
6351 * the tree without expansion nodes.
6353 * Also check that the global expansion is as expected.
6355 static int test_schedule_tree_group_2(isl_ctx
*ctx
)
6357 int equal
, equal_expansion
;
6360 isl_union_set
*uset
;
6361 isl_union_map
*umap1
, *umap2
;
6362 isl_union_map
*expansion1
, *expansion2
;
6363 isl_union_set_list
*filters
;
6364 isl_multi_union_pw_aff
*mupa
;
6365 isl_schedule
*schedule
;
6366 isl_schedule_node
*node
;
6368 str
= "{ S1[i,j] : 0 <= i,j < 10; S2[i,j] : 0 <= i,j < 10; "
6369 "S3[i,j] : 0 <= i,j < 10 }";
6370 uset
= isl_union_set_read_from_str(ctx
, str
);
6371 node
= isl_schedule_node_from_domain(uset
);
6372 node
= isl_schedule_node_child(node
, 0);
6373 str
= "[{ S1[i,j] -> [i]; S2[i,j] -> [i]; S3[i,j] -> [i] }]";
6374 mupa
= isl_multi_union_pw_aff_read_from_str(ctx
, str
);
6375 node
= isl_schedule_node_insert_partial_schedule(node
, mupa
);
6376 node
= isl_schedule_node_child(node
, 0);
6377 str
= "{ S1[i,j] }";
6378 uset
= isl_union_set_read_from_str(ctx
, str
);
6379 filters
= isl_union_set_list_from_union_set(uset
);
6380 str
= "{ S2[i,j]; S3[i,j] }";
6381 uset
= isl_union_set_read_from_str(ctx
, str
);
6382 filters
= isl_union_set_list_add(filters
, uset
);
6383 node
= isl_schedule_node_insert_sequence(node
, filters
);
6384 node
= isl_schedule_node_child(node
, 1);
6385 node
= isl_schedule_node_child(node
, 0);
6386 str
= "{ S2[i,j] }";
6387 uset
= isl_union_set_read_from_str(ctx
, str
);
6388 filters
= isl_union_set_list_from_union_set(uset
);
6389 str
= "{ S3[i,j] }";
6390 uset
= isl_union_set_read_from_str(ctx
, str
);
6391 filters
= isl_union_set_list_add(filters
, uset
);
6392 node
= isl_schedule_node_insert_sequence(node
, filters
);
6394 schedule
= isl_schedule_node_get_schedule(node
);
6395 umap1
= isl_schedule_get_map(schedule
);
6396 uset
= isl_schedule_get_domain(schedule
);
6397 umap1
= isl_union_map_intersect_domain(umap1
, uset
);
6398 isl_schedule_free(schedule
);
6400 node
= isl_schedule_node_parent(node
);
6401 node
= isl_schedule_node_parent(node
);
6402 id
= isl_id_alloc(ctx
, "group1", NULL
);
6403 node
= isl_schedule_node_group(node
, id
);
6404 node
= isl_schedule_node_child(node
, 1);
6405 node
= isl_schedule_node_child(node
, 0);
6406 id
= isl_id_alloc(ctx
, "group2", NULL
);
6407 node
= isl_schedule_node_group(node
, id
);
6409 schedule
= isl_schedule_node_get_schedule(node
);
6410 umap2
= isl_schedule_get_map(schedule
);
6411 isl_schedule_free(schedule
);
6413 node
= isl_schedule_node_root(node
);
6414 node
= isl_schedule_node_child(node
, 0);
6415 expansion1
= isl_schedule_node_get_subtree_expansion(node
);
6416 isl_schedule_node_free(node
);
6418 str
= "{ group1[i] -> S1[i,j] : 0 <= i,j < 10; "
6419 "group1[i] -> S2[i,j] : 0 <= i,j < 10; "
6420 "group1[i] -> S3[i,j] : 0 <= i,j < 10 }";
6422 expansion2
= isl_union_map_read_from_str(ctx
, str
);
6424 equal
= isl_union_map_is_equal(umap1
, umap2
);
6425 equal_expansion
= isl_union_map_is_equal(expansion1
, expansion2
);
6427 isl_union_map_free(umap1
);
6428 isl_union_map_free(umap2
);
6429 isl_union_map_free(expansion1
);
6430 isl_union_map_free(expansion2
);
6432 if (equal
< 0 || equal_expansion
< 0)
6435 isl_die(ctx
, isl_error_unknown
,
6436 "expressions not equal", return -1);
6437 if (!equal_expansion
)
6438 isl_die(ctx
, isl_error_unknown
,
6439 "unexpected expansion", return -1);
6444 /* Some tests for the isl_schedule_node_group function.
6446 static int test_schedule_tree_group(isl_ctx
*ctx
)
6448 if (test_schedule_tree_group_1(ctx
) < 0)
6450 if (test_schedule_tree_group_2(ctx
) < 0)
6459 { "{ rat: [i] : 0 <= i <= 10 }",
6460 "{ rat: coefficients[[cst] -> [a]] : cst >= 0 and 10a + cst >= 0 }" },
6461 { "{ rat: [i] : FALSE }",
6462 "{ rat: coefficients[[cst] -> [a]] }" },
6464 "{ rat: coefficients[[cst] -> [0]] : cst >= 0 }" },
6471 { "{ rat: coefficients[[cst] -> [a]] : cst >= 0 and 10a + cst >= 0 }",
6472 "{ rat: [i] : 0 <= i <= 10 }" },
6473 { "{ rat: coefficients[[cst] -> [a]] : FALSE }",
6475 { "{ rat: coefficients[[cst] -> [a]] }",
6476 "{ rat: [i] : FALSE }" },
6479 /* Test the basic functionality of isl_basic_set_coefficients and
6480 * isl_basic_set_solutions.
6482 static int test_dual(isl_ctx
*ctx
)
6486 for (i
= 0; i
< ARRAY_SIZE(coef_tests
); ++i
) {
6488 isl_basic_set
*bset1
, *bset2
;
6490 bset1
= isl_basic_set_read_from_str(ctx
, coef_tests
[i
].set
);
6491 bset2
= isl_basic_set_read_from_str(ctx
, coef_tests
[i
].dual
);
6492 bset1
= isl_basic_set_coefficients(bset1
);
6493 equal
= isl_basic_set_is_equal(bset1
, bset2
);
6494 isl_basic_set_free(bset1
);
6495 isl_basic_set_free(bset2
);
6499 isl_die(ctx
, isl_error_unknown
,
6500 "incorrect dual", return -1);
6503 for (i
= 0; i
< ARRAY_SIZE(sol_tests
); ++i
) {
6505 isl_basic_set
*bset1
, *bset2
;
6507 bset1
= isl_basic_set_read_from_str(ctx
, sol_tests
[i
].set
);
6508 bset2
= isl_basic_set_read_from_str(ctx
, sol_tests
[i
].dual
);
6509 bset1
= isl_basic_set_solutions(bset1
);
6510 equal
= isl_basic_set_is_equal(bset1
, bset2
);
6511 isl_basic_set_free(bset1
);
6512 isl_basic_set_free(bset2
);
6516 isl_die(ctx
, isl_error_unknown
,
6517 "incorrect dual", return -1);
6527 const char *schedule
;
6532 { 0, 0, "[n] -> { S[i,j] : 0 <= i,j < n }",
6533 "[{ S[i,j] -> [i] }, { S[i,j] -> [j] }]",
6535 "[{ S[i,j] -> [floor(i/32)] }, { S[i,j] -> [floor(j/32)] }]",
6536 "[{ S[i,j] -> [i] }, { S[i,j] -> [j] }]",
6538 { 1, 0, "[n] -> { S[i,j] : 0 <= i,j < n }",
6539 "[{ S[i,j] -> [i] }, { S[i,j] -> [j] }]",
6541 "[{ S[i,j] -> [32*floor(i/32)] }, { S[i,j] -> [32*floor(j/32)] }]",
6542 "[{ S[i,j] -> [i] }, { S[i,j] -> [j] }]",
6544 { 0, 1, "[n] -> { S[i,j] : 0 <= i,j < n }",
6545 "[{ S[i,j] -> [i] }, { S[i,j] -> [j] }]",
6547 "[{ S[i,j] -> [floor(i/32)] }, { S[i,j] -> [floor(j/32)] }]",
6548 "[{ S[i,j] -> [i%32] }, { S[i,j] -> [j%32] }]",
6550 { 1, 1, "[n] -> { S[i,j] : 0 <= i,j < n }",
6551 "[{ S[i,j] -> [i] }, { S[i,j] -> [j] }]",
6553 "[{ S[i,j] -> [32*floor(i/32)] }, { S[i,j] -> [32*floor(j/32)] }]",
6554 "[{ S[i,j] -> [i%32] }, { S[i,j] -> [j%32] }]",
6558 /* Basic tiling tests. Create a schedule tree with a domain and a band node,
6559 * tile the band and then check if the tile and point bands have the
6560 * expected partial schedule.
6562 static int test_tile(isl_ctx
*ctx
)
6568 scale
= isl_options_get_tile_scale_tile_loops(ctx
);
6569 shift
= isl_options_get_tile_shift_point_loops(ctx
);
6571 for (i
= 0; i
< ARRAY_SIZE(tile_tests
); ++i
) {
6575 isl_union_set
*domain
;
6576 isl_multi_union_pw_aff
*mupa
, *mupa2
;
6577 isl_schedule_node
*node
;
6578 isl_multi_val
*sizes
;
6580 opt
= tile_tests
[i
].scale_tile
;
6581 isl_options_set_tile_scale_tile_loops(ctx
, opt
);
6582 opt
= tile_tests
[i
].shift_point
;
6583 isl_options_set_tile_shift_point_loops(ctx
, opt
);
6585 str
= tile_tests
[i
].domain
;
6586 domain
= isl_union_set_read_from_str(ctx
, str
);
6587 node
= isl_schedule_node_from_domain(domain
);
6588 node
= isl_schedule_node_child(node
, 0);
6589 str
= tile_tests
[i
].schedule
;
6590 mupa
= isl_multi_union_pw_aff_read_from_str(ctx
, str
);
6591 node
= isl_schedule_node_insert_partial_schedule(node
, mupa
);
6592 str
= tile_tests
[i
].sizes
;
6593 sizes
= isl_multi_val_read_from_str(ctx
, str
);
6594 node
= isl_schedule_node_band_tile(node
, sizes
);
6596 str
= tile_tests
[i
].tile
;
6597 mupa
= isl_multi_union_pw_aff_read_from_str(ctx
, str
);
6598 mupa2
= isl_schedule_node_band_get_partial_schedule(node
);
6599 equal
= isl_multi_union_pw_aff_plain_is_equal(mupa
, mupa2
);
6600 isl_multi_union_pw_aff_free(mupa
);
6601 isl_multi_union_pw_aff_free(mupa2
);
6603 node
= isl_schedule_node_child(node
, 0);
6605 str
= tile_tests
[i
].point
;
6606 mupa
= isl_multi_union_pw_aff_read_from_str(ctx
, str
);
6607 mupa2
= isl_schedule_node_band_get_partial_schedule(node
);
6608 if (equal
>= 0 && equal
)
6609 equal
= isl_multi_union_pw_aff_plain_is_equal(mupa
,
6611 isl_multi_union_pw_aff_free(mupa
);
6612 isl_multi_union_pw_aff_free(mupa2
);
6614 isl_schedule_node_free(node
);
6619 isl_die(ctx
, isl_error_unknown
,
6620 "unexpected result", return -1);
6623 isl_options_set_tile_scale_tile_loops(ctx
, scale
);
6624 isl_options_set_tile_shift_point_loops(ctx
, shift
);
6629 /* Check that the domain hash of a space is equal to the hash
6630 * of the domain of the space.
6632 static int test_domain_hash(isl_ctx
*ctx
)
6636 uint32_t hash1
, hash2
;
6638 map
= isl_map_read_from_str(ctx
, "[n] -> { A[B[x] -> C[]] -> D[] }");
6639 space
= isl_map_get_space(map
);
6641 hash1
= isl_space_get_domain_hash(space
);
6642 space
= isl_space_domain(space
);
6643 hash2
= isl_space_get_hash(space
);
6644 isl_space_free(space
);
6649 isl_die(ctx
, isl_error_unknown
,
6650 "domain hash not equal to hash of domain", return -1);
6655 /* Check that a universe basic set that is not obviously equal to the universe
6656 * is still recognized as being equal to the universe.
6658 static int test_universe(isl_ctx
*ctx
)
6661 isl_basic_set
*bset
;
6664 s
= "{ [] : exists x, y : 3y <= 2x and y >= -3 + 2x and 2y >= 2 - x }";
6665 bset
= isl_basic_set_read_from_str(ctx
, s
);
6666 is_univ
= isl_basic_set_is_universe(bset
);
6667 isl_basic_set_free(bset
);
6672 isl_die(ctx
, isl_error_unknown
,
6673 "not recognized as universe set", return -1);
6680 int (*fn
)(isl_ctx
*ctx
);
6682 { "universe", &test_universe
},
6683 { "domain hash", &test_domain_hash
},
6684 { "dual", &test_dual
},
6685 { "dependence analysis", &test_flow
},
6686 { "val", &test_val
},
6687 { "compute divs", &test_compute_divs
},
6688 { "partial lexmin", &test_partial_lexmin
},
6689 { "simplify", &test_simplify
},
6690 { "curry", &test_curry
},
6691 { "piecewise multi affine expressions", &test_pw_multi_aff
},
6692 { "multi piecewise affine expressions", &test_multi_pw_aff
},
6693 { "conversion", &test_conversion
},
6694 { "list", &test_list
},
6695 { "align parameters", &test_align_parameters
},
6696 { "preimage", &test_preimage
},
6697 { "pullback", &test_pullback
},
6698 { "AST", &test_ast
},
6699 { "AST build", &test_ast_build
},
6700 { "AST generation", &test_ast_gen
},
6701 { "eliminate", &test_eliminate
},
6702 { "residue class", &test_residue_class
},
6703 { "div", &test_div
},
6704 { "slice", &test_slice
},
6705 { "fixed power", &test_fixed_power
},
6706 { "sample", &test_sample
},
6707 { "output", &test_output
},
6708 { "vertices", &test_vertices
},
6709 { "fixed", &test_fixed
},
6710 { "equal", &test_equal
},
6711 { "disjoint", &test_disjoint
},
6712 { "product", &test_product
},
6713 { "dim_max", &test_dim_max
},
6714 { "affine", &test_aff
},
6715 { "injective", &test_injective
},
6716 { "schedule (whole component)", &test_schedule_whole
},
6717 { "schedule (incremental)", &test_schedule_incremental
},
6718 { "schedule tree grouping", &test_schedule_tree_group
},
6719 { "tile", &test_tile
},
6720 { "union_pw", &test_union_pw
},
6721 { "eval", &test_eval
},
6722 { "parse", &test_parse
},
6723 { "single-valued", &test_sv
},
6724 { "affine hull", &test_affine_hull
},
6725 { "simple_hull", &test_simple_hull
},
6726 { "coalesce", &test_coalesce
},
6727 { "factorize", &test_factorize
},
6728 { "subset", &test_subset
},
6729 { "subtract", &test_subtract
},
6730 { "intersect", &test_intersect
},
6731 { "lexmin", &test_lexmin
},
6732 { "min", &test_min
},
6733 { "gist", &test_gist
},
6734 { "piecewise quasi-polynomials", &test_pwqp
},
6735 { "lift", &test_lift
},
6736 { "bound", &test_bound
},
6737 { "union", &test_union
},
6738 { "split periods", &test_split_periods
},
6739 { "lexicographic order", &test_lex
},
6740 { "bijectivity", &test_bijective
},
6741 { "dataflow analysis", &test_dep
},
6742 { "reading", &test_read
},
6743 { "bounded", &test_bounded
},
6744 { "construction", &test_construction
},
6745 { "dimension manipulation", &test_dim
},
6746 { "map application", &test_application
},
6747 { "convex hull", &test_convex_hull
},
6748 { "transitive closure", &test_closure
},
6751 int main(int argc
, char **argv
)
6754 struct isl_ctx
*ctx
;
6755 struct isl_options
*options
;
6757 srcdir
= getenv("srcdir");
6760 options
= isl_options_new_with_defaults();
6762 argc
= isl_options_parse(options
, argc
, argv
, ISL_ARG_ALL
);
6764 ctx
= isl_ctx_alloc_with_options(&isl_options_args
, options
);
6765 for (i
= 0; i
< ARRAY_SIZE(tests
); ++i
) {
6766 printf("%s\n", tests
[i
].name
);
6767 if (tests
[i
].fn(ctx
) < 0)