Update imath to include big-endian support for mpz_import/export
[isl.git] / isl_test.c
blobb37216dfce59133273ef6bd144c85977adacaa3c
1 /*
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
18 #include <assert.h>
19 #include <stdio.h>
20 #include <limits.h>
21 #include <isl_ctx_private.h>
22 #include <isl_map_private.h>
23 #include <isl_aff_private.h>
24 #include <isl_space_private.h>
25 #include <isl/set.h>
26 #include <isl/flow.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>
37 #include <isl/val.h>
38 #include <isl/ilp.h>
39 #include <isl_ast_build_expr.h>
40 #include <isl/options.h>
42 #define ARRAY_SIZE(array) (sizeof(array)/sizeof(*array))
44 static char *srcdir;
46 static char *get_filename(isl_ctx *ctx, const char *name, const char *suffix) {
47 char *filename;
48 int length;
49 char *pattern = "%s/test_inputs/%s.%s";
51 length = strlen(pattern) - 6 + strlen(srcdir) + strlen(name)
52 + strlen(suffix) + 1;
53 filename = isl_alloc_array(ctx, char, length);
55 if (!filename)
56 return NULL;
58 sprintf(filename, pattern, srcdir, name, suffix);
60 return filename;
63 void test_parse_map(isl_ctx *ctx, const char *str)
65 isl_map *map;
67 map = isl_map_read_from_str(ctx, str);
68 assert(map);
69 isl_map_free(map);
72 int test_parse_map_equal(isl_ctx *ctx, const char *str, const char *str2)
74 isl_map *map, *map2;
75 int equal;
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);
80 isl_map_free(map);
81 isl_map_free(map2);
83 if (equal < 0)
84 return -1;
85 if (!equal)
86 isl_die(ctx, isl_error_unknown, "maps not equal",
87 return -1);
89 return 0;
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);
97 assert(pwqp);
98 isl_pw_qpolynomial_free(pwqp);
101 static void test_parse_pwaff(isl_ctx *ctx, const char *str)
103 isl_pw_aff *pwaff;
105 pwaff = isl_pw_aff_read_from_str(ctx, str);
106 assert(pwaff);
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)
114 isl_multi_val *mv;
116 mv = isl_multi_val_read_from_str(ctx, str);
117 isl_multi_val_free(mv);
119 return mv ? 0 : -1;
122 /* Pairs of binary relation representations that should represent
123 * the same binary relations.
125 struct {
126 const char *map1;
127 const char *map2;
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 }" },
151 { "{ [i] -> [0] }",
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 }" },
159 { "{ [*] }",
160 "{ [a] }" },
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)
197 int i;
198 isl_map *map, *map2;
199 const char *str, *str2;
201 if (test_parse_multi_val(ctx, "{ A[B[2] -> C[5, 7]] }") < 0)
202 return -1;
203 if (test_parse_multi_val(ctx, "[n] -> { [2] }") < 0)
204 return -1;
205 if (test_parse_multi_val(ctx, "{ A[4, infty, NaN, -1/2, 2/3] }") < 0)
206 return -1;
208 str = "{ [i] -> [-i] }";
209 map = isl_map_read_from_str(ctx, str);
210 assert(map);
211 isl_map_free(map);
213 str = "{ A[i] -> L[([i/3])] }";
214 map = isl_map_read_from_str(ctx, str);
215 assert(map);
216 isl_map_free(map);
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)
226 return -1;
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));
237 isl_map_free(map);
238 isl_map_free(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));
245 isl_map_free(map);
246 isl_map_free(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)] }");
254 return 0;
257 static int test_read(isl_ctx *ctx)
259 char *filename;
260 FILE *input;
261 isl_basic_set *bset1, *bset2;
262 const char *str = "{[y]: Exists ( alpha : 2alpha = y)}";
263 int equal;
265 filename = get_filename(ctx, "set", "omega");
266 assert(filename);
267 input = fopen(filename, "r");
268 assert(input);
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);
277 free(filename);
279 fclose(input);
281 if (equal < 0)
282 return -1;
283 if (!equal)
284 isl_die(ctx, isl_error_unknown,
285 "read sets not equal", return -1);
287 return 0;
290 static int test_bounded(isl_ctx *ctx)
292 isl_set *set;
293 int bounded;
295 set = isl_set_read_from_str(ctx, "[n] -> {[i] : 0 <= i <= n }");
296 bounded = isl_set_is_bounded(set);
297 isl_set_free(set);
299 if (bounded < 0)
300 return -1;
301 if (!bounded)
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);
307 assert(!bounded);
308 isl_set_free(set);
310 if (bounded < 0)
311 return -1;
312 if (bounded)
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);
318 isl_set_free(set);
320 if (bounded < 0)
321 return -1;
322 if (bounded)
323 isl_die(ctx, isl_error_unknown,
324 "set considered bounded", return -1);
326 return 0;
329 /* Construct the basic set { [i] : 5 <= i <= N } */
330 static int test_construction(isl_ctx *ctx)
332 isl_int v;
333 isl_space *dim;
334 isl_local_space *ls;
335 isl_basic_set *bset;
336 isl_constraint *c;
338 isl_int_init(v);
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);
361 isl_int_clear(v);
363 return 0;
366 static int test_dim(isl_ctx *ctx)
368 const char *str;
369 isl_map *map1, *map2;
370 int equal;
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);
378 isl_map_free(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);
385 isl_map_free(map1);
386 isl_map_free(map2);
388 if (equal < 0)
389 return -1;
390 if (!equal)
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);
400 isl_map_free(map1);
401 isl_map_free(map2);
403 if (equal < 0)
404 return -1;
405 if (!equal)
406 isl_die(ctx, isl_error_unknown,
407 "unexpected result", return -1);
409 return 0;
412 struct {
413 __isl_give isl_val *(*op)(__isl_take isl_val *v);
414 const char *arg;
415 const char *res;
416 } val_un_tests[] = {
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)
470 int i;
471 isl_val *v, *res;
472 __isl_give isl_val *(*fn)(__isl_take isl_val *v);
473 int ok;
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;
479 v = fn(v);
480 if (isl_val_is_nan(res))
481 ok = isl_val_is_nan(v);
482 else
483 ok = isl_val_eq(v, res);
484 isl_val_free(v);
485 isl_val_free(res);
486 if (ok < 0)
487 return -1;
488 if (!ok)
489 isl_die(ctx, isl_error_unknown,
490 "unexpected result", return -1);
493 return 0;
496 struct {
497 __isl_give isl_val *(*fn)(__isl_take isl_val *v1,
498 __isl_take isl_val *v2);
499 } val_bin_op[] = {
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 },
509 struct {
510 const char *arg1;
511 unsigned char op;
512 const char *arg2;
513 const char *res;
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)
597 int i;
598 isl_val *v1, *v2, *res;
599 __isl_give isl_val *(*fn)(__isl_take isl_val *v1,
600 __isl_take isl_val *v2);
601 int ok;
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;
608 v1 = fn(v1, v2);
609 if (isl_val_is_nan(res))
610 ok = isl_val_is_nan(v1);
611 else
612 ok = isl_val_eq(v1, res);
613 isl_val_free(v1);
614 isl_val_free(res);
615 if (ok < 0)
616 return -1;
617 if (!ok)
618 isl_die(ctx, isl_error_unknown,
619 "unexpected result", return -1);
622 return 0;
625 /* Perform some basic tests on isl_val objects.
627 static int test_val(isl_ctx *ctx)
629 if (test_un_val(ctx) < 0)
630 return -1;
631 if (test_bin_val(ctx) < 0)
632 return -1;
633 return 0;
636 static int test_div(isl_ctx *ctx)
638 unsigned n;
639 const char *str;
640 int empty;
641 isl_int v;
642 isl_space *dim;
643 isl_set *set;
644 isl_local_space *ls;
645 struct isl_basic_set *bset;
646 struct isl_constraint *c;
648 isl_int_init(v);
650 /* test 1 */
651 dim = isl_space_set_alloc(ctx, 0, 3);
652 bset = isl_basic_set_universe(isl_space_copy(dim));
653 ls = isl_local_space_from_space(dim);
655 c = isl_constraint_alloc_equality(isl_local_space_copy(ls));
656 isl_int_set_si(v, -1);
657 isl_constraint_set_constant(c, v);
658 isl_int_set_si(v, 1);
659 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
660 isl_int_set_si(v, 3);
661 isl_constraint_set_coefficient(c, isl_dim_set, 1, v);
662 bset = isl_basic_set_add_constraint(bset, c);
664 c = isl_constraint_alloc_equality(isl_local_space_copy(ls));
665 isl_int_set_si(v, 1);
666 isl_constraint_set_constant(c, v);
667 isl_int_set_si(v, -1);
668 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
669 isl_int_set_si(v, 3);
670 isl_constraint_set_coefficient(c, isl_dim_set, 2, v);
671 bset = isl_basic_set_add_constraint(bset, c);
673 bset = isl_basic_set_project_out(bset, isl_dim_set, 1, 2);
675 assert(bset && bset->n_div == 1);
676 isl_local_space_free(ls);
677 isl_basic_set_free(bset);
679 /* test 2 */
680 dim = isl_space_set_alloc(ctx, 0, 3);
681 bset = isl_basic_set_universe(isl_space_copy(dim));
682 ls = isl_local_space_from_space(dim);
684 c = isl_constraint_alloc_equality(isl_local_space_copy(ls));
685 isl_int_set_si(v, 1);
686 isl_constraint_set_constant(c, v);
687 isl_int_set_si(v, -1);
688 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
689 isl_int_set_si(v, 3);
690 isl_constraint_set_coefficient(c, isl_dim_set, 1, v);
691 bset = isl_basic_set_add_constraint(bset, c);
693 c = isl_constraint_alloc_equality(isl_local_space_copy(ls));
694 isl_int_set_si(v, -1);
695 isl_constraint_set_constant(c, v);
696 isl_int_set_si(v, 1);
697 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
698 isl_int_set_si(v, 3);
699 isl_constraint_set_coefficient(c, isl_dim_set, 2, v);
700 bset = isl_basic_set_add_constraint(bset, c);
702 bset = isl_basic_set_project_out(bset, isl_dim_set, 1, 2);
704 assert(bset && bset->n_div == 1);
705 isl_local_space_free(ls);
706 isl_basic_set_free(bset);
708 /* test 3 */
709 dim = isl_space_set_alloc(ctx, 0, 3);
710 bset = isl_basic_set_universe(isl_space_copy(dim));
711 ls = isl_local_space_from_space(dim);
713 c = isl_constraint_alloc_equality(isl_local_space_copy(ls));
714 isl_int_set_si(v, 1);
715 isl_constraint_set_constant(c, v);
716 isl_int_set_si(v, -1);
717 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
718 isl_int_set_si(v, 3);
719 isl_constraint_set_coefficient(c, isl_dim_set, 1, v);
720 bset = isl_basic_set_add_constraint(bset, c);
722 c = isl_constraint_alloc_equality(isl_local_space_copy(ls));
723 isl_int_set_si(v, -3);
724 isl_constraint_set_constant(c, v);
725 isl_int_set_si(v, 1);
726 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
727 isl_int_set_si(v, 4);
728 isl_constraint_set_coefficient(c, isl_dim_set, 2, v);
729 bset = isl_basic_set_add_constraint(bset, c);
731 bset = isl_basic_set_project_out(bset, isl_dim_set, 1, 2);
733 assert(bset && bset->n_div == 1);
734 isl_local_space_free(ls);
735 isl_basic_set_free(bset);
737 /* test 4 */
738 dim = isl_space_set_alloc(ctx, 0, 3);
739 bset = isl_basic_set_universe(isl_space_copy(dim));
740 ls = isl_local_space_from_space(dim);
742 c = isl_constraint_alloc_equality(isl_local_space_copy(ls));
743 isl_int_set_si(v, 2);
744 isl_constraint_set_constant(c, v);
745 isl_int_set_si(v, -1);
746 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
747 isl_int_set_si(v, 3);
748 isl_constraint_set_coefficient(c, isl_dim_set, 1, v);
749 bset = isl_basic_set_add_constraint(bset, c);
751 c = isl_constraint_alloc_equality(isl_local_space_copy(ls));
752 isl_int_set_si(v, -1);
753 isl_constraint_set_constant(c, v);
754 isl_int_set_si(v, 1);
755 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
756 isl_int_set_si(v, 6);
757 isl_constraint_set_coefficient(c, isl_dim_set, 2, v);
758 bset = isl_basic_set_add_constraint(bset, c);
760 bset = isl_basic_set_project_out(bset, isl_dim_set, 1, 2);
762 assert(isl_basic_set_is_empty(bset));
763 isl_local_space_free(ls);
764 isl_basic_set_free(bset);
766 /* test 5 */
767 dim = isl_space_set_alloc(ctx, 0, 3);
768 bset = isl_basic_set_universe(isl_space_copy(dim));
769 ls = isl_local_space_from_space(dim);
771 c = isl_constraint_alloc_equality(isl_local_space_copy(ls));
772 isl_int_set_si(v, -1);
773 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
774 isl_int_set_si(v, 3);
775 isl_constraint_set_coefficient(c, isl_dim_set, 2, v);
776 bset = isl_basic_set_add_constraint(bset, c);
778 c = isl_constraint_alloc_equality(isl_local_space_copy(ls));
779 isl_int_set_si(v, 1);
780 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
781 isl_int_set_si(v, -3);
782 isl_constraint_set_coefficient(c, isl_dim_set, 1, v);
783 bset = isl_basic_set_add_constraint(bset, c);
785 bset = isl_basic_set_project_out(bset, isl_dim_set, 2, 1);
787 assert(bset && bset->n_div == 0);
788 isl_basic_set_free(bset);
789 isl_local_space_free(ls);
791 /* test 6 */
792 dim = isl_space_set_alloc(ctx, 0, 3);
793 bset = isl_basic_set_universe(isl_space_copy(dim));
794 ls = isl_local_space_from_space(dim);
796 c = isl_constraint_alloc_equality(isl_local_space_copy(ls));
797 isl_int_set_si(v, -1);
798 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
799 isl_int_set_si(v, 6);
800 isl_constraint_set_coefficient(c, isl_dim_set, 2, v);
801 bset = isl_basic_set_add_constraint(bset, c);
803 c = isl_constraint_alloc_equality(isl_local_space_copy(ls));
804 isl_int_set_si(v, 1);
805 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
806 isl_int_set_si(v, -3);
807 isl_constraint_set_coefficient(c, isl_dim_set, 1, v);
808 bset = isl_basic_set_add_constraint(bset, c);
810 bset = isl_basic_set_project_out(bset, isl_dim_set, 2, 1);
812 assert(bset && bset->n_div == 1);
813 isl_basic_set_free(bset);
814 isl_local_space_free(ls);
816 /* test 7 */
817 /* This test is a bit tricky. We set up an equality
818 * a + 3b + 3c = 6 e0
819 * Normalization of divs creates _two_ divs
820 * a = 3 e0
821 * c - b - e0 = 2 e1
822 * Afterwards e0 is removed again because it has coefficient -1
823 * and we end up with the original equality and div again.
824 * Perhaps we can avoid the introduction of this temporary div.
826 dim = isl_space_set_alloc(ctx, 0, 4);
827 bset = isl_basic_set_universe(isl_space_copy(dim));
828 ls = isl_local_space_from_space(dim);
830 c = isl_constraint_alloc_equality(isl_local_space_copy(ls));
831 isl_int_set_si(v, -1);
832 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
833 isl_int_set_si(v, -3);
834 isl_constraint_set_coefficient(c, isl_dim_set, 1, v);
835 isl_int_set_si(v, -3);
836 isl_constraint_set_coefficient(c, isl_dim_set, 2, v);
837 isl_int_set_si(v, 6);
838 isl_constraint_set_coefficient(c, isl_dim_set, 3, v);
839 bset = isl_basic_set_add_constraint(bset, c);
841 bset = isl_basic_set_project_out(bset, isl_dim_set, 3, 1);
843 /* Test disabled for now */
845 assert(bset && bset->n_div == 1);
847 isl_local_space_free(ls);
848 isl_basic_set_free(bset);
850 /* test 8 */
851 dim = isl_space_set_alloc(ctx, 0, 5);
852 bset = isl_basic_set_universe(isl_space_copy(dim));
853 ls = isl_local_space_from_space(dim);
855 c = isl_constraint_alloc_equality(isl_local_space_copy(ls));
856 isl_int_set_si(v, -1);
857 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
858 isl_int_set_si(v, -3);
859 isl_constraint_set_coefficient(c, isl_dim_set, 1, v);
860 isl_int_set_si(v, -3);
861 isl_constraint_set_coefficient(c, isl_dim_set, 3, v);
862 isl_int_set_si(v, 6);
863 isl_constraint_set_coefficient(c, isl_dim_set, 4, v);
864 bset = isl_basic_set_add_constraint(bset, c);
866 c = isl_constraint_alloc_equality(isl_local_space_copy(ls));
867 isl_int_set_si(v, -1);
868 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
869 isl_int_set_si(v, 1);
870 isl_constraint_set_coefficient(c, isl_dim_set, 2, v);
871 isl_int_set_si(v, 1);
872 isl_constraint_set_constant(c, v);
873 bset = isl_basic_set_add_constraint(bset, c);
875 bset = isl_basic_set_project_out(bset, isl_dim_set, 4, 1);
877 /* Test disabled for now */
879 assert(bset && bset->n_div == 1);
881 isl_local_space_free(ls);
882 isl_basic_set_free(bset);
884 /* test 9 */
885 dim = isl_space_set_alloc(ctx, 0, 4);
886 bset = isl_basic_set_universe(isl_space_copy(dim));
887 ls = isl_local_space_from_space(dim);
889 c = isl_constraint_alloc_equality(isl_local_space_copy(ls));
890 isl_int_set_si(v, 1);
891 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
892 isl_int_set_si(v, -1);
893 isl_constraint_set_coefficient(c, isl_dim_set, 1, v);
894 isl_int_set_si(v, -2);
895 isl_constraint_set_coefficient(c, isl_dim_set, 2, v);
896 bset = isl_basic_set_add_constraint(bset, c);
898 c = isl_constraint_alloc_equality(isl_local_space_copy(ls));
899 isl_int_set_si(v, -1);
900 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
901 isl_int_set_si(v, 3);
902 isl_constraint_set_coefficient(c, isl_dim_set, 3, v);
903 isl_int_set_si(v, 2);
904 isl_constraint_set_constant(c, v);
905 bset = isl_basic_set_add_constraint(bset, c);
907 bset = isl_basic_set_project_out(bset, isl_dim_set, 2, 2);
909 bset = isl_basic_set_fix_si(bset, isl_dim_set, 0, 2);
911 assert(!isl_basic_set_is_empty(bset));
913 isl_local_space_free(ls);
914 isl_basic_set_free(bset);
916 /* test 10 */
917 dim = isl_space_set_alloc(ctx, 0, 3);
918 bset = isl_basic_set_universe(isl_space_copy(dim));
919 ls = isl_local_space_from_space(dim);
921 c = isl_constraint_alloc_equality(isl_local_space_copy(ls));
922 isl_int_set_si(v, 1);
923 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
924 isl_int_set_si(v, -2);
925 isl_constraint_set_coefficient(c, isl_dim_set, 2, v);
926 bset = isl_basic_set_add_constraint(bset, c);
928 bset = isl_basic_set_project_out(bset, isl_dim_set, 2, 1);
930 bset = isl_basic_set_fix_si(bset, isl_dim_set, 0, 2);
932 isl_local_space_free(ls);
933 isl_basic_set_free(bset);
935 isl_int_clear(v);
937 str = "{ [i] : exists (e0, e1: 3e1 >= 1 + 2e0 and "
938 "8e1 <= -1 + 5i - 5e0 and 2e1 >= 1 + 2i - 5e0) }";
939 set = isl_set_read_from_str(ctx, str);
940 set = isl_set_compute_divs(set);
941 isl_set_free(set);
942 if (!set)
943 return -1;
945 str = "{ [i,j] : 2*[i/2] + 3 * [j/4] <= 10 and 2 i = j }";
946 bset = isl_basic_set_read_from_str(ctx, str);
947 n = isl_basic_set_dim(bset, isl_dim_div);
948 isl_basic_set_free(bset);
949 if (!bset)
950 return -1;
951 if (n != 0)
952 isl_die(ctx, isl_error_unknown,
953 "expecting no existentials", return -1);
955 str = "{ [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }";
956 set = isl_set_read_from_str(ctx, str);
957 set = isl_set_remove_divs_involving_dims(set, isl_dim_set, 0, 2);
958 set = isl_set_fix_si(set, isl_dim_set, 2, -3);
959 empty = isl_set_is_empty(set);
960 isl_set_free(set);
961 if (empty < 0)
962 return -1;
963 if (!empty)
964 isl_die(ctx, isl_error_unknown,
965 "result not as accurate as expected", return -1);
967 return 0;
970 void test_application_case(struct isl_ctx *ctx, const char *name)
972 char *filename;
973 FILE *input;
974 struct isl_basic_set *bset1, *bset2;
975 struct isl_basic_map *bmap;
977 filename = get_filename(ctx, name, "omega");
978 assert(filename);
979 input = fopen(filename, "r");
980 assert(input);
982 bset1 = isl_basic_set_read_from_file(ctx, input);
983 bmap = isl_basic_map_read_from_file(ctx, input);
985 bset1 = isl_basic_set_apply(bset1, bmap);
987 bset2 = isl_basic_set_read_from_file(ctx, input);
989 assert(isl_basic_set_is_equal(bset1, bset2) == 1);
991 isl_basic_set_free(bset1);
992 isl_basic_set_free(bset2);
993 free(filename);
995 fclose(input);
998 static int test_application(isl_ctx *ctx)
1000 test_application_case(ctx, "application");
1001 test_application_case(ctx, "application2");
1003 return 0;
1006 void test_affine_hull_case(struct isl_ctx *ctx, const char *name)
1008 char *filename;
1009 FILE *input;
1010 struct isl_basic_set *bset1, *bset2;
1012 filename = get_filename(ctx, name, "polylib");
1013 assert(filename);
1014 input = fopen(filename, "r");
1015 assert(input);
1017 bset1 = isl_basic_set_read_from_file(ctx, input);
1018 bset2 = isl_basic_set_read_from_file(ctx, input);
1020 bset1 = isl_basic_set_affine_hull(bset1);
1022 assert(isl_basic_set_is_equal(bset1, bset2) == 1);
1024 isl_basic_set_free(bset1);
1025 isl_basic_set_free(bset2);
1026 free(filename);
1028 fclose(input);
1031 int test_affine_hull(struct isl_ctx *ctx)
1033 const char *str;
1034 isl_set *set;
1035 isl_basic_set *bset, *bset2;
1036 int n;
1037 int subset;
1039 test_affine_hull_case(ctx, "affine2");
1040 test_affine_hull_case(ctx, "affine");
1041 test_affine_hull_case(ctx, "affine3");
1043 str = "[m] -> { [i0] : exists (e0, e1: e1 <= 1 + i0 and "
1044 "m >= 3 and 4i0 <= 2 + m and e1 >= i0 and "
1045 "e1 >= 0 and e1 <= 2 and e1 >= 1 + 2e0 and "
1046 "2e1 <= 1 + m + 4e0 and 2e1 >= 2 - m + 4i0 - 4e0) }";
1047 set = isl_set_read_from_str(ctx, str);
1048 bset = isl_set_affine_hull(set);
1049 n = isl_basic_set_dim(bset, isl_dim_div);
1050 isl_basic_set_free(bset);
1051 if (n != 0)
1052 isl_die(ctx, isl_error_unknown, "not expecting any divs",
1053 return -1);
1055 /* Check that isl_map_affine_hull is not confused by
1056 * the reordering of divs in isl_map_align_divs.
1058 str = "{ [a, b, c, 0] : exists (e0 = [(b)/32], e1 = [(c)/32]: "
1059 "32e0 = b and 32e1 = c); "
1060 "[a, 0, c, 0] : exists (e0 = [(c)/32]: 32e0 = c) }";
1061 set = isl_set_read_from_str(ctx, str);
1062 bset = isl_set_affine_hull(set);
1063 isl_basic_set_free(bset);
1064 if (!bset)
1065 return -1;
1067 str = "{ [a] : exists e0, e1, e2: 32e1 = 31 + 31a + 31e0 and "
1068 "32e2 = 31 + 31e0 }";
1069 set = isl_set_read_from_str(ctx, str);
1070 bset = isl_set_affine_hull(set);
1071 str = "{ [a] : exists e : a = 32 e }";
1072 bset2 = isl_basic_set_read_from_str(ctx, str);
1073 subset = isl_basic_set_is_subset(bset, bset2);
1074 isl_basic_set_free(bset);
1075 isl_basic_set_free(bset2);
1076 if (subset < 0)
1077 return -1;
1078 if (!subset)
1079 isl_die(ctx, isl_error_unknown, "not as accurate as expected",
1080 return -1);
1082 return 0;
1085 /* Pairs of maps and the corresponding expected results of
1086 * isl_map_plain_unshifted_simple_hull.
1088 struct {
1089 const char *map;
1090 const char *hull;
1091 } plain_unshifted_simple_hull_tests[] = {
1092 { "{ [i] -> [j] : i >= 1 and j >= 1 or i >= 2 and j <= 10 }",
1093 "{ [i] -> [j] : i >= 1 }" },
1094 { "{ [n] -> [i,j,k] : (i mod 3 = 2 and j mod 4 = 2) or "
1095 "(j mod 4 = 2 and k mod 6 = n) }",
1096 "{ [n] -> [i,j,k] : j mod 4 = 2 }" },
1099 /* Basic tests for isl_map_plain_unshifted_simple_hull.
1101 static int test_plain_unshifted_simple_hull(isl_ctx *ctx)
1103 int i;
1104 isl_map *map;
1105 isl_basic_map *hull, *expected;
1106 isl_bool equal;
1108 for (i = 0; i < ARRAY_SIZE(plain_unshifted_simple_hull_tests); ++i) {
1109 const char *str;
1110 str = plain_unshifted_simple_hull_tests[i].map;
1111 map = isl_map_read_from_str(ctx, str);
1112 str = plain_unshifted_simple_hull_tests[i].hull;
1113 expected = isl_basic_map_read_from_str(ctx, str);
1114 hull = isl_map_plain_unshifted_simple_hull(map);
1115 equal = isl_basic_map_is_equal(hull, expected);
1116 isl_basic_map_free(hull);
1117 isl_basic_map_free(expected);
1118 if (equal < 0)
1119 return -1;
1120 if (!equal)
1121 isl_die(ctx, isl_error_unknown, "unexpected hull",
1122 return -1);
1125 return 0;
1128 /* Pairs of sets and the corresponding expected results of
1129 * isl_set_unshifted_simple_hull.
1131 struct {
1132 const char *set;
1133 const char *hull;
1134 } unshifted_simple_hull_tests[] = {
1135 { "{ [0,x,y] : x <= -1; [1,x,y] : x <= y <= -x; [2,x,y] : x <= 1 }",
1136 "{ [t,x,y] : 0 <= t <= 2 and x <= 1 }" },
1139 /* Basic tests for isl_set_unshifted_simple_hull.
1141 static int test_unshifted_simple_hull(isl_ctx *ctx)
1143 int i;
1144 isl_set *set;
1145 isl_basic_set *hull, *expected;
1146 isl_bool equal;
1148 for (i = 0; i < ARRAY_SIZE(unshifted_simple_hull_tests); ++i) {
1149 const char *str;
1150 str = unshifted_simple_hull_tests[i].set;
1151 set = isl_set_read_from_str(ctx, str);
1152 str = unshifted_simple_hull_tests[i].hull;
1153 expected = isl_basic_set_read_from_str(ctx, str);
1154 hull = isl_set_unshifted_simple_hull(set);
1155 equal = isl_basic_set_is_equal(hull, expected);
1156 isl_basic_set_free(hull);
1157 isl_basic_set_free(expected);
1158 if (equal < 0)
1159 return -1;
1160 if (!equal)
1161 isl_die(ctx, isl_error_unknown, "unexpected hull",
1162 return -1);
1165 return 0;
1168 static int test_simple_hull(struct isl_ctx *ctx)
1170 const char *str;
1171 isl_set *set;
1172 isl_basic_set *bset;
1173 isl_bool is_empty;
1175 str = "{ [x, y] : 3y <= 2x and y >= -2 + 2x and 2y >= 2 - x;"
1176 "[y, x] : 3y <= 2x and y >= -2 + 2x and 2y >= 2 - x }";
1177 set = isl_set_read_from_str(ctx, str);
1178 bset = isl_set_simple_hull(set);
1179 is_empty = isl_basic_set_is_empty(bset);
1180 isl_basic_set_free(bset);
1182 if (is_empty == isl_bool_error)
1183 return -1;
1185 if (is_empty == isl_bool_false)
1186 isl_die(ctx, isl_error_unknown, "Empty set should be detected",
1187 return -1);
1189 if (test_plain_unshifted_simple_hull(ctx) < 0)
1190 return -1;
1191 if (test_unshifted_simple_hull(ctx) < 0)
1192 return -1;
1194 return 0;
1197 void test_convex_hull_case(struct isl_ctx *ctx, const char *name)
1199 char *filename;
1200 FILE *input;
1201 struct isl_basic_set *bset1, *bset2;
1202 struct isl_set *set;
1204 filename = get_filename(ctx, name, "polylib");
1205 assert(filename);
1206 input = fopen(filename, "r");
1207 assert(input);
1209 bset1 = isl_basic_set_read_from_file(ctx, input);
1210 bset2 = isl_basic_set_read_from_file(ctx, input);
1212 set = isl_basic_set_union(bset1, bset2);
1213 bset1 = isl_set_convex_hull(set);
1215 bset2 = isl_basic_set_read_from_file(ctx, input);
1217 assert(isl_basic_set_is_equal(bset1, bset2) == 1);
1219 isl_basic_set_free(bset1);
1220 isl_basic_set_free(bset2);
1221 free(filename);
1223 fclose(input);
1226 struct {
1227 const char *set;
1228 const char *hull;
1229 } convex_hull_tests[] = {
1230 { "{ [i0, i1, i2] : (i2 = 1 and i0 = 0 and i1 >= 0) or "
1231 "(i0 = 1 and i1 = 0 and i2 = 1) or "
1232 "(i0 = 0 and i1 = 0 and i2 = 0) }",
1233 "{ [i0, i1, i2] : i0 >= 0 and i2 >= i0 and i2 <= 1 and i1 >= 0 }" },
1234 { "[n] -> { [i0, i1, i0] : i0 <= -4 + n; "
1235 "[i0, i0, i2] : n = 6 and i0 >= 0 and i2 <= 7 - i0 and "
1236 "i2 <= 5 and i2 >= 4; "
1237 "[3, i1, 3] : n = 5 and i1 <= 2 and i1 >= 0 }",
1238 "[n] -> { [i0, i1, i2] : i2 <= -1 + n and 2i2 <= -6 + 3n - i0 and "
1239 "i2 <= 5 + i0 and i2 >= i0 }" },
1240 { "{ [x, y] : 3y <= 2x and y >= -2 + 2x and 2y >= 2 - x }",
1241 "{ [x, y] : 1 = 0 }" },
1244 static int test_convex_hull_algo(isl_ctx *ctx, int convex)
1246 int i;
1247 int orig_convex = ctx->opt->convex;
1248 ctx->opt->convex = convex;
1250 test_convex_hull_case(ctx, "convex0");
1251 test_convex_hull_case(ctx, "convex1");
1252 test_convex_hull_case(ctx, "convex2");
1253 test_convex_hull_case(ctx, "convex3");
1254 test_convex_hull_case(ctx, "convex4");
1255 test_convex_hull_case(ctx, "convex5");
1256 test_convex_hull_case(ctx, "convex6");
1257 test_convex_hull_case(ctx, "convex7");
1258 test_convex_hull_case(ctx, "convex8");
1259 test_convex_hull_case(ctx, "convex9");
1260 test_convex_hull_case(ctx, "convex10");
1261 test_convex_hull_case(ctx, "convex11");
1262 test_convex_hull_case(ctx, "convex12");
1263 test_convex_hull_case(ctx, "convex13");
1264 test_convex_hull_case(ctx, "convex14");
1265 test_convex_hull_case(ctx, "convex15");
1267 for (i = 0; i < ARRAY_SIZE(convex_hull_tests); ++i) {
1268 isl_set *set1, *set2;
1269 int equal;
1271 set1 = isl_set_read_from_str(ctx, convex_hull_tests[i].set);
1272 set2 = isl_set_read_from_str(ctx, convex_hull_tests[i].hull);
1273 set1 = isl_set_from_basic_set(isl_set_convex_hull(set1));
1274 equal = isl_set_is_equal(set1, set2);
1275 isl_set_free(set1);
1276 isl_set_free(set2);
1278 if (equal < 0)
1279 return -1;
1280 if (!equal)
1281 isl_die(ctx, isl_error_unknown,
1282 "unexpected convex hull", return -1);
1285 ctx->opt->convex = orig_convex;
1287 return 0;
1290 static int test_convex_hull(isl_ctx *ctx)
1292 if (test_convex_hull_algo(ctx, ISL_CONVEX_HULL_FM) < 0)
1293 return -1;
1294 if (test_convex_hull_algo(ctx, ISL_CONVEX_HULL_WRAP) < 0)
1295 return -1;
1296 return 0;
1299 void test_gist_case(struct isl_ctx *ctx, const char *name)
1301 char *filename;
1302 FILE *input;
1303 struct isl_basic_set *bset1, *bset2;
1305 filename = get_filename(ctx, name, "polylib");
1306 assert(filename);
1307 input = fopen(filename, "r");
1308 assert(input);
1310 bset1 = isl_basic_set_read_from_file(ctx, input);
1311 bset2 = isl_basic_set_read_from_file(ctx, input);
1313 bset1 = isl_basic_set_gist(bset1, bset2);
1315 bset2 = isl_basic_set_read_from_file(ctx, input);
1317 assert(isl_basic_set_is_equal(bset1, bset2) == 1);
1319 isl_basic_set_free(bset1);
1320 isl_basic_set_free(bset2);
1321 free(filename);
1323 fclose(input);
1326 /* Inputs to isl_map_plain_gist_basic_map, along with the expected output.
1328 struct {
1329 const char *map;
1330 const char *context;
1331 const char *gist;
1332 } plain_gist_tests[] = {
1333 { "{ [i] -> [j] : i >= 1 and j >= 1 or i >= 2 and j <= 10 }",
1334 "{ [i] -> [j] : i >= 1 }",
1335 "{ [i] -> [j] : j >= 1 or i >= 2 and j <= 10 }" },
1336 { "{ [n] -> [i,j,k] : (i mod 3 = 2 and j mod 4 = 2) or "
1337 "(j mod 4 = 2 and k mod 6 = n) }",
1338 "{ [n] -> [i,j,k] : j mod 4 = 2 }",
1339 "{ [n] -> [i,j,k] : (i mod 3 = 2) or (k mod 6 = n) }" },
1340 { "{ [i] -> [j] : i > j and (exists a,b : i <= 2a + 5b <= 2) }",
1341 "{ [i] -> [j] : i > j }",
1342 "{ [i] -> [j] : exists a,b : i <= 2a + 5b <= 2 }" },
1345 /* Basic tests for isl_map_plain_gist_basic_map.
1347 static int test_plain_gist(isl_ctx *ctx)
1349 int i;
1351 for (i = 0; i < ARRAY_SIZE(plain_gist_tests); ++i) {
1352 const char *str;
1353 int equal;
1354 isl_map *map, *gist;
1355 isl_basic_map *context;
1357 map = isl_map_read_from_str(ctx, plain_gist_tests[i].map);
1358 str = plain_gist_tests[i].context;
1359 context = isl_basic_map_read_from_str(ctx, str);
1360 map = isl_map_plain_gist_basic_map(map, context);
1361 gist = isl_map_read_from_str(ctx, plain_gist_tests[i].gist);
1362 equal = isl_map_is_equal(map, gist);
1363 isl_map_free(map);
1364 isl_map_free(gist);
1365 if (equal < 0)
1366 return -1;
1367 if (!equal)
1368 isl_die(ctx, isl_error_unknown,
1369 "incorrect gist result", return -1);
1372 return 0;
1375 struct {
1376 const char *set;
1377 const char *context;
1378 const char *gist;
1379 } gist_tests[] = {
1380 { "{ [a, b, c] : a <= 15 and a >= 1 }",
1381 "{ [a, b, c] : exists (e0 = floor((-1 + a)/16): a >= 1 and "
1382 "c <= 30 and 32e0 >= -62 + 2a + 2b - c and b >= 0) }",
1383 "{ [a, b, c] : a <= 15 }" },
1384 { "{ : }", "{ : 1 = 0 }", "{ : }" },
1385 { "{ : 1 = 0 }", "{ : 1 = 0 }", "{ : }" },
1386 { "[M] -> { [x] : exists (e0 = floor((-2 + x)/3): 3e0 = -2 + x) }",
1387 "[M] -> { [3M] }" , "[M] -> { [x] : 1 = 0 }" },
1388 { "{ [m, n, a, b] : a <= 2147 + n }",
1389 "{ [m, n, a, b] : (m >= 1 and n >= 1 and a <= 2148 - m and "
1390 "b <= 2148 - n and b >= 0 and b >= 2149 - n - a) or "
1391 "(n >= 1 and a >= 0 and b <= 2148 - n - a and "
1392 "b >= 0) }",
1393 "{ [m, n, ku, kl] }" },
1394 { "{ [a, a, b] : a >= 10 }",
1395 "{ [a, b, c] : c >= a and c <= b and c >= 2 }",
1396 "{ [a, a, b] : a >= 10 }" },
1397 { "{ [i, j] : i >= 0 and i + j >= 0 }", "{ [i, j] : i <= 0 }",
1398 "{ [0, j] : j >= 0 }" },
1399 /* Check that no constraints on i6 are introduced in the gist */
1400 { "[t1] -> { [i4, i6] : exists (e0 = floor((1530 - 4t1 - 5i4)/20): "
1401 "20e0 <= 1530 - 4t1 - 5i4 and 20e0 >= 1511 - 4t1 - 5i4 and "
1402 "5e0 <= 381 - t1 and i4 <= 1) }",
1403 "[t1] -> { [i4, i6] : exists (e0 = floor((-t1 + i6)/5): "
1404 "5e0 = -t1 + i6 and i6 <= 6 and i6 >= 3) }",
1405 "[t1] -> { [i4, i6] : exists (e0 = floor((1530 - 4t1 - 5i4)/20): "
1406 "i4 <= 1 and 5e0 <= 381 - t1 and 20e0 <= 1530 - 4t1 - 5i4 and "
1407 "20e0 >= 1511 - 4t1 - 5i4) }" },
1408 /* Check that no constraints on i6 are introduced in the gist */
1409 { "[t1, t2] -> { [i4, i5, i6] : exists (e0 = floor((1 + i4)/2), "
1410 "e1 = floor((1530 - 4t1 - 5i4)/20), "
1411 "e2 = floor((-4t1 - 5i4 + 10*floor((1 + i4)/2))/20), "
1412 "e3 = floor((-1 + i4)/2): t2 = 0 and 2e3 = -1 + i4 and "
1413 "20e2 >= -19 - 4t1 - 5i4 + 10e0 and 5e2 <= 1 - t1 and "
1414 "2e0 <= 1 + i4 and 2e0 >= i4 and "
1415 "20e1 <= 1530 - 4t1 - 5i4 and "
1416 "20e1 >= 1511 - 4t1 - 5i4 and i4 <= 1 and "
1417 "5e1 <= 381 - t1 and 20e2 <= -4t1 - 5i4 + 10e0) }",
1418 "[t1, t2] -> { [i4, i5, i6] : exists (e0 = floor((-17 + i4)/2), "
1419 "e1 = floor((-t1 + i6)/5): 5e1 = -t1 + i6 and "
1420 "2e0 <= -17 + i4 and 2e0 >= -18 + i4 and "
1421 "10e0 <= -91 + 5i4 + 4i6 and "
1422 "10e0 >= -105 + 5i4 + 4i6) }",
1423 "[t1, t2] -> { [i4, i5, i6] : exists (e0 = floor((381 - t1)/5), "
1424 "e1 = floor((-1 + i4)/2): t2 = 0 and 2e1 = -1 + i4 and "
1425 "i4 <= 1 and 5e0 <= 381 - t1 and 20e0 >= 1511 - 4t1 - 5i4) }" },
1426 { "{ [0, 0, q, p] : -5 <= q <= 5 and p >= 0 }",
1427 "{ [a, b, q, p] : b >= 1 + a }",
1428 "{ [a, b, q, p] : false }" },
1429 { "[n] -> { [x] : x = n && x mod 32 = 0 }",
1430 "[n] -> { [x] : x mod 32 = 0 }",
1431 "[n] -> { [x = n] }" },
1432 { "{ [x] : x mod 6 = 0 }", "{ [x] : x mod 3 = 0 }",
1433 "{ [x] : x mod 2 = 0 }" },
1434 { "{ [x] : x mod 3200 = 0 }", "{ [x] : x mod 10000 = 0 }",
1435 "{ [x] : x mod 128 = 0 }" },
1436 { "{ [x] : x mod 3200 = 0 }", "{ [x] : x mod 10 = 0 }",
1437 "{ [x] : x mod 3200 = 0 }" },
1438 { "{ [a, b, c] : a mod 2 = 0 and a = c }",
1439 "{ [a, b, c] : b mod 2 = 0 and b = c }",
1440 "{ [a, b, c = a] }" },
1441 { "{ [a, b, c] : a mod 6 = 0 and a = c }",
1442 "{ [a, b, c] : b mod 2 = 0 and b = c }",
1443 "{ [a, b, c = a] : a mod 3 = 0 }" },
1444 { "{ [x] : 0 <= x <= 4 or 6 <= x <= 9 }",
1445 "{ [x] : 1 <= x <= 3 or 7 <= x <= 8 }",
1446 "{ [x] }" },
1447 { "{ [x,y] : x < 0 and 0 <= y <= 4 or x >= -2 and -x <= y <= 10 + x }",
1448 "{ [x,y] : 1 <= y <= 3 }",
1449 "{ [x,y] }" },
1452 /* Check that isl_set_gist behaves as expected.
1454 * For the test cases in gist_tests, besides checking that the result
1455 * is as expected, also check that applying the gist operation does
1456 * not modify the input set (an earlier version of isl would do that) and
1457 * that the test case is consistent, i.e., that the gist has the same
1458 * intersection with the context as the input set.
1460 static int test_gist(struct isl_ctx *ctx)
1462 int i;
1463 const char *str;
1464 isl_basic_set *bset1, *bset2;
1465 isl_map *map1, *map2;
1466 int equal;
1468 for (i = 0; i < ARRAY_SIZE(gist_tests); ++i) {
1469 int equal_input, equal_intersection;
1470 isl_set *set1, *set2, *copy, *context;
1472 set1 = isl_set_read_from_str(ctx, gist_tests[i].set);
1473 context = isl_set_read_from_str(ctx, gist_tests[i].context);
1474 copy = isl_set_copy(set1);
1475 set1 = isl_set_gist(set1, isl_set_copy(context));
1476 set2 = isl_set_read_from_str(ctx, gist_tests[i].gist);
1477 equal = isl_set_is_equal(set1, set2);
1478 isl_set_free(set1);
1479 set1 = isl_set_read_from_str(ctx, gist_tests[i].set);
1480 equal_input = isl_set_is_equal(set1, copy);
1481 isl_set_free(copy);
1482 set1 = isl_set_intersect(set1, isl_set_copy(context));
1483 set2 = isl_set_intersect(set2, context);
1484 equal_intersection = isl_set_is_equal(set1, set2);
1485 isl_set_free(set2);
1486 isl_set_free(set1);
1487 if (equal < 0 || equal_input < 0 || equal_intersection < 0)
1488 return -1;
1489 if (!equal)
1490 isl_die(ctx, isl_error_unknown,
1491 "incorrect gist result", return -1);
1492 if (!equal_input)
1493 isl_die(ctx, isl_error_unknown,
1494 "gist modified input", return -1);
1495 if (!equal_input)
1496 isl_die(ctx, isl_error_unknown,
1497 "inconsistent gist test case", return -1);
1500 test_gist_case(ctx, "gist1");
1502 str = "[p0, p2, p3, p5, p6, p10] -> { [] : "
1503 "exists (e0 = [(15 + p0 + 15p6 + 15p10)/16], e1 = [(p5)/8], "
1504 "e2 = [(p6)/128], e3 = [(8p2 - p5)/128], "
1505 "e4 = [(128p3 - p6)/4096]: 8e1 = p5 and 128e2 = p6 and "
1506 "128e3 = 8p2 - p5 and 4096e4 = 128p3 - p6 and p2 >= 0 and "
1507 "16e0 >= 16 + 16p6 + 15p10 and p2 <= 15 and p3 >= 0 and "
1508 "p3 <= 31 and p6 >= 128p3 and p5 >= 8p2 and p10 >= 0 and "
1509 "16e0 <= 15 + p0 + 15p6 + 15p10 and 16e0 >= p0 + 15p6 + 15p10 and "
1510 "p10 <= 15 and p10 <= -1 + p0 - p6) }";
1511 bset1 = isl_basic_set_read_from_str(ctx, str);
1512 str = "[p0, p2, p3, p5, p6, p10] -> { [] : exists (e0 = [(p5)/8], "
1513 "e1 = [(p6)/128], e2 = [(8p2 - p5)/128], "
1514 "e3 = [(128p3 - p6)/4096]: 8e0 = p5 and 128e1 = p6 and "
1515 "128e2 = 8p2 - p5 and 4096e3 = 128p3 - p6 and p5 >= -7 and "
1516 "p2 >= 0 and 8p2 <= -1 + p0 and p2 <= 15 and p3 >= 0 and "
1517 "p3 <= 31 and 128p3 <= -1 + p0 and p6 >= -127 and "
1518 "p5 <= -1 + p0 and p6 <= -1 + p0 and p6 >= 128p3 and "
1519 "p0 >= 1 and p5 >= 8p2 and p10 >= 0 and p10 <= 15 ) }";
1520 bset2 = isl_basic_set_read_from_str(ctx, str);
1521 bset1 = isl_basic_set_gist(bset1, bset2);
1522 assert(bset1 && bset1->n_div == 0);
1523 isl_basic_set_free(bset1);
1525 /* Check that the integer divisions of the second disjunct
1526 * do not spread to the first disjunct.
1528 str = "[t1] -> { S_0[] -> A[o0] : (exists (e0 = [(-t1 + o0)/16]: "
1529 "16e0 = -t1 + o0 and o0 >= 0 and o0 <= 15 and t1 >= 0)) or "
1530 "(exists (e0 = [(-1 + t1)/16], "
1531 "e1 = [(-16 + t1 - 16e0)/4294967296]: "
1532 "4294967296e1 = -16 + t1 - o0 - 16e0 and "
1533 "16e0 <= -1 + t1 and 16e0 >= -16 + t1 and o0 >= 0 and "
1534 "o0 <= 4294967295 and t1 <= -1)) }";
1535 map1 = isl_map_read_from_str(ctx, str);
1536 str = "[t1] -> { S_0[] -> A[o0] : t1 >= 0 and t1 <= 4294967295 }";
1537 map2 = isl_map_read_from_str(ctx, str);
1538 map1 = isl_map_gist(map1, map2);
1539 if (!map1)
1540 return -1;
1541 if (map1->n != 1)
1542 isl_die(ctx, isl_error_unknown, "expecting single disjunct",
1543 isl_map_free(map1); return -1);
1544 if (isl_basic_map_dim(map1->p[0], isl_dim_div) != 1)
1545 isl_die(ctx, isl_error_unknown, "expecting single div",
1546 isl_map_free(map1); return -1);
1547 isl_map_free(map1);
1549 if (test_plain_gist(ctx) < 0)
1550 return -1;
1552 return 0;
1555 int test_coalesce_set(isl_ctx *ctx, const char *str, int check_one)
1557 isl_set *set, *set2;
1558 int equal;
1559 int one;
1561 set = isl_set_read_from_str(ctx, str);
1562 set = isl_set_coalesce(set);
1563 set2 = isl_set_read_from_str(ctx, str);
1564 equal = isl_set_is_equal(set, set2);
1565 one = set && set->n == 1;
1566 isl_set_free(set);
1567 isl_set_free(set2);
1569 if (equal < 0)
1570 return -1;
1571 if (!equal)
1572 isl_die(ctx, isl_error_unknown,
1573 "coalesced set not equal to input", return -1);
1574 if (check_one && !one)
1575 isl_die(ctx, isl_error_unknown,
1576 "coalesced set should not be a union", return -1);
1578 return 0;
1581 /* Inputs for coalescing tests with unbounded wrapping.
1582 * "str" is a string representation of the input set.
1583 * "single_disjunct" is set if we expect the result to consist of
1584 * a single disjunct.
1586 struct {
1587 int single_disjunct;
1588 const char *str;
1589 } coalesce_unbounded_tests[] = {
1590 { 1, "{ [x,y,z] : y + 2 >= 0 and x - y + 1 >= 0 and "
1591 "-x - y + 1 >= 0 and -3 <= z <= 3;"
1592 "[x,y,z] : -x+z + 20 >= 0 and -x-z + 20 >= 0 and "
1593 "x-z + 20 >= 0 and x+z + 20 >= 0 and "
1594 "-10 <= y <= 0}" },
1595 { 1, "{ [x,y] : 0 <= x,y <= 10; [5,y]: 4 <= y <= 11 }" },
1596 { 1, "{ [x,0,0] : -5 <= x <= 5; [0,y,1] : -5 <= y <= 5 }" },
1597 { 1, "{ [x,y] : 0 <= x <= 10 and 0 >= y >= -1 and x+y >= 0; [0,1] }" },
1598 { 1, "{ [x,y] : (0 <= x,y <= 4) or (2 <= x,y <= 5 and x + y <= 9) }" },
1601 /* Test the functionality of isl_set_coalesce with the bounded wrapping
1602 * option turned off.
1604 int test_coalesce_unbounded_wrapping(isl_ctx *ctx)
1606 int i;
1607 int r = 0;
1608 int bounded;
1610 bounded = isl_options_get_coalesce_bounded_wrapping(ctx);
1611 isl_options_set_coalesce_bounded_wrapping(ctx, 0);
1613 for (i = 0; i < ARRAY_SIZE(coalesce_unbounded_tests); ++i) {
1614 const char *str = coalesce_unbounded_tests[i].str;
1615 int check_one = coalesce_unbounded_tests[i].single_disjunct;
1616 if (test_coalesce_set(ctx, str, check_one) >= 0)
1617 continue;
1618 r = -1;
1619 break;
1622 isl_options_set_coalesce_bounded_wrapping(ctx, bounded);
1624 return r;
1627 /* Inputs for coalescing tests.
1628 * "str" is a string representation of the input set.
1629 * "single_disjunct" is set if we expect the result to consist of
1630 * a single disjunct.
1632 struct {
1633 int single_disjunct;
1634 const char *str;
1635 } coalesce_tests[] = {
1636 { 1, "{[x,y]: x >= 0 & x <= 10 & y >= 0 & y <= 10 or "
1637 "y >= x & x >= 2 & 5 >= y }" },
1638 { 1, "{[x,y]: y >= 0 & 2x + y <= 30 & y <= 10 & x >= 0 or "
1639 "x + y >= 10 & y <= x & x + y <= 20 & y >= 0}" },
1640 { 0, "{[x,y]: y >= 0 & 2x + y <= 30 & y <= 10 & x >= 0 or "
1641 "x + y >= 10 & y <= x & x + y <= 19 & y >= 0}" },
1642 { 1, "{[x,y]: y >= 0 & x <= 5 & y <= x or "
1643 "y >= 0 & x >= 6 & x <= 10 & y <= x}" },
1644 { 0, "{[x,y]: y >= 0 & x <= 5 & y <= x or "
1645 "y >= 0 & x >= 7 & x <= 10 & y <= x}" },
1646 { 0, "{[x,y]: y >= 0 & x <= 5 & y <= x or "
1647 "y >= 0 & x >= 6 & x <= 10 & y + 1 <= x}" },
1648 { 1, "{[x,y]: y >= 0 & x <= 5 & y <= x or y >= 0 & x = 6 & y <= 6}" },
1649 { 0, "{[x,y]: y >= 0 & x <= 5 & y <= x or y >= 0 & x = 7 & y <= 6}" },
1650 { 1, "{[x,y]: y >= 0 & x <= 5 & y <= x or y >= 0 & x = 6 & y <= 5}" },
1651 { 0, "{[x,y]: y >= 0 & x <= 5 & y <= x or y >= 0 & x = 6 & y <= 7}" },
1652 { 1, "[n] -> { [i] : i = 1 and n >= 2 or 2 <= i and i <= n }" },
1653 { 0, "{[x,y] : x >= 0 and y >= 0 or 0 <= y and y <= 5 and x = -1}" },
1654 { 1, "[n] -> { [i] : 1 <= i and i <= n - 1 or 2 <= i and i <= n }" },
1655 { 0, "[n] -> { [[i0] -> [o0]] : exists (e0 = [(i0)/4], e1 = [(o0)/4], "
1656 "e2 = [(n)/2], e3 = [(-2 + i0)/4], e4 = [(-2 + o0)/4], "
1657 "e5 = [(-2n + i0)/4]: 2e2 = n and 4e3 = -2 + i0 and "
1658 "4e4 = -2 + o0 and i0 >= 8 + 2n and o0 >= 2 + i0 and "
1659 "o0 <= 56 + 2n and o0 <= -12 + 4n and i0 <= 57 + 2n and "
1660 "i0 <= -11 + 4n and o0 >= 6 + 2n and 4e0 <= i0 and "
1661 "4e0 >= -3 + i0 and 4e1 <= o0 and 4e1 >= -3 + o0 and "
1662 "4e5 <= -2n + i0 and 4e5 >= -3 - 2n + i0);"
1663 "[[i0] -> [o0]] : exists (e0 = [(i0)/4], e1 = [(o0)/4], "
1664 "e2 = [(n)/2], e3 = [(-2 + i0)/4], e4 = [(-2 + o0)/4], "
1665 "e5 = [(-2n + i0)/4]: 2e2 = n and 4e3 = -2 + i0 and "
1666 "4e4 = -2 + o0 and 2e0 >= 3 + n and e0 <= -4 + n and "
1667 "2e0 <= 27 + n and e1 <= -4 + n and 2e1 <= 27 + n and "
1668 "2e1 >= 2 + n and e1 >= 1 + e0 and i0 >= 7 + 2n and "
1669 "i0 <= -11 + 4n and i0 <= 57 + 2n and 4e0 <= -2 + i0 and "
1670 "4e0 >= -3 + i0 and o0 >= 6 + 2n and o0 <= -11 + 4n and "
1671 "o0 <= 57 + 2n and 4e1 <= -2 + o0 and 4e1 >= -3 + o0 and "
1672 "4e5 <= -2n + i0 and 4e5 >= -3 - 2n + i0 ) }" },
1673 { 0, "[n, m] -> { [o0, o2, o3] : (o3 = 1 and o0 >= 1 + m and "
1674 "o0 <= n + m and o2 <= m and o0 >= 2 + n and o2 >= 3) or "
1675 "(o0 >= 2 + n and o0 >= 1 + m and o0 <= n + m and n >= 1 and "
1676 "o3 <= -1 + o2 and o3 >= 1 - m + o2 and o3 >= 2 and o3 <= n) }" },
1677 { 0, "[M, N] -> { [[i0, i1, i2, i3, i4, i5, i6] -> "
1678 "[o0, o1, o2, o3, o4, o5, o6]] : "
1679 "(o6 <= -4 + 2M - 2N + i0 + i1 - i2 + i6 - o0 - o1 + o2 and "
1680 "o3 <= -2 + i3 and o6 >= 2 + i0 + i3 + i6 - o0 - o3 and "
1681 "o6 >= 2 - M + N + i3 + i4 + i6 - o3 - o4 and o0 <= -1 + i0 and "
1682 "o4 >= 4 - 3M + 3N - i0 - i1 + i2 + 2i3 + i4 + o0 + o1 - o2 - 2o3 "
1683 "and o6 <= -3 + 2M - 2N + i3 + i4 - i5 + i6 - o3 - o4 + o5 and "
1684 "2o6 <= -5 + 5M - 5N + 2i0 + i1 - i2 - i5 + 2i6 - 2o0 - o1 + o2 + o5 "
1685 "and o6 >= 2i0 + i1 + i6 - 2o0 - o1 and "
1686 "3o6 <= -5 + 4M - 4N + 2i0 + i1 - i2 + 2i3 + i4 - i5 + 3i6 "
1687 "- 2o0 - o1 + o2 - 2o3 - o4 + o5) or "
1688 "(N >= 2 and o3 <= -1 + i3 and o0 <= -1 + i0 and "
1689 "o6 >= i3 + i6 - o3 and M >= 0 and "
1690 "2o6 >= 1 + i0 + i3 + 2i6 - o0 - o3 and "
1691 "o6 >= 1 - M + i0 + i6 - o0 and N >= 2M and o6 >= i0 + i6 - o0) }" },
1692 { 0, "[M, N] -> { [o0] : (o0 = 0 and M >= 1 and N >= 2) or "
1693 "(o0 = 0 and M >= 1 and N >= 2M and N >= 2 + M) or "
1694 "(o0 = 0 and M >= 2 and N >= 3) or "
1695 "(M = 0 and o0 = 0 and N >= 3) }" },
1696 { 0, "{ [i0, i1, i2, i3] : (i1 = 10i0 and i0 >= 1 and 10i0 <= 100 and "
1697 "i3 <= 9 + 10 i2 and i3 >= 1 + 10i2 and i3 >= 0) or "
1698 "(i1 <= 9 + 10i0 and i1 >= 1 + 10i0 and i2 >= 0 and "
1699 "i0 >= 0 and i1 <= 100 and i3 <= 9 + 10i2 and i3 >= 1 + 10i2) }" },
1700 { 0, "[M] -> { [i1] : (i1 >= 2 and i1 <= M) or (i1 = M and M >= 1) }" },
1701 { 0, "{[x,y] : x,y >= 0; [x,y] : 10 <= x <= 20 and y >= -1 }" },
1702 { 1, "{ [x, y] : (x >= 1 and y >= 1 and x <= 2 and y <= 2) or "
1703 "(y = 3 and x = 1) }" },
1704 { 1, "[M] -> { [i0, i1, i2, i3, i4] : (i1 >= 3 and i4 >= 2 + i2 and "
1705 "i2 >= 2 and i0 >= 2 and i3 >= 1 + i2 and i0 <= M and "
1706 "i1 <= M and i3 <= M and i4 <= M) or "
1707 "(i1 >= 2 and i4 >= 1 + i2 and i2 >= 2 and i0 >= 2 and "
1708 "i3 >= 1 + i2 and i0 <= M and i1 <= -1 + M and i3 <= M and "
1709 "i4 <= -1 + M) }" },
1710 { 1, "{ [x, y] : (x >= 0 and y >= 0 and x <= 10 and y <= 10) or "
1711 "(x >= 1 and y >= 1 and x <= 11 and y <= 11) }" },
1712 { 0, "{[x,0] : x >= 0; [x,1] : x <= 20}" },
1713 { 1, "{ [x, 1 - x] : 0 <= x <= 1; [0,0] }" },
1714 { 1, "{ [0,0]; [i,i] : 1 <= i <= 10 }" },
1715 { 0, "{ [0,0]; [i,j] : 1 <= i,j <= 10 }" },
1716 { 1, "{ [0,0]; [i,2i] : 1 <= i <= 10 }" },
1717 { 0, "{ [0,0]; [i,2i] : 2 <= i <= 10 }" },
1718 { 0, "{ [1,0]; [i,2i] : 1 <= i <= 10 }" },
1719 { 0, "{ [0,1]; [i,2i] : 1 <= i <= 10 }" },
1720 { 0, "{ [a, b] : exists e : 2e = a and "
1721 "a >= 0 and (a <= 3 or (b <= 0 and b >= -4 + a)) }" },
1722 { 0, "{ [i, j, i', j'] : i <= 2 and j <= 2 and "
1723 "j' >= -1 + 2i + j - 2i' and i' <= -1 + i and "
1724 "j >= 1 and j' <= i + j - i' and i >= 1; "
1725 "[1, 1, 1, 1] }" },
1726 { 1, "{ [i,j] : exists a,b : i = 2a and j = 3b; "
1727 "[i,j] : exists a : j = 3a }" },
1728 { 1, "{ [a, b, c] : (c <= 7 - b and b <= 1 and b >= 0 and "
1729 "c >= 3 + b and b <= 3 + 8a and b >= -26 + 8a and "
1730 "a >= 3) or "
1731 "(b <= 1 and c <= 7 and b >= 0 and c >= 4 + b and "
1732 "b <= 3 + 8a and b >= -26 + 8a and a >= 3) }" },
1733 { 1, "{ [a, 0, c] : c >= 1 and c <= 29 and c >= -1 + 8a and "
1734 "c <= 6 + 8a and a >= 3; "
1735 "[a, -1, c] : c >= 1 and c <= 30 and c >= 8a and "
1736 "c <= 7 + 8a and a >= 3 and a <= 4 }" },
1737 { 1, "{ [x,y] : 0 <= x <= 2 and y >= 0 and x + 2y <= 4; "
1738 "[x,0] : 3 <= x <= 4 }" },
1739 { 1, "{ [x,y] : 0 <= x <= 3 and y >= 0 and x + 3y <= 6; "
1740 "[x,0] : 4 <= x <= 5 }" },
1741 { 0, "{ [x,y] : 0 <= x <= 2 and y >= 0 and x + 2y <= 4; "
1742 "[x,0] : 3 <= x <= 5 }" },
1743 { 0, "{ [x,y] : 0 <= x <= 2 and y >= 0 and x + y <= 4; "
1744 "[x,0] : 3 <= x <= 4 }" },
1745 { 1, "{ [i0, i1] : i0 <= 122 and i0 >= 1 and 128i1 >= -249 + i0 and "
1746 "i1 <= 0; "
1747 "[i0, 0] : i0 >= 123 and i0 <= 124 }" },
1748 { 1, "{ [0,0]; [1,1] }" },
1749 { 1, "[n] -> { [k] : 16k <= -1 + n and k >= 1; [0] : n >= 2 }" },
1750 { 1, "{ [k, ii, k - ii] : ii >= -6 + k and ii <= 6 and ii >= 1 and "
1751 "ii <= k;"
1752 "[k, 0, k] : k <= 6 and k >= 1 }" },
1753 { 1, "{ [i,j] : i = 4 j and 0 <= i <= 100;"
1754 "[i,j] : 1 <= i <= 100 and i >= 4j + 1 and i <= 4j + 2 }" },
1755 { 1, "{ [x,y] : x % 2 = 0 and y % 2 = 0; [x,x] : x % 2 = 0 }" },
1756 { 1, "[n] -> { [1] : n >= 0;"
1757 "[x] : exists (e0 = floor((x)/2): x >= 2 and "
1758 "2e0 >= -1 + x and 2e0 <= x and 2e0 <= n) }" },
1759 { 1, "[n] -> { [x, y] : exists (e0 = floor((x)/2), e1 = floor((y)/3): "
1760 "3e1 = y and x >= 2 and 2e0 >= -1 + x and "
1761 "2e0 <= x and 2e0 <= n);"
1762 "[1, y] : exists (e0 = floor((y)/3): 3e0 = y and "
1763 "n >= 0) }" },
1764 { 1, "[t1] -> { [i0] : (exists (e0 = floor((63t1)/64): "
1765 "128e0 >= -134 + 127t1 and t1 >= 2 and "
1766 "64e0 <= 63t1 and 64e0 >= -63 + 63t1)) or "
1767 "t1 = 1 }" },
1768 { 1, "{ [i, i] : exists (e0 = floor((1 + 2i)/3): 3e0 <= 2i and "
1769 "3e0 >= -1 + 2i and i <= 9 and i >= 1);"
1770 "[0, 0] }" },
1771 { 1, "{ [t1] : exists (e0 = floor((-11 + t1)/2): 2e0 = -11 + t1 and "
1772 "t1 >= 13 and t1 <= 16);"
1773 "[t1] : t1 <= 15 and t1 >= 12 }" },
1774 { 1, "{ [x,y] : x = 3y and 0 <= y <= 2; [-3,-1] }" },
1775 { 1, "{ [x,y] : 2x = 3y and 0 <= y <= 4; [-3,-2] }" },
1776 { 0, "{ [x,y] : 2x = 3y and 0 <= y <= 4; [-2,-2] }" },
1777 { 0, "{ [x,y] : 2x = 3y and 0 <= y <= 4; [-3,-1] }" },
1778 { 1, "{ [i] : exists j : i = 4 j and 0 <= i <= 100;"
1779 "[i] : exists j : 1 <= i <= 100 and i >= 4j + 1 and "
1780 "i <= 4j + 2 }" },
1781 { 1, "{ [c0] : (exists (e0 : c0 - 1 <= 3e0 <= c0)) or "
1782 "(exists (e0 : 3e0 = -2 + c0)) }" },
1783 { 0, "[n, b0, t0] -> "
1784 "{ [i0, i1, i2, i3, i4, i5, i6, i7, i8, i9, i10, i11, i12] : "
1785 "(exists (e0 = floor((-32b0 + i4)/1048576), "
1786 "e1 = floor((i8)/32): 1048576e0 = -32b0 + i4 and 32e1 = i8 and "
1787 "n <= 2147483647 and b0 <= 32767 and b0 >= 0 and "
1788 "32b0 <= -2 + n and t0 <= 31 and t0 >= 0 and i0 >= 8 + n and "
1789 "3i4 <= -96 + 3t0 + i0 and 3i4 >= -95 - n + 3t0 + i0 and "
1790 "i8 >= -157 + i0 - 4i4 and i8 >= 0 and "
1791 "i8 <= -33 + i0 - 4i4 and 3i8 <= -91 + 4n - i0)) or "
1792 "(exists (e0 = floor((-32b0 + i4)/1048576), "
1793 "e1 = floor((i8)/32): 1048576e0 = -32b0 + i4 and 32e1 = i8 and "
1794 "n <= 2147483647 and b0 <= 32767 and b0 >= 0 and "
1795 "32b0 <= -2 + n and t0 <= 31 and t0 >= 0 and i0 <= 7 + n and "
1796 "4i4 <= -3 + i0 and 3i4 <= -96 + 3t0 + i0 and "
1797 "3i4 >= -95 - n + 3t0 + i0 and i8 >= -157 + i0 - 4i4 and "
1798 "i8 >= 0 and i8 <= -4 + i0 - 3i4 and i8 <= -41 + i0));"
1799 "[i0, i1, i2, i3, 0, i5, i6, i7, i8, i9, i10, i11, i12] : "
1800 "(exists (e0 = floor((i8)/32): b0 = 0 and 32e0 = i8 and "
1801 "n <= 2147483647 and t0 <= 31 and t0 >= 0 and i0 >= 11 and "
1802 "i0 >= 96 - 3t0 and i0 <= 95 + n - 3t0 and i0 <= 7 + n and "
1803 "i8 >= -40 + i0 and i8 <= -10 + i0)) }" },
1804 { 0, "{ [i0, i1, i2] : "
1805 "(exists (e0, e1 = floor((i0)/32), e2 = floor((i1)/32): "
1806 "32e1 = i0 and 32e2 = i1 and i1 >= -31 + i0 and "
1807 "i1 <= 31 + i0 and i2 >= -30 + i0 and i2 >= -30 + i1 and "
1808 "32e0 >= -30 + i0 and 32e0 >= -30 + i1 and "
1809 "32e0 >= -31 + i2 and 32e0 <= 30 + i2 and 32e0 <= 31 + i1 and "
1810 "32e0 <= 31 + i0)) or "
1811 "i0 >= 0 }" },
1812 { 1, "{ [a, b, c] : 2b = 1 + a and 2c = 2 + a; [0, 0, 0] }" },
1813 { 1, "{ [a, a, b, c] : 32*floor((a)/32) = a and 2*floor((b)/2) = b and "
1814 "2*floor((c)/2) = c and 0 <= a <= 192;"
1815 "[224, 224, b, c] : 2*floor((b)/2) = b and 2*floor((c)/2) = c }"
1817 { 1, "[n] -> { [a,b] : (exists e : 1 <= a <= 7e and 9e <= b <= n) or "
1818 "(0 <= a <= b <= n) }" },
1821 /* A specialized coalescing test case that would result
1822 * in a segmentation fault or a failed assertion in earlier versions of isl.
1824 static int test_coalesce_special(struct isl_ctx *ctx)
1826 const char *str;
1827 isl_map *map1, *map2;
1829 str = "[y] -> { [S_L220_OUT[] -> T7[]] -> "
1830 "[[S_L309_IN[] -> T11[]] -> ce_imag2[1, o1]] : "
1831 "(y = 201 and o1 <= 239 and o1 >= 212) or "
1832 "(exists (e0 = [(y)/3]: 3e0 = y and y <= 198 and y >= 3 and "
1833 "o1 <= 239 and o1 >= 212)) or "
1834 "(exists (e0 = [(y)/3]: 3e0 = y and y <= 201 and y >= 3 and "
1835 "o1 <= 241 and o1 >= 240));"
1836 "[S_L220_OUT[] -> T7[]] -> "
1837 "[[S_L309_IN[] -> T11[]] -> ce_imag2[0, o1]] : "
1838 "(y = 2 and o1 <= 241 and o1 >= 212) or "
1839 "(exists (e0 = [(-2 + y)/3]: 3e0 = -2 + y and y <= 200 and "
1840 "y >= 5 and o1 <= 241 and o1 >= 212)) }";
1841 map1 = isl_map_read_from_str(ctx, str);
1842 map1 = isl_map_align_divs(map1);
1843 map1 = isl_map_coalesce(map1);
1844 str = "[y] -> { [S_L220_OUT[] -> T7[]] -> "
1845 "[[S_L309_IN[] -> T11[]] -> ce_imag2[o0, o1]] : "
1846 "exists (e0 = [(-1 - y + o0)/3]: 3e0 = -1 - y + o0 and "
1847 "y <= 201 and o0 <= 2 and o1 >= 212 and o1 <= 241 and "
1848 "o0 >= 3 - y and o0 <= -2 + y and o0 >= 0) }";
1849 map2 = isl_map_read_from_str(ctx, str);
1850 map2 = isl_map_union(map2, map1);
1851 map2 = isl_map_align_divs(map2);
1852 map2 = isl_map_coalesce(map2);
1853 isl_map_free(map2);
1854 if (!map2)
1855 return -1;
1857 return 0;
1860 /* Test the functionality of isl_set_coalesce.
1861 * That is, check that the output is always equal to the input
1862 * and in some cases that the result consists of a single disjunct.
1864 static int test_coalesce(struct isl_ctx *ctx)
1866 int i;
1868 for (i = 0; i < ARRAY_SIZE(coalesce_tests); ++i) {
1869 const char *str = coalesce_tests[i].str;
1870 int check_one = coalesce_tests[i].single_disjunct;
1871 if (test_coalesce_set(ctx, str, check_one) < 0)
1872 return -1;
1875 if (test_coalesce_unbounded_wrapping(ctx) < 0)
1876 return -1;
1877 if (test_coalesce_special(ctx) < 0)
1878 return -1;
1880 return 0;
1883 /* Construct a representation of the graph on the right of Figure 1
1884 * in "Computing the Transitive Closure of a Union of
1885 * Affine Integer Tuple Relations".
1887 static __isl_give isl_map *cocoa_fig_1_right_graph(isl_ctx *ctx)
1889 isl_set *dom;
1890 isl_map *up, *right;
1892 dom = isl_set_read_from_str(ctx,
1893 "{ [x,y] : x >= 0 and -2 x + 3 y >= 0 and x <= 3 and "
1894 "2 x - 3 y + 3 >= 0 }");
1895 right = isl_map_read_from_str(ctx,
1896 "{ [x,y] -> [x2,y2] : x2 = x + 1 and y2 = y }");
1897 up = isl_map_read_from_str(ctx,
1898 "{ [x,y] -> [x2,y2] : x2 = x and y2 = y + 1 }");
1899 right = isl_map_intersect_domain(right, isl_set_copy(dom));
1900 right = isl_map_intersect_range(right, isl_set_copy(dom));
1901 up = isl_map_intersect_domain(up, isl_set_copy(dom));
1902 up = isl_map_intersect_range(up, dom);
1903 return isl_map_union(up, right);
1906 /* Construct a representation of the power of the graph
1907 * on the right of Figure 1 in "Computing the Transitive Closure of
1908 * a Union of Affine Integer Tuple Relations".
1910 static __isl_give isl_map *cocoa_fig_1_right_power(isl_ctx *ctx)
1912 return isl_map_read_from_str(ctx,
1913 "{ [1] -> [[0,0] -> [0,1]]; [2] -> [[0,0] -> [1,1]]; "
1914 " [1] -> [[0,1] -> [1,1]]; [1] -> [[2,2] -> [3,2]]; "
1915 " [2] -> [[2,2] -> [3,3]]; [1] -> [[3,2] -> [3,3]] }");
1918 /* Construct a representation of the transitive closure of the graph
1919 * on the right of Figure 1 in "Computing the Transitive Closure of
1920 * a Union of Affine Integer Tuple Relations".
1922 static __isl_give isl_map *cocoa_fig_1_right_tc(isl_ctx *ctx)
1924 return isl_set_unwrap(isl_map_range(cocoa_fig_1_right_power(ctx)));
1927 static int test_closure(isl_ctx *ctx)
1929 const char *str;
1930 isl_map *map, *map2;
1931 int exact, equal;
1933 /* COCOA example 1 */
1934 map = isl_map_read_from_str(ctx,
1935 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 1 and j2 = j + 1 and "
1936 "1 <= i and i < n and 1 <= j and j < n or "
1937 "i2 = i + 1 and j2 = j - 1 and "
1938 "1 <= i and i < n and 2 <= j and j <= n }");
1939 map = isl_map_power(map, &exact);
1940 assert(exact);
1941 isl_map_free(map);
1943 /* COCOA example 1 */
1944 map = isl_map_read_from_str(ctx,
1945 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 1 and j2 = j + 1 and "
1946 "1 <= i and i < n and 1 <= j and j < n or "
1947 "i2 = i + 1 and j2 = j - 1 and "
1948 "1 <= i and i < n and 2 <= j and j <= n }");
1949 map = isl_map_transitive_closure(map, &exact);
1950 assert(exact);
1951 map2 = isl_map_read_from_str(ctx,
1952 "[n] -> { [i,j] -> [i2,j2] : exists (k1,k2,k : "
1953 "1 <= i and i < n and 1 <= j and j <= n and "
1954 "2 <= i2 and i2 <= n and 1 <= j2 and j2 <= n and "
1955 "i2 = i + k1 + k2 and j2 = j + k1 - k2 and "
1956 "k1 >= 0 and k2 >= 0 and k1 + k2 = k and k >= 1 )}");
1957 assert(isl_map_is_equal(map, map2));
1958 isl_map_free(map2);
1959 isl_map_free(map);
1961 map = isl_map_read_from_str(ctx,
1962 "[n] -> { [x] -> [y] : y = x + 1 and 0 <= x and x <= n and "
1963 " 0 <= y and y <= n }");
1964 map = isl_map_transitive_closure(map, &exact);
1965 map2 = isl_map_read_from_str(ctx,
1966 "[n] -> { [x] -> [y] : y > x and 0 <= x and x <= n and "
1967 " 0 <= y and y <= n }");
1968 assert(isl_map_is_equal(map, map2));
1969 isl_map_free(map2);
1970 isl_map_free(map);
1972 /* COCOA example 2 */
1973 map = isl_map_read_from_str(ctx,
1974 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 2 and j2 = j + 2 and "
1975 "1 <= i and i < n - 1 and 1 <= j and j < n - 1 or "
1976 "i2 = i + 2 and j2 = j - 2 and "
1977 "1 <= i and i < n - 1 and 3 <= j and j <= n }");
1978 map = isl_map_transitive_closure(map, &exact);
1979 assert(exact);
1980 map2 = isl_map_read_from_str(ctx,
1981 "[n] -> { [i,j] -> [i2,j2] : exists (k1,k2,k : "
1982 "1 <= i and i < n - 1 and 1 <= j and j <= n and "
1983 "3 <= i2 and i2 <= n and 1 <= j2 and j2 <= n and "
1984 "i2 = i + 2 k1 + 2 k2 and j2 = j + 2 k1 - 2 k2 and "
1985 "k1 >= 0 and k2 >= 0 and k1 + k2 = k and k >= 1) }");
1986 assert(isl_map_is_equal(map, map2));
1987 isl_map_free(map);
1988 isl_map_free(map2);
1990 /* COCOA Fig.2 left */
1991 map = isl_map_read_from_str(ctx,
1992 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 2 and j2 = j and "
1993 "i <= 2 j - 3 and i <= n - 2 and j <= 2 i - 1 and "
1994 "j <= n or "
1995 "i2 = i and j2 = j + 2 and i <= 2 j - 1 and i <= n and "
1996 "j <= 2 i - 3 and j <= n - 2 or "
1997 "i2 = i + 1 and j2 = j + 1 and i <= 2 j - 1 and "
1998 "i <= n - 1 and j <= 2 i - 1 and j <= n - 1 }");
1999 map = isl_map_transitive_closure(map, &exact);
2000 assert(exact);
2001 isl_map_free(map);
2003 /* COCOA Fig.2 right */
2004 map = isl_map_read_from_str(ctx,
2005 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 3 and j2 = j and "
2006 "i <= 2 j - 4 and i <= n - 3 and j <= 2 i - 1 and "
2007 "j <= n or "
2008 "i2 = i and j2 = j + 3 and i <= 2 j - 1 and i <= n and "
2009 "j <= 2 i - 4 and j <= n - 3 or "
2010 "i2 = i + 1 and j2 = j + 1 and i <= 2 j - 1 and "
2011 "i <= n - 1 and j <= 2 i - 1 and j <= n - 1 }");
2012 map = isl_map_power(map, &exact);
2013 assert(exact);
2014 isl_map_free(map);
2016 /* COCOA Fig.2 right */
2017 map = isl_map_read_from_str(ctx,
2018 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 3 and j2 = j and "
2019 "i <= 2 j - 4 and i <= n - 3 and j <= 2 i - 1 and "
2020 "j <= n or "
2021 "i2 = i and j2 = j + 3 and i <= 2 j - 1 and i <= n and "
2022 "j <= 2 i - 4 and j <= n - 3 or "
2023 "i2 = i + 1 and j2 = j + 1 and i <= 2 j - 1 and "
2024 "i <= n - 1 and j <= 2 i - 1 and j <= n - 1 }");
2025 map = isl_map_transitive_closure(map, &exact);
2026 assert(exact);
2027 map2 = isl_map_read_from_str(ctx,
2028 "[n] -> { [i,j] -> [i2,j2] : exists (k1,k2,k3,k : "
2029 "i <= 2 j - 1 and i <= n and j <= 2 i - 1 and "
2030 "j <= n and 3 + i + 2 j <= 3 n and "
2031 "3 + 2 i + j <= 3n and i2 <= 2 j2 -1 and i2 <= n and "
2032 "i2 <= 3 j2 - 4 and j2 <= 2 i2 -1 and j2 <= n and "
2033 "13 + 4 j2 <= 11 i2 and i2 = i + 3 k1 + k3 and "
2034 "j2 = j + 3 k2 + k3 and k1 >= 0 and k2 >= 0 and "
2035 "k3 >= 0 and k1 + k2 + k3 = k and k > 0) }");
2036 assert(isl_map_is_equal(map, map2));
2037 isl_map_free(map2);
2038 isl_map_free(map);
2040 map = cocoa_fig_1_right_graph(ctx);
2041 map = isl_map_transitive_closure(map, &exact);
2042 assert(exact);
2043 map2 = cocoa_fig_1_right_tc(ctx);
2044 assert(isl_map_is_equal(map, map2));
2045 isl_map_free(map2);
2046 isl_map_free(map);
2048 map = cocoa_fig_1_right_graph(ctx);
2049 map = isl_map_power(map, &exact);
2050 map2 = cocoa_fig_1_right_power(ctx);
2051 equal = isl_map_is_equal(map, map2);
2052 isl_map_free(map2);
2053 isl_map_free(map);
2054 if (equal < 0)
2055 return -1;
2056 if (!exact)
2057 isl_die(ctx, isl_error_unknown, "power not exact", return -1);
2058 if (!equal)
2059 isl_die(ctx, isl_error_unknown, "unexpected power", return -1);
2061 /* COCOA Theorem 1 counter example */
2062 map = isl_map_read_from_str(ctx,
2063 "{ [i,j] -> [i2,j2] : i = 0 and 0 <= j and j <= 1 and "
2064 "i2 = 1 and j2 = j or "
2065 "i = 0 and j = 0 and i2 = 0 and j2 = 1 }");
2066 map = isl_map_transitive_closure(map, &exact);
2067 assert(exact);
2068 isl_map_free(map);
2070 map = isl_map_read_from_str(ctx,
2071 "[m,n] -> { [i,j] -> [i2,j2] : i2 = i and j2 = j + 2 and "
2072 "1 <= i,i2 <= n and 1 <= j,j2 <= m or "
2073 "i2 = i + 1 and 3 <= j2 - j <= 4 and "
2074 "1 <= i,i2 <= n and 1 <= j,j2 <= m }");
2075 map = isl_map_transitive_closure(map, &exact);
2076 assert(exact);
2077 isl_map_free(map);
2079 /* Kelly et al 1996, fig 12 */
2080 map = isl_map_read_from_str(ctx,
2081 "[n] -> { [i,j] -> [i2,j2] : i2 = i and j2 = j + 1 and "
2082 "1 <= i,j,j+1 <= n or "
2083 "j = n and j2 = 1 and i2 = i + 1 and "
2084 "1 <= i,i+1 <= n }");
2085 map = isl_map_transitive_closure(map, &exact);
2086 assert(exact);
2087 map2 = isl_map_read_from_str(ctx,
2088 "[n] -> { [i,j] -> [i2,j2] : 1 <= j < j2 <= n and "
2089 "1 <= i <= n and i = i2 or "
2090 "1 <= i < i2 <= n and 1 <= j <= n and "
2091 "1 <= j2 <= n }");
2092 assert(isl_map_is_equal(map, map2));
2093 isl_map_free(map2);
2094 isl_map_free(map);
2096 /* Omega's closure4 */
2097 map = isl_map_read_from_str(ctx,
2098 "[m,n] -> { [x,y] -> [x2,y2] : x2 = x and y2 = y + 1 and "
2099 "1 <= x,y <= 10 or "
2100 "x2 = x + 1 and y2 = y and "
2101 "1 <= x <= 20 && 5 <= y <= 15 }");
2102 map = isl_map_transitive_closure(map, &exact);
2103 assert(exact);
2104 isl_map_free(map);
2106 map = isl_map_read_from_str(ctx,
2107 "[n] -> { [x] -> [y]: 1 <= n <= y - x <= 10 }");
2108 map = isl_map_transitive_closure(map, &exact);
2109 assert(!exact);
2110 map2 = isl_map_read_from_str(ctx,
2111 "[n] -> { [x] -> [y] : 1 <= n <= 10 and y >= n + x }");
2112 assert(isl_map_is_equal(map, map2));
2113 isl_map_free(map);
2114 isl_map_free(map2);
2116 str = "[n, m] -> { [i0, i1, i2, i3] -> [o0, o1, o2, o3] : "
2117 "i3 = 1 and o0 = i0 and o1 = -1 + i1 and o2 = -1 + i2 and "
2118 "o3 = -2 + i2 and i1 <= -1 + i0 and i1 >= 1 - m + i0 and "
2119 "i1 >= 2 and i1 <= n and i2 >= 3 and i2 <= 1 + n and i2 <= m }";
2120 map = isl_map_read_from_str(ctx, str);
2121 map = isl_map_transitive_closure(map, &exact);
2122 assert(exact);
2123 map2 = isl_map_read_from_str(ctx, str);
2124 assert(isl_map_is_equal(map, map2));
2125 isl_map_free(map);
2126 isl_map_free(map2);
2128 str = "{[0] -> [1]; [2] -> [3]}";
2129 map = isl_map_read_from_str(ctx, str);
2130 map = isl_map_transitive_closure(map, &exact);
2131 assert(exact);
2132 map2 = isl_map_read_from_str(ctx, str);
2133 assert(isl_map_is_equal(map, map2));
2134 isl_map_free(map);
2135 isl_map_free(map2);
2137 str = "[n] -> { [[i0, i1, 1, 0, i0] -> [i5, 1]] -> "
2138 "[[i0, -1 + i1, 2, 0, i0] -> [-1 + i5, 2]] : "
2139 "exists (e0 = [(3 - n)/3]: i5 >= 2 and i1 >= 2 and "
2140 "3i0 <= -1 + n and i1 <= -1 + n and i5 <= -1 + n and "
2141 "3e0 >= 1 - n and 3e0 <= 2 - n and 3i0 >= -2 + n); "
2142 "[[i0, i1, 2, 0, i0] -> [i5, 1]] -> "
2143 "[[i0, i1, 1, 0, i0] -> [-1 + i5, 2]] : "
2144 "exists (e0 = [(3 - n)/3]: i5 >= 2 and i1 >= 1 and "
2145 "3i0 <= -1 + n and i1 <= -1 + n and i5 <= -1 + n and "
2146 "3e0 >= 1 - n and 3e0 <= 2 - n and 3i0 >= -2 + n); "
2147 "[[i0, i1, 1, 0, i0] -> [i5, 2]] -> "
2148 "[[i0, -1 + i1, 2, 0, i0] -> [i5, 1]] : "
2149 "exists (e0 = [(3 - n)/3]: i1 >= 2 and i5 >= 1 and "
2150 "3i0 <= -1 + n and i1 <= -1 + n and i5 <= -1 + n and "
2151 "3e0 >= 1 - n and 3e0 <= 2 - n and 3i0 >= -2 + n); "
2152 "[[i0, i1, 2, 0, i0] -> [i5, 2]] -> "
2153 "[[i0, i1, 1, 0, i0] -> [i5, 1]] : "
2154 "exists (e0 = [(3 - n)/3]: i5 >= 1 and i1 >= 1 and "
2155 "3i0 <= -1 + n and i1 <= -1 + n and i5 <= -1 + n and "
2156 "3e0 >= 1 - n and 3e0 <= 2 - n and 3i0 >= -2 + n) }";
2157 map = isl_map_read_from_str(ctx, str);
2158 map = isl_map_transitive_closure(map, NULL);
2159 assert(map);
2160 isl_map_free(map);
2162 return 0;
2165 static int test_lex(struct isl_ctx *ctx)
2167 isl_space *dim;
2168 isl_map *map;
2169 int empty;
2171 dim = isl_space_set_alloc(ctx, 0, 0);
2172 map = isl_map_lex_le(dim);
2173 empty = isl_map_is_empty(map);
2174 isl_map_free(map);
2176 if (empty < 0)
2177 return -1;
2178 if (empty)
2179 isl_die(ctx, isl_error_unknown,
2180 "expecting non-empty result", return -1);
2182 return 0;
2185 static int test_lexmin(struct isl_ctx *ctx)
2187 int equal;
2188 const char *str;
2189 isl_basic_map *bmap;
2190 isl_map *map, *map2;
2191 isl_set *set;
2192 isl_set *set2;
2193 isl_pw_multi_aff *pma;
2195 str = "[p0, p1] -> { [] -> [] : "
2196 "exists (e0 = [(2p1)/3], e1, e2, e3 = [(3 - p1 + 3e0)/3], "
2197 "e4 = [(p1)/3], e5 = [(p1 + 3e4)/3]: "
2198 "3e0 >= -2 + 2p1 and 3e0 >= p1 and 3e3 >= 1 - p1 + 3e0 and "
2199 "3e0 <= 2p1 and 3e3 >= -2 + p1 and 3e3 <= -1 + p1 and p1 >= 3 and "
2200 "3e5 >= -2 + 2p1 and 3e5 >= p1 and 3e5 <= -1 + p1 + 3e4 and "
2201 "3e4 <= p1 and 3e4 >= -2 + p1 and e3 <= -1 + e0 and "
2202 "3e4 >= 6 - p1 + 3e1 and 3e1 >= p1 and 3e5 >= -2 + p1 + 3e4 and "
2203 "2e4 >= 3 - p1 + 2e1 and e4 <= e1 and 3e3 <= 2 - p1 + 3e0 and "
2204 "e5 >= 1 + e1 and 3e4 >= 6 - 2p1 + 3e1 and "
2205 "p0 >= 2 and p1 >= p0 and 3e2 >= p1 and 3e4 >= 6 - p1 + 3e2 and "
2206 "e2 <= e1 and e3 >= 1 and e4 <= e2) }";
2207 map = isl_map_read_from_str(ctx, str);
2208 map = isl_map_lexmin(map);
2209 isl_map_free(map);
2211 str = "[C] -> { [obj,a,b,c] : obj <= 38 a + 7 b + 10 c and "
2212 "a + b <= 1 and c <= 10 b and c <= C and a,b,c,C >= 0 }";
2213 set = isl_set_read_from_str(ctx, str);
2214 set = isl_set_lexmax(set);
2215 str = "[C] -> { [obj,a,b,c] : C = 8 }";
2216 set2 = isl_set_read_from_str(ctx, str);
2217 set = isl_set_intersect(set, set2);
2218 assert(!isl_set_is_empty(set));
2219 isl_set_free(set);
2221 str = "{ [x] -> [y] : x <= y <= 10; [x] -> [5] : -8 <= x <= 8 }";
2222 map = isl_map_read_from_str(ctx, str);
2223 map = isl_map_lexmin(map);
2224 str = "{ [x] -> [5] : 6 <= x <= 8; "
2225 "[x] -> [x] : x <= 5 or (9 <= x <= 10) }";
2226 map2 = isl_map_read_from_str(ctx, str);
2227 assert(isl_map_is_equal(map, map2));
2228 isl_map_free(map);
2229 isl_map_free(map2);
2231 str = "{ [x] -> [y] : 4y = x or 4y = -1 + x or 4y = -2 + x }";
2232 map = isl_map_read_from_str(ctx, str);
2233 map2 = isl_map_copy(map);
2234 map = isl_map_lexmin(map);
2235 assert(isl_map_is_equal(map, map2));
2236 isl_map_free(map);
2237 isl_map_free(map2);
2239 str = "{ [x] -> [y] : x = 4y; [x] -> [y] : x = 2y }";
2240 map = isl_map_read_from_str(ctx, str);
2241 map = isl_map_lexmin(map);
2242 str = "{ [x] -> [y] : (4y = x and x >= 0) or "
2243 "(exists (e0 = [(x)/4], e1 = [(-2 + x)/4]: 2y = x and "
2244 "4e1 = -2 + x and 4e0 <= -1 + x and 4e0 >= -3 + x)) or "
2245 "(exists (e0 = [(x)/4]: 2y = x and 4e0 = x and x <= -4)) }";
2246 map2 = isl_map_read_from_str(ctx, str);
2247 assert(isl_map_is_equal(map, map2));
2248 isl_map_free(map);
2249 isl_map_free(map2);
2251 str = "{ [i] -> [i', j] : j = i - 8i' and i' >= 0 and i' <= 7 and "
2252 " 8i' <= i and 8i' >= -7 + i }";
2253 bmap = isl_basic_map_read_from_str(ctx, str);
2254 pma = isl_basic_map_lexmin_pw_multi_aff(isl_basic_map_copy(bmap));
2255 map2 = isl_map_from_pw_multi_aff(pma);
2256 map = isl_map_from_basic_map(bmap);
2257 assert(isl_map_is_equal(map, map2));
2258 isl_map_free(map);
2259 isl_map_free(map2);
2261 str = "{ T[a] -> S[b, c] : a = 4b-2c and c >= b }";
2262 map = isl_map_read_from_str(ctx, str);
2263 map = isl_map_lexmin(map);
2264 str = "{ T[a] -> S[b, c] : 2b = a and 2c = a }";
2265 map2 = isl_map_read_from_str(ctx, str);
2266 assert(isl_map_is_equal(map, map2));
2267 isl_map_free(map);
2268 isl_map_free(map2);
2270 /* Check that empty pieces are properly combined. */
2271 str = "[K, N] -> { [x, y] -> [a, b] : K+2<=N<=K+4 and x>=4 and "
2272 "2N-6<=x<K+N and N-1<=a<=K+N-1 and N+b-6<=a<=2N-4 and "
2273 "b<=2N-3K+a and 3b<=4N-K+1 and b>=N and a>=x+1 }";
2274 map = isl_map_read_from_str(ctx, str);
2275 map = isl_map_lexmin(map);
2276 str = "[K, N] -> { [x, y] -> [1 + x, N] : x >= -6 + 2N and "
2277 "x <= -5 + 2N and x >= -1 + 3K - N and x <= -2 + K + N and "
2278 "x >= 4 }";
2279 map2 = isl_map_read_from_str(ctx, str);
2280 assert(isl_map_is_equal(map, map2));
2281 isl_map_free(map);
2282 isl_map_free(map2);
2284 str = "[i] -> { [i', j] : j = i - 8i' and i' >= 0 and i' <= 7 and "
2285 " 8i' <= i and 8i' >= -7 + i }";
2286 set = isl_set_read_from_str(ctx, str);
2287 pma = isl_set_lexmin_pw_multi_aff(isl_set_copy(set));
2288 set2 = isl_set_from_pw_multi_aff(pma);
2289 equal = isl_set_is_equal(set, set2);
2290 isl_set_free(set);
2291 isl_set_free(set2);
2292 if (equal < 0)
2293 return -1;
2294 if (!equal)
2295 isl_die(ctx, isl_error_unknown,
2296 "unexpected difference between set and "
2297 "piecewise affine expression", return -1);
2299 return 0;
2302 /* A specialized isl_set_min_val test case that would return the wrong result
2303 * in earlier versions of isl.
2304 * The explicit call to isl_basic_set_union prevents the second basic set
2305 * from being determined to be empty prior to the call to isl_set_min_val,
2306 * at least at the point where this test case was introduced.
2308 static int test_min_special(isl_ctx *ctx)
2310 const char *str;
2311 isl_basic_set *bset1, *bset2;
2312 isl_set *set;
2313 isl_aff *obj;
2314 isl_val *res;
2315 int ok;
2317 str = "{ [a, b] : a >= 2 and b >= 0 and 14 - a <= b <= 9 }";
2318 bset1 = isl_basic_set_read_from_str(ctx, str);
2319 str = "{ [a, b] : 1 <= a, b and a + b <= 1 }";
2320 bset2 = isl_basic_set_read_from_str(ctx, str);
2321 set = isl_basic_set_union(bset1, bset2);
2322 obj = isl_aff_read_from_str(ctx, "{ [a, b] -> [a] }");
2324 res = isl_set_min_val(set, obj);
2325 ok = isl_val_cmp_si(res, 5) == 0;
2327 isl_aff_free(obj);
2328 isl_set_free(set);
2329 isl_val_free(res);
2331 if (!res)
2332 return -1;
2333 if (!ok)
2334 isl_die(ctx, isl_error_unknown, "unexpected minimum",
2335 return -1);
2337 return 0;
2340 struct {
2341 const char *set;
2342 const char *obj;
2343 __isl_give isl_val *(*fn)(__isl_keep isl_set *set,
2344 __isl_keep isl_aff *obj);
2345 const char *res;
2346 } opt_tests[] = {
2347 { "{ [-1]; [1] }", "{ [x] -> [x] }", &isl_set_min_val, "-1" },
2348 { "{ [-1]; [1] }", "{ [x] -> [x] }", &isl_set_max_val, "1" },
2349 { "{ [a, b] : 0 <= a, b <= 100 and b mod 2 = 0}",
2350 "{ [a, b] -> [floor((b - 2*floor((-a)/4))/5)] }",
2351 &isl_set_max_val, "30" },
2355 /* Perform basic isl_set_min_val and isl_set_max_val tests.
2356 * In particular, check the results on non-convex inputs.
2358 static int test_min(struct isl_ctx *ctx)
2360 int i;
2361 isl_set *set;
2362 isl_aff *obj;
2363 isl_val *val, *res;
2364 isl_bool ok;
2366 for (i = 0; i < ARRAY_SIZE(opt_tests); ++i) {
2367 set = isl_set_read_from_str(ctx, opt_tests[i].set);
2368 obj = isl_aff_read_from_str(ctx, opt_tests[i].obj);
2369 res = isl_val_read_from_str(ctx, opt_tests[i].res);
2370 val = opt_tests[i].fn(set, obj);
2371 ok = isl_val_eq(res, val);
2372 isl_val_free(res);
2373 isl_val_free(val);
2374 isl_aff_free(obj);
2375 isl_set_free(set);
2377 if (ok < 0)
2378 return -1;
2379 if (!ok)
2380 isl_die(ctx, isl_error_unknown,
2381 "unexpected optimum", return -1);
2384 if (test_min_special(ctx) < 0)
2385 return -1;
2387 return 0;
2390 struct must_may {
2391 isl_map *must;
2392 isl_map *may;
2395 static isl_stat collect_must_may(__isl_take isl_map *dep, int must,
2396 void *dep_user, void *user)
2398 struct must_may *mm = (struct must_may *)user;
2400 if (must)
2401 mm->must = isl_map_union(mm->must, dep);
2402 else
2403 mm->may = isl_map_union(mm->may, dep);
2405 return isl_stat_ok;
2408 static int common_space(void *first, void *second)
2410 int depth = *(int *)first;
2411 return 2 * depth;
2414 static int map_is_equal(__isl_keep isl_map *map, const char *str)
2416 isl_map *map2;
2417 int equal;
2419 if (!map)
2420 return -1;
2422 map2 = isl_map_read_from_str(map->ctx, str);
2423 equal = isl_map_is_equal(map, map2);
2424 isl_map_free(map2);
2426 return equal;
2429 static int map_check_equal(__isl_keep isl_map *map, const char *str)
2431 int equal;
2433 equal = map_is_equal(map, str);
2434 if (equal < 0)
2435 return -1;
2436 if (!equal)
2437 isl_die(isl_map_get_ctx(map), isl_error_unknown,
2438 "result not as expected", return -1);
2439 return 0;
2442 static int test_dep(struct isl_ctx *ctx)
2444 const char *str;
2445 isl_space *dim;
2446 isl_map *map;
2447 isl_access_info *ai;
2448 isl_flow *flow;
2449 int depth;
2450 struct must_may mm;
2452 depth = 3;
2454 str = "{ [2,i,0] -> [i] : 0 <= i <= 10 }";
2455 map = isl_map_read_from_str(ctx, str);
2456 ai = isl_access_info_alloc(map, &depth, &common_space, 2);
2458 str = "{ [0,i,0] -> [i] : 0 <= i <= 10 }";
2459 map = isl_map_read_from_str(ctx, str);
2460 ai = isl_access_info_add_source(ai, map, 1, &depth);
2462 str = "{ [1,i,0] -> [5] : 0 <= i <= 10 }";
2463 map = isl_map_read_from_str(ctx, str);
2464 ai = isl_access_info_add_source(ai, map, 1, &depth);
2466 flow = isl_access_info_compute_flow(ai);
2467 dim = isl_space_alloc(ctx, 0, 3, 3);
2468 mm.must = isl_map_empty(isl_space_copy(dim));
2469 mm.may = isl_map_empty(dim);
2471 isl_flow_foreach(flow, collect_must_may, &mm);
2473 str = "{ [0,i,0] -> [2,i,0] : (0 <= i <= 4) or (6 <= i <= 10); "
2474 " [1,10,0] -> [2,5,0] }";
2475 assert(map_is_equal(mm.must, str));
2476 str = "{ [i,j,k] -> [l,m,n] : 1 = 0 }";
2477 assert(map_is_equal(mm.may, str));
2479 isl_map_free(mm.must);
2480 isl_map_free(mm.may);
2481 isl_flow_free(flow);
2484 str = "{ [2,i,0] -> [i] : 0 <= i <= 10 }";
2485 map = isl_map_read_from_str(ctx, str);
2486 ai = isl_access_info_alloc(map, &depth, &common_space, 2);
2488 str = "{ [0,i,0] -> [i] : 0 <= i <= 10 }";
2489 map = isl_map_read_from_str(ctx, str);
2490 ai = isl_access_info_add_source(ai, map, 1, &depth);
2492 str = "{ [1,i,0] -> [5] : 0 <= i <= 10 }";
2493 map = isl_map_read_from_str(ctx, str);
2494 ai = isl_access_info_add_source(ai, map, 0, &depth);
2496 flow = isl_access_info_compute_flow(ai);
2497 dim = isl_space_alloc(ctx, 0, 3, 3);
2498 mm.must = isl_map_empty(isl_space_copy(dim));
2499 mm.may = isl_map_empty(dim);
2501 isl_flow_foreach(flow, collect_must_may, &mm);
2503 str = "{ [0,i,0] -> [2,i,0] : (0 <= i <= 4) or (6 <= i <= 10) }";
2504 assert(map_is_equal(mm.must, str));
2505 str = "{ [0,5,0] -> [2,5,0]; [1,i,0] -> [2,5,0] : 0 <= i <= 10 }";
2506 assert(map_is_equal(mm.may, str));
2508 isl_map_free(mm.must);
2509 isl_map_free(mm.may);
2510 isl_flow_free(flow);
2513 str = "{ [2,i,0] -> [i] : 0 <= i <= 10 }";
2514 map = isl_map_read_from_str(ctx, str);
2515 ai = isl_access_info_alloc(map, &depth, &common_space, 2);
2517 str = "{ [0,i,0] -> [i] : 0 <= i <= 10 }";
2518 map = isl_map_read_from_str(ctx, str);
2519 ai = isl_access_info_add_source(ai, map, 0, &depth);
2521 str = "{ [1,i,0] -> [5] : 0 <= i <= 10 }";
2522 map = isl_map_read_from_str(ctx, str);
2523 ai = isl_access_info_add_source(ai, map, 0, &depth);
2525 flow = isl_access_info_compute_flow(ai);
2526 dim = isl_space_alloc(ctx, 0, 3, 3);
2527 mm.must = isl_map_empty(isl_space_copy(dim));
2528 mm.may = isl_map_empty(dim);
2530 isl_flow_foreach(flow, collect_must_may, &mm);
2532 str = "{ [0,i,0] -> [2,i,0] : 0 <= i <= 10; "
2533 " [1,i,0] -> [2,5,0] : 0 <= i <= 10 }";
2534 assert(map_is_equal(mm.may, str));
2535 str = "{ [i,j,k] -> [l,m,n] : 1 = 0 }";
2536 assert(map_is_equal(mm.must, str));
2538 isl_map_free(mm.must);
2539 isl_map_free(mm.may);
2540 isl_flow_free(flow);
2543 str = "{ [0,i,2] -> [i] : 0 <= i <= 10 }";
2544 map = isl_map_read_from_str(ctx, str);
2545 ai = isl_access_info_alloc(map, &depth, &common_space, 2);
2547 str = "{ [0,i,0] -> [i] : 0 <= i <= 10 }";
2548 map = isl_map_read_from_str(ctx, str);
2549 ai = isl_access_info_add_source(ai, map, 0, &depth);
2551 str = "{ [0,i,1] -> [5] : 0 <= i <= 10 }";
2552 map = isl_map_read_from_str(ctx, str);
2553 ai = isl_access_info_add_source(ai, map, 0, &depth);
2555 flow = isl_access_info_compute_flow(ai);
2556 dim = isl_space_alloc(ctx, 0, 3, 3);
2557 mm.must = isl_map_empty(isl_space_copy(dim));
2558 mm.may = isl_map_empty(dim);
2560 isl_flow_foreach(flow, collect_must_may, &mm);
2562 str = "{ [0,i,0] -> [0,i,2] : 0 <= i <= 10; "
2563 " [0,i,1] -> [0,5,2] : 0 <= i <= 5 }";
2564 assert(map_is_equal(mm.may, str));
2565 str = "{ [i,j,k] -> [l,m,n] : 1 = 0 }";
2566 assert(map_is_equal(mm.must, str));
2568 isl_map_free(mm.must);
2569 isl_map_free(mm.may);
2570 isl_flow_free(flow);
2573 str = "{ [0,i,1] -> [i] : 0 <= i <= 10 }";
2574 map = isl_map_read_from_str(ctx, str);
2575 ai = isl_access_info_alloc(map, &depth, &common_space, 2);
2577 str = "{ [0,i,0] -> [i] : 0 <= i <= 10 }";
2578 map = isl_map_read_from_str(ctx, str);
2579 ai = isl_access_info_add_source(ai, map, 0, &depth);
2581 str = "{ [0,i,2] -> [5] : 0 <= i <= 10 }";
2582 map = isl_map_read_from_str(ctx, str);
2583 ai = isl_access_info_add_source(ai, map, 0, &depth);
2585 flow = isl_access_info_compute_flow(ai);
2586 dim = isl_space_alloc(ctx, 0, 3, 3);
2587 mm.must = isl_map_empty(isl_space_copy(dim));
2588 mm.may = isl_map_empty(dim);
2590 isl_flow_foreach(flow, collect_must_may, &mm);
2592 str = "{ [0,i,0] -> [0,i,1] : 0 <= i <= 10; "
2593 " [0,i,2] -> [0,5,1] : 0 <= i <= 4 }";
2594 assert(map_is_equal(mm.may, str));
2595 str = "{ [i,j,k] -> [l,m,n] : 1 = 0 }";
2596 assert(map_is_equal(mm.must, str));
2598 isl_map_free(mm.must);
2599 isl_map_free(mm.may);
2600 isl_flow_free(flow);
2603 depth = 5;
2605 str = "{ [1,i,0,0,0] -> [i,j] : 0 <= i <= 10 and 0 <= j <= 10 }";
2606 map = isl_map_read_from_str(ctx, str);
2607 ai = isl_access_info_alloc(map, &depth, &common_space, 1);
2609 str = "{ [0,i,0,j,0] -> [i,j] : 0 <= i <= 10 and 0 <= j <= 10 }";
2610 map = isl_map_read_from_str(ctx, str);
2611 ai = isl_access_info_add_source(ai, map, 1, &depth);
2613 flow = isl_access_info_compute_flow(ai);
2614 dim = isl_space_alloc(ctx, 0, 5, 5);
2615 mm.must = isl_map_empty(isl_space_copy(dim));
2616 mm.may = isl_map_empty(dim);
2618 isl_flow_foreach(flow, collect_must_may, &mm);
2620 str = "{ [0,i,0,j,0] -> [1,i,0,0,0] : 0 <= i,j <= 10 }";
2621 assert(map_is_equal(mm.must, str));
2622 str = "{ [0,0,0,0,0] -> [0,0,0,0,0] : 1 = 0 }";
2623 assert(map_is_equal(mm.may, str));
2625 isl_map_free(mm.must);
2626 isl_map_free(mm.may);
2627 isl_flow_free(flow);
2629 return 0;
2632 /* Check that the dependence analysis proceeds without errors.
2633 * Earlier versions of isl would break down during the analysis
2634 * due to the use of the wrong spaces.
2636 static int test_flow(isl_ctx *ctx)
2638 const char *str;
2639 isl_union_map *access, *schedule;
2640 isl_union_map *must_dep, *may_dep;
2641 int r;
2643 str = "{ S0[j] -> i[]; S1[j,i] -> i[]; S2[] -> i[]; S3[] -> i[] }";
2644 access = isl_union_map_read_from_str(ctx, str);
2645 str = "{ S0[j] -> [0,j,0,0] : 0 <= j < 10; "
2646 "S1[j,i] -> [0,j,1,i] : 0 <= j < i < 10; "
2647 "S2[] -> [1,0,0,0]; "
2648 "S3[] -> [-1,0,0,0] }";
2649 schedule = isl_union_map_read_from_str(ctx, str);
2650 r = isl_union_map_compute_flow(access, isl_union_map_copy(access),
2651 isl_union_map_copy(access), schedule,
2652 &must_dep, &may_dep, NULL, NULL);
2653 isl_union_map_free(may_dep);
2654 isl_union_map_free(must_dep);
2656 return r;
2659 struct {
2660 const char *map;
2661 int sv;
2662 } sv_tests[] = {
2663 { "[N] -> { [i] -> [f] : 0 <= i <= N and 0 <= i - 10 f <= 9 }", 1 },
2664 { "[N] -> { [i] -> [f] : 0 <= i <= N and 0 <= i - 10 f <= 10 }", 0 },
2665 { "{ [i] -> [3*floor(i/2) + 5*floor(i/3)] }", 1 },
2666 { "{ S1[i] -> [i] : 0 <= i <= 9; S2[i] -> [i] : 0 <= i <= 9 }", 1 },
2667 { "{ [i] -> S1[i] : 0 <= i <= 9; [i] -> S2[i] : 0 <= i <= 9 }", 0 },
2668 { "{ A[i] -> [i]; B[i] -> [i]; B[i] -> [i + 1] }", 0 },
2669 { "{ A[i] -> [i]; B[i] -> [i] : i < 0; B[i] -> [i + 1] : i > 0 }", 1 },
2670 { "{ A[i] -> [i]; B[i] -> A[i] : i < 0; B[i] -> [i + 1] : i > 0 }", 1 },
2671 { "{ A[i] -> [i]; B[i] -> [j] : i - 1 <= j <= i }", 0 },
2674 int test_sv(isl_ctx *ctx)
2676 isl_union_map *umap;
2677 int i;
2678 int sv;
2680 for (i = 0; i < ARRAY_SIZE(sv_tests); ++i) {
2681 umap = isl_union_map_read_from_str(ctx, sv_tests[i].map);
2682 sv = isl_union_map_is_single_valued(umap);
2683 isl_union_map_free(umap);
2684 if (sv < 0)
2685 return -1;
2686 if (sv_tests[i].sv && !sv)
2687 isl_die(ctx, isl_error_internal,
2688 "map not detected as single valued", return -1);
2689 if (!sv_tests[i].sv && sv)
2690 isl_die(ctx, isl_error_internal,
2691 "map detected as single valued", return -1);
2694 return 0;
2697 struct {
2698 const char *str;
2699 int bijective;
2700 } bijective_tests[] = {
2701 { "[N,M]->{[i,j] -> [i]}", 0 },
2702 { "[N,M]->{[i,j] -> [i] : j=i}", 1 },
2703 { "[N,M]->{[i,j] -> [i] : j=0}", 1 },
2704 { "[N,M]->{[i,j] -> [i] : j=N}", 1 },
2705 { "[N,M]->{[i,j] -> [j,i]}", 1 },
2706 { "[N,M]->{[i,j] -> [i+j]}", 0 },
2707 { "[N,M]->{[i,j] -> []}", 0 },
2708 { "[N,M]->{[i,j] -> [i,j,N]}", 1 },
2709 { "[N,M]->{[i,j] -> [2i]}", 0 },
2710 { "[N,M]->{[i,j] -> [i,i]}", 0 },
2711 { "[N,M]->{[i,j] -> [2i,i]}", 0 },
2712 { "[N,M]->{[i,j] -> [2i,j]}", 1 },
2713 { "[N,M]->{[i,j] -> [x,y] : 2x=i & y =j}", 1 },
2716 static int test_bijective(struct isl_ctx *ctx)
2718 isl_map *map;
2719 int i;
2720 int bijective;
2722 for (i = 0; i < ARRAY_SIZE(bijective_tests); ++i) {
2723 map = isl_map_read_from_str(ctx, bijective_tests[i].str);
2724 bijective = isl_map_is_bijective(map);
2725 isl_map_free(map);
2726 if (bijective < 0)
2727 return -1;
2728 if (bijective_tests[i].bijective && !bijective)
2729 isl_die(ctx, isl_error_internal,
2730 "map not detected as bijective", return -1);
2731 if (!bijective_tests[i].bijective && bijective)
2732 isl_die(ctx, isl_error_internal,
2733 "map detected as bijective", return -1);
2736 return 0;
2739 /* Inputs for isl_pw_qpolynomial_gist tests.
2740 * "pwqp" is the input, "set" is the context and "gist" is the expected result.
2742 struct {
2743 const char *pwqp;
2744 const char *set;
2745 const char *gist;
2746 } pwqp_gist_tests[] = {
2747 { "{ [i] -> i }", "{ [k] : exists a : k = 2a }", "{ [i] -> i }" },
2748 { "{ [i] -> i + [ (i + [i/3])/2 ] }", "{ [10] }", "{ [i] -> 16 }" },
2749 { "{ [i] -> ([(i)/2]) }", "{ [k] : exists a : k = 2a+1 }",
2750 "{ [i] -> -1/2 + 1/2 * i }" },
2751 { "{ [i] -> i^2 : i != 0 }", "{ [i] : i != 0 }", "{ [i] -> i^2 }" },
2754 static int test_pwqp(struct isl_ctx *ctx)
2756 int i;
2757 const char *str;
2758 isl_set *set;
2759 isl_pw_qpolynomial *pwqp1, *pwqp2;
2760 int equal;
2762 str = "{ [i,j,k] -> 1 + 9 * [i/5] + 7 * [j/11] + 4 * [k/13] }";
2763 pwqp1 = isl_pw_qpolynomial_read_from_str(ctx, str);
2765 pwqp1 = isl_pw_qpolynomial_move_dims(pwqp1, isl_dim_param, 0,
2766 isl_dim_in, 1, 1);
2768 str = "[j] -> { [i,k] -> 1 + 9 * [i/5] + 7 * [j/11] + 4 * [k/13] }";
2769 pwqp2 = isl_pw_qpolynomial_read_from_str(ctx, str);
2771 pwqp1 = isl_pw_qpolynomial_sub(pwqp1, pwqp2);
2773 assert(isl_pw_qpolynomial_is_zero(pwqp1));
2775 isl_pw_qpolynomial_free(pwqp1);
2777 for (i = 0; i < ARRAY_SIZE(pwqp_gist_tests); ++i) {
2778 str = pwqp_gist_tests[i].pwqp;
2779 pwqp1 = isl_pw_qpolynomial_read_from_str(ctx, str);
2780 str = pwqp_gist_tests[i].set;
2781 set = isl_set_read_from_str(ctx, str);
2782 pwqp1 = isl_pw_qpolynomial_gist(pwqp1, set);
2783 str = pwqp_gist_tests[i].gist;
2784 pwqp2 = isl_pw_qpolynomial_read_from_str(ctx, str);
2785 pwqp1 = isl_pw_qpolynomial_sub(pwqp1, pwqp2);
2786 equal = isl_pw_qpolynomial_is_zero(pwqp1);
2787 isl_pw_qpolynomial_free(pwqp1);
2789 if (equal < 0)
2790 return -1;
2791 if (!equal)
2792 isl_die(ctx, isl_error_unknown,
2793 "unexpected result", return -1);
2796 str = "{ [i] -> ([([i/2] + [i/2])/5]) }";
2797 pwqp1 = isl_pw_qpolynomial_read_from_str(ctx, str);
2798 str = "{ [i] -> ([(2 * [i/2])/5]) }";
2799 pwqp2 = isl_pw_qpolynomial_read_from_str(ctx, str);
2801 pwqp1 = isl_pw_qpolynomial_sub(pwqp1, pwqp2);
2803 assert(isl_pw_qpolynomial_is_zero(pwqp1));
2805 isl_pw_qpolynomial_free(pwqp1);
2807 str = "{ [x] -> ([x/2] + [(x+1)/2]) }";
2808 pwqp1 = isl_pw_qpolynomial_read_from_str(ctx, str);
2809 str = "{ [x] -> x }";
2810 pwqp2 = isl_pw_qpolynomial_read_from_str(ctx, str);
2812 pwqp1 = isl_pw_qpolynomial_sub(pwqp1, pwqp2);
2814 assert(isl_pw_qpolynomial_is_zero(pwqp1));
2816 isl_pw_qpolynomial_free(pwqp1);
2818 str = "{ [i] -> ([i/2]) : i >= 0; [i] -> ([i/3]) : i < 0 }";
2819 pwqp1 = isl_pw_qpolynomial_read_from_str(ctx, str);
2820 pwqp2 = isl_pw_qpolynomial_read_from_str(ctx, str);
2821 pwqp1 = isl_pw_qpolynomial_coalesce(pwqp1);
2822 pwqp1 = isl_pw_qpolynomial_sub(pwqp1, pwqp2);
2823 assert(isl_pw_qpolynomial_is_zero(pwqp1));
2824 isl_pw_qpolynomial_free(pwqp1);
2826 str = "{ [a,b,a] -> (([(2*[a/3]+b)/5]) * ([(2*[a/3]+b)/5])) }";
2827 pwqp2 = isl_pw_qpolynomial_read_from_str(ctx, str);
2828 str = "{ [a,b,c] -> (([(2*[a/3]+b)/5]) * ([(2*[c/3]+b)/5])) }";
2829 pwqp1 = isl_pw_qpolynomial_read_from_str(ctx, str);
2830 set = isl_set_read_from_str(ctx, "{ [a,b,a] }");
2831 pwqp1 = isl_pw_qpolynomial_intersect_domain(pwqp1, set);
2832 equal = isl_pw_qpolynomial_plain_is_equal(pwqp1, pwqp2);
2833 isl_pw_qpolynomial_free(pwqp1);
2834 isl_pw_qpolynomial_free(pwqp2);
2835 if (equal < 0)
2836 return -1;
2837 if (!equal)
2838 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
2840 str = "{ [a,b,c] -> (([(2*[a/3]+1)/5]) * ([(2*[c/3]+1)/5])) : b = 1 }";
2841 pwqp2 = isl_pw_qpolynomial_read_from_str(ctx, str);
2842 str = "{ [a,b,c] -> (([(2*[a/3]+b)/5]) * ([(2*[c/3]+b)/5])) }";
2843 pwqp1 = isl_pw_qpolynomial_read_from_str(ctx, str);
2844 pwqp1 = isl_pw_qpolynomial_fix_val(pwqp1, isl_dim_set, 1,
2845 isl_val_one(ctx));
2846 equal = isl_pw_qpolynomial_plain_is_equal(pwqp1, pwqp2);
2847 isl_pw_qpolynomial_free(pwqp1);
2848 isl_pw_qpolynomial_free(pwqp2);
2849 if (equal < 0)
2850 return -1;
2851 if (!equal)
2852 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
2854 return 0;
2857 static int test_split_periods(isl_ctx *ctx)
2859 const char *str;
2860 isl_pw_qpolynomial *pwqp;
2862 str = "{ [U,V] -> 1/3 * U + 2/3 * V - [(U + 2V)/3] + [U/2] : "
2863 "U + 2V + 3 >= 0 and - U -2V >= 0 and - U + 10 >= 0 and "
2864 "U >= 0; [U,V] -> U^2 : U >= 100 }";
2865 pwqp = isl_pw_qpolynomial_read_from_str(ctx, str);
2867 pwqp = isl_pw_qpolynomial_split_periods(pwqp, 2);
2869 isl_pw_qpolynomial_free(pwqp);
2871 if (!pwqp)
2872 return -1;
2874 return 0;
2877 static int test_union(isl_ctx *ctx)
2879 const char *str;
2880 isl_union_set *uset1, *uset2;
2881 isl_union_map *umap1, *umap2;
2882 int equal;
2884 str = "{ [i] : 0 <= i <= 1 }";
2885 uset1 = isl_union_set_read_from_str(ctx, str);
2886 str = "{ [1] -> [0] }";
2887 umap1 = isl_union_map_read_from_str(ctx, str);
2889 umap2 = isl_union_set_lex_gt_union_set(isl_union_set_copy(uset1), uset1);
2890 equal = isl_union_map_is_equal(umap1, umap2);
2892 isl_union_map_free(umap1);
2893 isl_union_map_free(umap2);
2895 if (equal < 0)
2896 return -1;
2897 if (!equal)
2898 isl_die(ctx, isl_error_unknown, "union maps not equal",
2899 return -1);
2901 str = "{ A[i] -> B[i]; B[i] -> C[i]; A[0] -> C[1] }";
2902 umap1 = isl_union_map_read_from_str(ctx, str);
2903 str = "{ A[i]; B[i] }";
2904 uset1 = isl_union_set_read_from_str(ctx, str);
2906 uset2 = isl_union_map_domain(umap1);
2908 equal = isl_union_set_is_equal(uset1, uset2);
2910 isl_union_set_free(uset1);
2911 isl_union_set_free(uset2);
2913 if (equal < 0)
2914 return -1;
2915 if (!equal)
2916 isl_die(ctx, isl_error_unknown, "union sets not equal",
2917 return -1);
2919 return 0;
2922 /* Check that computing a bound of a non-zero polynomial over an unbounded
2923 * domain does not produce a rational value.
2924 * In particular, check that the upper bound is infinity.
2926 static int test_bound_unbounded_domain(isl_ctx *ctx)
2928 const char *str;
2929 isl_pw_qpolynomial *pwqp;
2930 isl_pw_qpolynomial_fold *pwf, *pwf2;
2931 isl_bool equal;
2933 str = "{ [m,n] -> -m * n }";
2934 pwqp = isl_pw_qpolynomial_read_from_str(ctx, str);
2935 pwf = isl_pw_qpolynomial_bound(pwqp, isl_fold_max, NULL);
2936 str = "{ infty }";
2937 pwqp = isl_pw_qpolynomial_read_from_str(ctx, str);
2938 pwf2 = isl_pw_qpolynomial_bound(pwqp, isl_fold_max, NULL);
2939 equal = isl_pw_qpolynomial_fold_plain_is_equal(pwf, pwf2);
2940 isl_pw_qpolynomial_fold_free(pwf);
2941 isl_pw_qpolynomial_fold_free(pwf2);
2943 if (equal < 0)
2944 return -1;
2945 if (!equal)
2946 isl_die(ctx, isl_error_unknown,
2947 "expecting infinite polynomial bound", return -1);
2949 return 0;
2952 static int test_bound(isl_ctx *ctx)
2954 const char *str;
2955 unsigned dim;
2956 isl_pw_qpolynomial *pwqp;
2957 isl_pw_qpolynomial_fold *pwf;
2959 if (test_bound_unbounded_domain(ctx) < 0)
2960 return -1;
2962 str = "{ [[a, b, c, d] -> [e]] -> 0 }";
2963 pwqp = isl_pw_qpolynomial_read_from_str(ctx, str);
2964 pwf = isl_pw_qpolynomial_bound(pwqp, isl_fold_max, NULL);
2965 dim = isl_pw_qpolynomial_fold_dim(pwf, isl_dim_in);
2966 isl_pw_qpolynomial_fold_free(pwf);
2967 if (dim != 4)
2968 isl_die(ctx, isl_error_unknown, "unexpected input dimension",
2969 return -1);
2971 str = "{ [[x]->[x]] -> 1 : exists a : x = 2 a }";
2972 pwqp = isl_pw_qpolynomial_read_from_str(ctx, str);
2973 pwf = isl_pw_qpolynomial_bound(pwqp, isl_fold_max, NULL);
2974 dim = isl_pw_qpolynomial_fold_dim(pwf, isl_dim_in);
2975 isl_pw_qpolynomial_fold_free(pwf);
2976 if (dim != 1)
2977 isl_die(ctx, isl_error_unknown, "unexpected input dimension",
2978 return -1);
2980 return 0;
2983 static int test_lift(isl_ctx *ctx)
2985 const char *str;
2986 isl_basic_map *bmap;
2987 isl_basic_set *bset;
2989 str = "{ [i0] : exists e0 : i0 = 4e0 }";
2990 bset = isl_basic_set_read_from_str(ctx, str);
2991 bset = isl_basic_set_lift(bset);
2992 bmap = isl_basic_map_from_range(bset);
2993 bset = isl_basic_map_domain(bmap);
2994 isl_basic_set_free(bset);
2996 return 0;
2999 struct {
3000 const char *set1;
3001 const char *set2;
3002 int subset;
3003 } subset_tests[] = {
3004 { "{ [112, 0] }",
3005 "{ [i0, i1] : exists (e0 = [(i0 - i1)/16], e1: "
3006 "16e0 <= i0 - i1 and 16e0 >= -15 + i0 - i1 and "
3007 "16e1 <= i1 and 16e0 >= -i1 and 16e1 >= -i0 + i1) }", 1 },
3008 { "{ [65] }",
3009 "{ [i] : exists (e0 = [(255i)/256], e1 = [(127i + 65e0)/191], "
3010 "e2 = [(3i + 61e1)/65], e3 = [(52i + 12e2)/61], "
3011 "e4 = [(2i + e3)/3], e5 = [(4i + e3)/4], e6 = [(8i + e3)/12]: "
3012 "3e4 = 2i + e3 and 4e5 = 4i + e3 and 12e6 = 8i + e3 and "
3013 "i <= 255 and 64e3 >= -45 + 67i and i >= 0 and "
3014 "256e0 <= 255i and 256e0 >= -255 + 255i and "
3015 "191e1 <= 127i + 65e0 and 191e1 >= -190 + 127i + 65e0 and "
3016 "65e2 <= 3i + 61e1 and 65e2 >= -64 + 3i + 61e1 and "
3017 "61e3 <= 52i + 12e2 and 61e3 >= -60 + 52i + 12e2) }", 1 },
3018 { "{ [i] : 0 <= i <= 10 }", "{ rat: [i] : 0 <= i <= 10 }", 1 },
3019 { "{ rat: [i] : 0 <= i <= 10 }", "{ [i] : 0 <= i <= 10 }", 0 },
3020 { "{ rat: [0] }", "{ [i] : 0 <= i <= 10 }", 1 },
3021 { "{ rat: [(1)/2] }", "{ [i] : 0 <= i <= 10 }", 0 },
3022 { "{ [t, i] : (exists (e0 = [(2 + t)/4]: 4e0 <= 2 + t and "
3023 "4e0 >= -1 + t and i >= 57 and i <= 62 and "
3024 "4e0 <= 62 + t - i and 4e0 >= -61 + t + i and "
3025 "t >= 0 and t <= 511 and 4e0 <= -57 + t + i and "
3026 "4e0 >= 58 + t - i and i >= 58 + t and i >= 62 - t)) }",
3027 "{ [i0, i1] : (exists (e0 = [(4 + i0)/4]: 4e0 <= 62 + i0 - i1 and "
3028 "4e0 >= 1 + i0 and i0 >= 0 and i0 <= 511 and "
3029 "4e0 <= -57 + i0 + i1)) or "
3030 "(exists (e0 = [(2 + i0)/4]: 4e0 <= i0 and "
3031 "4e0 >= 58 + i0 - i1 and i0 >= 2 and i0 <= 511 and "
3032 "4e0 >= -61 + i0 + i1)) or "
3033 "(i1 <= 66 - i0 and i0 >= 2 and i1 >= 59 + i0) }", 1 },
3034 { "[a, b] -> { : a = 0 and b = -1 }", "[b, a] -> { : b >= -10 }", 1 },
3037 static int test_subset(isl_ctx *ctx)
3039 int i;
3040 isl_set *set1, *set2;
3041 int subset;
3043 for (i = 0; i < ARRAY_SIZE(subset_tests); ++i) {
3044 set1 = isl_set_read_from_str(ctx, subset_tests[i].set1);
3045 set2 = isl_set_read_from_str(ctx, subset_tests[i].set2);
3046 subset = isl_set_is_subset(set1, set2);
3047 isl_set_free(set1);
3048 isl_set_free(set2);
3049 if (subset < 0)
3050 return -1;
3051 if (subset != subset_tests[i].subset)
3052 isl_die(ctx, isl_error_unknown,
3053 "incorrect subset result", return -1);
3056 return 0;
3059 struct {
3060 const char *minuend;
3061 const char *subtrahend;
3062 const char *difference;
3063 } subtract_domain_tests[] = {
3064 { "{ A[i] -> B[i] }", "{ A[i] }", "{ }" },
3065 { "{ A[i] -> B[i] }", "{ B[i] }", "{ A[i] -> B[i] }" },
3066 { "{ A[i] -> B[i] }", "{ A[i] : i > 0 }", "{ A[i] -> B[i] : i <= 0 }" },
3069 static int test_subtract(isl_ctx *ctx)
3071 int i;
3072 isl_union_map *umap1, *umap2;
3073 isl_union_pw_multi_aff *upma1, *upma2;
3074 isl_union_set *uset;
3075 int equal;
3077 for (i = 0; i < ARRAY_SIZE(subtract_domain_tests); ++i) {
3078 umap1 = isl_union_map_read_from_str(ctx,
3079 subtract_domain_tests[i].minuend);
3080 uset = isl_union_set_read_from_str(ctx,
3081 subtract_domain_tests[i].subtrahend);
3082 umap2 = isl_union_map_read_from_str(ctx,
3083 subtract_domain_tests[i].difference);
3084 umap1 = isl_union_map_subtract_domain(umap1, uset);
3085 equal = isl_union_map_is_equal(umap1, umap2);
3086 isl_union_map_free(umap1);
3087 isl_union_map_free(umap2);
3088 if (equal < 0)
3089 return -1;
3090 if (!equal)
3091 isl_die(ctx, isl_error_unknown,
3092 "incorrect subtract domain result", return -1);
3095 for (i = 0; i < ARRAY_SIZE(subtract_domain_tests); ++i) {
3096 upma1 = isl_union_pw_multi_aff_read_from_str(ctx,
3097 subtract_domain_tests[i].minuend);
3098 uset = isl_union_set_read_from_str(ctx,
3099 subtract_domain_tests[i].subtrahend);
3100 upma2 = isl_union_pw_multi_aff_read_from_str(ctx,
3101 subtract_domain_tests[i].difference);
3102 upma1 = isl_union_pw_multi_aff_subtract_domain(upma1, uset);
3103 equal = isl_union_pw_multi_aff_plain_is_equal(upma1, upma2);
3104 isl_union_pw_multi_aff_free(upma1);
3105 isl_union_pw_multi_aff_free(upma2);
3106 if (equal < 0)
3107 return -1;
3108 if (!equal)
3109 isl_die(ctx, isl_error_unknown,
3110 "incorrect subtract domain result", return -1);
3113 return 0;
3116 /* Check that intersecting the empty basic set with another basic set
3117 * does not increase the number of constraints. In particular,
3118 * the empty basic set should maintain its canonical representation.
3120 static int test_intersect(isl_ctx *ctx)
3122 int n1, n2;
3123 isl_basic_set *bset1, *bset2;
3125 bset1 = isl_basic_set_read_from_str(ctx, "{ [a,b,c] : 1 = 0 }");
3126 bset2 = isl_basic_set_read_from_str(ctx, "{ [1,2,3] }");
3127 n1 = isl_basic_set_n_constraint(bset1);
3128 bset1 = isl_basic_set_intersect(bset1, bset2);
3129 n2 = isl_basic_set_n_constraint(bset1);
3130 isl_basic_set_free(bset1);
3131 if (!bset1)
3132 return -1;
3133 if (n1 != n2)
3134 isl_die(ctx, isl_error_unknown,
3135 "number of constraints of empty set changed",
3136 return -1);
3138 return 0;
3141 int test_factorize(isl_ctx *ctx)
3143 const char *str;
3144 isl_basic_set *bset;
3145 isl_factorizer *f;
3147 str = "{ [i0, i1, i2, i3, i4, i5, i6, i7] : 3i5 <= 2 - 2i0 and "
3148 "i0 >= -2 and i6 >= 1 + i3 and i7 >= 0 and 3i5 >= -2i0 and "
3149 "2i4 <= i2 and i6 >= 1 + 2i0 + 3i1 and i4 <= -1 and "
3150 "i6 >= 1 + 2i0 + 3i5 and i6 <= 2 + 2i0 + 3i5 and "
3151 "3i5 <= 2 - 2i0 - i2 + 3i4 and i6 <= 2 + 2i0 + 3i1 and "
3152 "i0 <= -1 and i7 <= i2 + i3 - 3i4 - i6 and "
3153 "3i5 >= -2i0 - i2 + 3i4 }";
3154 bset = isl_basic_set_read_from_str(ctx, str);
3155 f = isl_basic_set_factorizer(bset);
3156 isl_basic_set_free(bset);
3157 isl_factorizer_free(f);
3158 if (!f)
3159 isl_die(ctx, isl_error_unknown,
3160 "failed to construct factorizer", return -1);
3162 str = "{ [i0, i1, i2, i3, i4, i5, i6, i7, i8, i9, i10, i11, i12] : "
3163 "i12 <= 2 + i0 - i11 and 2i8 >= -i4 and i11 >= i1 and "
3164 "3i5 <= -i2 and 2i11 >= -i4 - 2i7 and i11 <= 3 + i0 + 3i9 and "
3165 "i11 <= -i4 - 2i7 and i12 >= -i10 and i2 >= -2 and "
3166 "i11 >= i1 + 3i10 and i11 >= 1 + i0 + 3i9 and "
3167 "i11 <= 1 - i4 - 2i8 and 6i6 <= 6 - i2 and 3i6 >= 1 - i2 and "
3168 "i11 <= 2 + i1 and i12 <= i4 + i11 and i12 >= i0 - i11 and "
3169 "3i5 >= -2 - i2 and i12 >= -1 + i4 + i11 and 3i3 <= 3 - i2 and "
3170 "9i6 <= 11 - i2 + 6i5 and 3i3 >= 1 - i2 and "
3171 "9i6 <= 5 - i2 + 6i3 and i12 <= -1 and i2 <= 0 }";
3172 bset = isl_basic_set_read_from_str(ctx, str);
3173 f = isl_basic_set_factorizer(bset);
3174 isl_basic_set_free(bset);
3175 isl_factorizer_free(f);
3176 if (!f)
3177 isl_die(ctx, isl_error_unknown,
3178 "failed to construct factorizer", return -1);
3180 return 0;
3183 static isl_stat check_injective(__isl_take isl_map *map, void *user)
3185 int *injective = user;
3187 *injective = isl_map_is_injective(map);
3188 isl_map_free(map);
3190 if (*injective < 0 || !*injective)
3191 return isl_stat_error;
3193 return isl_stat_ok;
3196 int test_one_schedule(isl_ctx *ctx, const char *d, const char *w,
3197 const char *r, const char *s, int tilable, int parallel)
3199 int i;
3200 isl_union_set *D;
3201 isl_union_map *W, *R, *S;
3202 isl_union_map *empty;
3203 isl_union_map *dep_raw, *dep_war, *dep_waw, *dep;
3204 isl_union_map *validity, *proximity, *coincidence;
3205 isl_union_map *schedule;
3206 isl_union_map *test;
3207 isl_union_set *delta;
3208 isl_union_set *domain;
3209 isl_set *delta_set;
3210 isl_set *slice;
3211 isl_set *origin;
3212 isl_schedule_constraints *sc;
3213 isl_schedule *sched;
3214 int is_nonneg, is_parallel, is_tilable, is_injection, is_complete;
3216 D = isl_union_set_read_from_str(ctx, d);
3217 W = isl_union_map_read_from_str(ctx, w);
3218 R = isl_union_map_read_from_str(ctx, r);
3219 S = isl_union_map_read_from_str(ctx, s);
3221 W = isl_union_map_intersect_domain(W, isl_union_set_copy(D));
3222 R = isl_union_map_intersect_domain(R, isl_union_set_copy(D));
3224 empty = isl_union_map_empty(isl_union_map_get_space(S));
3225 isl_union_map_compute_flow(isl_union_map_copy(R),
3226 isl_union_map_copy(W), empty,
3227 isl_union_map_copy(S),
3228 &dep_raw, NULL, NULL, NULL);
3229 isl_union_map_compute_flow(isl_union_map_copy(W),
3230 isl_union_map_copy(W),
3231 isl_union_map_copy(R),
3232 isl_union_map_copy(S),
3233 &dep_waw, &dep_war, NULL, NULL);
3235 dep = isl_union_map_union(dep_waw, dep_war);
3236 dep = isl_union_map_union(dep, dep_raw);
3237 validity = isl_union_map_copy(dep);
3238 coincidence = isl_union_map_copy(dep);
3239 proximity = isl_union_map_copy(dep);
3241 sc = isl_schedule_constraints_on_domain(isl_union_set_copy(D));
3242 sc = isl_schedule_constraints_set_validity(sc, validity);
3243 sc = isl_schedule_constraints_set_coincidence(sc, coincidence);
3244 sc = isl_schedule_constraints_set_proximity(sc, proximity);
3245 sched = isl_schedule_constraints_compute_schedule(sc);
3246 schedule = isl_schedule_get_map(sched);
3247 isl_schedule_free(sched);
3248 isl_union_map_free(W);
3249 isl_union_map_free(R);
3250 isl_union_map_free(S);
3252 is_injection = 1;
3253 isl_union_map_foreach_map(schedule, &check_injective, &is_injection);
3255 domain = isl_union_map_domain(isl_union_map_copy(schedule));
3256 is_complete = isl_union_set_is_subset(D, domain);
3257 isl_union_set_free(D);
3258 isl_union_set_free(domain);
3260 test = isl_union_map_reverse(isl_union_map_copy(schedule));
3261 test = isl_union_map_apply_range(test, dep);
3262 test = isl_union_map_apply_range(test, schedule);
3264 delta = isl_union_map_deltas(test);
3265 if (isl_union_set_n_set(delta) == 0) {
3266 is_tilable = 1;
3267 is_parallel = 1;
3268 is_nonneg = 1;
3269 isl_union_set_free(delta);
3270 } else {
3271 delta_set = isl_set_from_union_set(delta);
3273 slice = isl_set_universe(isl_set_get_space(delta_set));
3274 for (i = 0; i < tilable; ++i)
3275 slice = isl_set_lower_bound_si(slice, isl_dim_set, i, 0);
3276 is_tilable = isl_set_is_subset(delta_set, slice);
3277 isl_set_free(slice);
3279 slice = isl_set_universe(isl_set_get_space(delta_set));
3280 for (i = 0; i < parallel; ++i)
3281 slice = isl_set_fix_si(slice, isl_dim_set, i, 0);
3282 is_parallel = isl_set_is_subset(delta_set, slice);
3283 isl_set_free(slice);
3285 origin = isl_set_universe(isl_set_get_space(delta_set));
3286 for (i = 0; i < isl_set_dim(origin, isl_dim_set); ++i)
3287 origin = isl_set_fix_si(origin, isl_dim_set, i, 0);
3289 delta_set = isl_set_union(delta_set, isl_set_copy(origin));
3290 delta_set = isl_set_lexmin(delta_set);
3292 is_nonneg = isl_set_is_equal(delta_set, origin);
3294 isl_set_free(origin);
3295 isl_set_free(delta_set);
3298 if (is_nonneg < 0 || is_parallel < 0 || is_tilable < 0 ||
3299 is_injection < 0 || is_complete < 0)
3300 return -1;
3301 if (!is_complete)
3302 isl_die(ctx, isl_error_unknown,
3303 "generated schedule incomplete", return -1);
3304 if (!is_injection)
3305 isl_die(ctx, isl_error_unknown,
3306 "generated schedule not injective on each statement",
3307 return -1);
3308 if (!is_nonneg)
3309 isl_die(ctx, isl_error_unknown,
3310 "negative dependences in generated schedule",
3311 return -1);
3312 if (!is_tilable)
3313 isl_die(ctx, isl_error_unknown,
3314 "generated schedule not as tilable as expected",
3315 return -1);
3316 if (!is_parallel)
3317 isl_die(ctx, isl_error_unknown,
3318 "generated schedule not as parallel as expected",
3319 return -1);
3321 return 0;
3324 /* Compute a schedule for the given instance set, validity constraints,
3325 * proximity constraints and context and return a corresponding union map
3326 * representation.
3328 static __isl_give isl_union_map *compute_schedule_with_context(isl_ctx *ctx,
3329 const char *domain, const char *validity, const char *proximity,
3330 const char *context)
3332 isl_set *con;
3333 isl_union_set *dom;
3334 isl_union_map *dep;
3335 isl_union_map *prox;
3336 isl_schedule_constraints *sc;
3337 isl_schedule *schedule;
3338 isl_union_map *sched;
3340 con = isl_set_read_from_str(ctx, context);
3341 dom = isl_union_set_read_from_str(ctx, domain);
3342 dep = isl_union_map_read_from_str(ctx, validity);
3343 prox = isl_union_map_read_from_str(ctx, proximity);
3344 sc = isl_schedule_constraints_on_domain(dom);
3345 sc = isl_schedule_constraints_set_context(sc, con);
3346 sc = isl_schedule_constraints_set_validity(sc, dep);
3347 sc = isl_schedule_constraints_set_proximity(sc, prox);
3348 schedule = isl_schedule_constraints_compute_schedule(sc);
3349 sched = isl_schedule_get_map(schedule);
3350 isl_schedule_free(schedule);
3352 return sched;
3355 /* Compute a schedule for the given instance set, validity constraints and
3356 * proximity constraints and return a corresponding union map representation.
3358 static __isl_give isl_union_map *compute_schedule(isl_ctx *ctx,
3359 const char *domain, const char *validity, const char *proximity)
3361 return compute_schedule_with_context(ctx, domain, validity, proximity,
3362 "{ : }");
3365 /* Check that a schedule can be constructed on the given domain
3366 * with the given validity and proximity constraints.
3368 static int test_has_schedule(isl_ctx *ctx, const char *domain,
3369 const char *validity, const char *proximity)
3371 isl_union_map *sched;
3373 sched = compute_schedule(ctx, domain, validity, proximity);
3374 if (!sched)
3375 return -1;
3377 isl_union_map_free(sched);
3378 return 0;
3381 int test_special_schedule(isl_ctx *ctx, const char *domain,
3382 const char *validity, const char *proximity, const char *expected_sched)
3384 isl_union_map *sched1, *sched2;
3385 int equal;
3387 sched1 = compute_schedule(ctx, domain, validity, proximity);
3388 sched2 = isl_union_map_read_from_str(ctx, expected_sched);
3390 equal = isl_union_map_is_equal(sched1, sched2);
3391 isl_union_map_free(sched1);
3392 isl_union_map_free(sched2);
3394 if (equal < 0)
3395 return -1;
3396 if (!equal)
3397 isl_die(ctx, isl_error_unknown, "unexpected schedule",
3398 return -1);
3400 return 0;
3403 /* Check that the schedule map is properly padded, even after being
3404 * reconstructed from the band forest.
3406 static int test_padded_schedule(isl_ctx *ctx)
3408 const char *str;
3409 isl_union_set *D;
3410 isl_union_map *validity, *proximity;
3411 isl_schedule_constraints *sc;
3412 isl_schedule *sched;
3413 isl_union_map *map1, *map2;
3414 isl_band_list *list;
3415 int equal;
3417 str = "[N] -> { S0[i] : 0 <= i <= N; S1[i, j] : 0 <= i, j <= N }";
3418 D = isl_union_set_read_from_str(ctx, str);
3419 validity = isl_union_map_empty(isl_union_set_get_space(D));
3420 proximity = isl_union_map_copy(validity);
3421 sc = isl_schedule_constraints_on_domain(D);
3422 sc = isl_schedule_constraints_set_validity(sc, validity);
3423 sc = isl_schedule_constraints_set_proximity(sc, proximity);
3424 sched = isl_schedule_constraints_compute_schedule(sc);
3425 map1 = isl_schedule_get_map(sched);
3426 list = isl_schedule_get_band_forest(sched);
3427 isl_band_list_free(list);
3428 map2 = isl_schedule_get_map(sched);
3429 isl_schedule_free(sched);
3430 equal = isl_union_map_is_equal(map1, map2);
3431 isl_union_map_free(map1);
3432 isl_union_map_free(map2);
3434 if (equal < 0)
3435 return -1;
3436 if (!equal)
3437 isl_die(ctx, isl_error_unknown,
3438 "reconstructed schedule map not the same as original",
3439 return -1);
3441 return 0;
3444 /* Check that conditional validity constraints are also taken into
3445 * account across bands.
3446 * In particular, try to make sure that live ranges D[1,0]->C[2,1] and
3447 * D[2,0]->C[3,0] are not local in the outer band of the generated schedule
3448 * and then check that the adjacent order constraint C[2,1]->D[2,0]
3449 * is enforced by the rest of the schedule.
3451 static int test_special_conditional_schedule_constraints(isl_ctx *ctx)
3453 const char *str;
3454 isl_union_set *domain;
3455 isl_union_map *validity, *proximity, *condition;
3456 isl_union_map *sink, *source, *dep;
3457 isl_schedule_constraints *sc;
3458 isl_schedule *schedule;
3459 isl_union_access_info *access;
3460 isl_union_flow *flow;
3461 int empty;
3463 str = "[n] -> { C[k, i] : k <= -1 + n and i >= 0 and i <= -1 + k; "
3464 "A[k] : k >= 1 and k <= -1 + n; "
3465 "B[k, i] : k <= -1 + n and i >= 0 and i <= -1 + k; "
3466 "D[k, i] : k <= -1 + n and i >= 0 and i <= -1 + k }";
3467 domain = isl_union_set_read_from_str(ctx, str);
3468 sc = isl_schedule_constraints_on_domain(domain);
3469 str = "[n] -> { D[k, i] -> C[1 + k, k - i] : "
3470 "k <= -2 + n and i >= 1 and i <= -1 + k; "
3471 "D[k, i] -> C[1 + k, i] : "
3472 "k <= -2 + n and i >= 1 and i <= -1 + k; "
3473 "D[k, 0] -> C[1 + k, k] : k >= 1 and k <= -2 + n; "
3474 "D[k, 0] -> C[1 + k, 0] : k >= 1 and k <= -2 + n }";
3475 validity = isl_union_map_read_from_str(ctx, str);
3476 sc = isl_schedule_constraints_set_validity(sc, validity);
3477 str = "[n] -> { C[k, i] -> D[k, i] : "
3478 "0 <= i <= -1 + k and k <= -1 + n }";
3479 proximity = isl_union_map_read_from_str(ctx, str);
3480 sc = isl_schedule_constraints_set_proximity(sc, proximity);
3481 str = "[n] -> { [D[k, i] -> a[]] -> [C[1 + k, k - i] -> b[]] : "
3482 "i <= -1 + k and i >= 1 and k <= -2 + n; "
3483 "[B[k, i] -> c[]] -> [B[k, 1 + i] -> c[]] : "
3484 "k <= -1 + n and i >= 0 and i <= -2 + k }";
3485 condition = isl_union_map_read_from_str(ctx, str);
3486 str = "[n] -> { [B[k, i] -> e[]] -> [D[k, i] -> a[]] : "
3487 "i >= 0 and i <= -1 + k and k <= -1 + n; "
3488 "[C[k, i] -> b[]] -> [D[k', -1 + k - i] -> a[]] : "
3489 "i >= 0 and i <= -1 + k and k <= -1 + n and "
3490 "k' <= -1 + n and k' >= k - i and k' >= 1 + k; "
3491 "[C[k, i] -> b[]] -> [D[k, -1 + k - i] -> a[]] : "
3492 "i >= 0 and i <= -1 + k and k <= -1 + n; "
3493 "[B[k, i] -> c[]] -> [A[k'] -> d[]] : "
3494 "k <= -1 + n and i >= 0 and i <= -1 + k and "
3495 "k' >= 1 and k' <= -1 + n and k' >= 1 + k }";
3496 validity = isl_union_map_read_from_str(ctx, str);
3497 sc = isl_schedule_constraints_set_conditional_validity(sc, condition,
3498 validity);
3499 schedule = isl_schedule_constraints_compute_schedule(sc);
3500 str = "{ D[2,0] -> [] }";
3501 sink = isl_union_map_read_from_str(ctx, str);
3502 access = isl_union_access_info_from_sink(sink);
3503 str = "{ C[2,1] -> [] }";
3504 source = isl_union_map_read_from_str(ctx, str);
3505 access = isl_union_access_info_set_must_source(access, source);
3506 access = isl_union_access_info_set_schedule(access, schedule);
3507 flow = isl_union_access_info_compute_flow(access);
3508 dep = isl_union_flow_get_must_dependence(flow);
3509 isl_union_flow_free(flow);
3510 empty = isl_union_map_is_empty(dep);
3511 isl_union_map_free(dep);
3513 if (empty < 0)
3514 return -1;
3515 if (empty)
3516 isl_die(ctx, isl_error_unknown,
3517 "conditional validity not respected", return -1);
3519 return 0;
3522 /* Input for testing of schedule construction based on
3523 * conditional constraints.
3525 * domain is the iteration domain
3526 * flow are the flow dependences, which determine the validity and
3527 * proximity constraints
3528 * condition are the conditions on the conditional validity constraints
3529 * conditional_validity are the conditional validity constraints
3530 * outer_band_n is the expected number of members in the outer band
3532 struct {
3533 const char *domain;
3534 const char *flow;
3535 const char *condition;
3536 const char *conditional_validity;
3537 int outer_band_n;
3538 } live_range_tests[] = {
3539 /* Contrived example that illustrates that we need to keep
3540 * track of tagged condition dependences and
3541 * tagged conditional validity dependences
3542 * in isl_sched_edge separately.
3543 * In particular, the conditional validity constraints on A
3544 * cannot be satisfied,
3545 * but they can be ignored because there are no corresponding
3546 * condition constraints. However, we do have an additional
3547 * conditional validity constraint that maps to the same
3548 * dependence relation
3549 * as the condition constraint on B. If we did not make a distinction
3550 * between tagged condition and tagged conditional validity
3551 * dependences, then we
3552 * could end up treating this shared dependence as an condition
3553 * constraint on A, forcing a localization of the conditions,
3554 * which is impossible.
3556 { "{ S[i] : 0 <= 1 < 100; T[i] : 0 <= 1 < 100 }",
3557 "{ S[i] -> S[i+1] : 0 <= i < 99 }",
3558 "{ [S[i] -> B[]] -> [S[i+1] -> B[]] : 0 <= i < 99 }",
3559 "{ [S[i] -> A[]] -> [T[i'] -> A[]] : 0 <= i', i < 100 and i != i';"
3560 "[T[i] -> A[]] -> [S[i'] -> A[]] : 0 <= i', i < 100 and i != i';"
3561 "[S[i] -> A[]] -> [S[i+1] -> A[]] : 0 <= i < 99 }",
3564 /* TACO 2013 Fig. 7 */
3565 { "[n] -> { S1[i,j] : 0 <= i,j < n; S2[i,j] : 0 <= i,j < n }",
3566 "[n] -> { S1[i,j] -> S2[i,j] : 0 <= i,j < n;"
3567 "S2[i,j] -> S2[i,j+1] : 0 <= i < n and 0 <= j < n - 1 }",
3568 "[n] -> { [S1[i,j] -> t[]] -> [S2[i,j] -> t[]] : 0 <= i,j < n;"
3569 "[S2[i,j] -> x1[]] -> [S2[i,j+1] -> x1[]] : "
3570 "0 <= i < n and 0 <= j < n - 1 }",
3571 "[n] -> { [S2[i,j] -> t[]] -> [S1[i,j'] -> t[]] : "
3572 "0 <= i < n and 0 <= j < j' < n;"
3573 "[S2[i,j] -> t[]] -> [S1[i',j'] -> t[]] : "
3574 "0 <= i < i' < n and 0 <= j,j' < n;"
3575 "[S2[i,j] -> x1[]] -> [S2[i,j'] -> x1[]] : "
3576 "0 <= i,j,j' < n and j < j' }",
3579 /* TACO 2013 Fig. 7, without tags */
3580 { "[n] -> { S1[i,j] : 0 <= i,j < n; S2[i,j] : 0 <= i,j < n }",
3581 "[n] -> { S1[i,j] -> S2[i,j] : 0 <= i,j < n;"
3582 "S2[i,j] -> S2[i,j+1] : 0 <= i < n and 0 <= j < n - 1 }",
3583 "[n] -> { S1[i,j] -> S2[i,j] : 0 <= i,j < n;"
3584 "S2[i,j] -> S2[i,j+1] : 0 <= i < n and 0 <= j < n - 1 }",
3585 "[n] -> { S2[i,j] -> S1[i,j'] : 0 <= i < n and 0 <= j < j' < n;"
3586 "S2[i,j] -> S1[i',j'] : 0 <= i < i' < n and 0 <= j,j' < n;"
3587 "S2[i,j] -> S2[i,j'] : 0 <= i,j,j' < n and j < j' }",
3590 /* TACO 2013 Fig. 12 */
3591 { "{ S1[i,0] : 0 <= i <= 1; S2[i,j] : 0 <= i <= 1 and 1 <= j <= 2;"
3592 "S3[i,3] : 0 <= i <= 1 }",
3593 "{ S1[i,0] -> S2[i,1] : 0 <= i <= 1;"
3594 "S2[i,1] -> S2[i,2] : 0 <= i <= 1;"
3595 "S2[i,2] -> S3[i,3] : 0 <= i <= 1 }",
3596 "{ [S1[i,0]->t[]] -> [S2[i,1]->t[]] : 0 <= i <= 1;"
3597 "[S2[i,1]->t[]] -> [S2[i,2]->t[]] : 0 <= i <= 1;"
3598 "[S2[i,2]->t[]] -> [S3[i,3]->t[]] : 0 <= i <= 1 }",
3599 "{ [S2[i,1]->t[]] -> [S2[i,2]->t[]] : 0 <= i <= 1;"
3600 "[S2[0,j]->t[]] -> [S2[1,j']->t[]] : 1 <= j,j' <= 2;"
3601 "[S2[0,j]->t[]] -> [S1[1,0]->t[]] : 1 <= j <= 2;"
3602 "[S3[0,3]->t[]] -> [S2[1,j]->t[]] : 1 <= j <= 2;"
3603 "[S3[0,3]->t[]] -> [S1[1,0]->t[]] }",
3608 /* Test schedule construction based on conditional constraints.
3609 * In particular, check the number of members in the outer band node
3610 * as an indication of whether tiling is possible or not.
3612 static int test_conditional_schedule_constraints(isl_ctx *ctx)
3614 int i;
3615 isl_union_set *domain;
3616 isl_union_map *condition;
3617 isl_union_map *flow;
3618 isl_union_map *validity;
3619 isl_schedule_constraints *sc;
3620 isl_schedule *schedule;
3621 isl_schedule_node *node;
3622 int n_member;
3624 if (test_special_conditional_schedule_constraints(ctx) < 0)
3625 return -1;
3627 for (i = 0; i < ARRAY_SIZE(live_range_tests); ++i) {
3628 domain = isl_union_set_read_from_str(ctx,
3629 live_range_tests[i].domain);
3630 flow = isl_union_map_read_from_str(ctx,
3631 live_range_tests[i].flow);
3632 condition = isl_union_map_read_from_str(ctx,
3633 live_range_tests[i].condition);
3634 validity = isl_union_map_read_from_str(ctx,
3635 live_range_tests[i].conditional_validity);
3636 sc = isl_schedule_constraints_on_domain(domain);
3637 sc = isl_schedule_constraints_set_validity(sc,
3638 isl_union_map_copy(flow));
3639 sc = isl_schedule_constraints_set_proximity(sc, flow);
3640 sc = isl_schedule_constraints_set_conditional_validity(sc,
3641 condition, validity);
3642 schedule = isl_schedule_constraints_compute_schedule(sc);
3643 node = isl_schedule_get_root(schedule);
3644 while (node &&
3645 isl_schedule_node_get_type(node) != isl_schedule_node_band)
3646 node = isl_schedule_node_first_child(node);
3647 n_member = isl_schedule_node_band_n_member(node);
3648 isl_schedule_node_free(node);
3649 isl_schedule_free(schedule);
3651 if (!schedule)
3652 return -1;
3653 if (n_member != live_range_tests[i].outer_band_n)
3654 isl_die(ctx, isl_error_unknown,
3655 "unexpected number of members in outer band",
3656 return -1);
3658 return 0;
3661 /* Check that the schedule computed for the given instance set and
3662 * dependence relation strongly satisfies the dependences.
3663 * In particular, check that no instance is scheduled before
3664 * or together with an instance on which it depends.
3665 * Earlier versions of isl would produce a schedule that
3666 * only weakly satisfies the dependences.
3668 static int test_strongly_satisfying_schedule(isl_ctx *ctx)
3670 const char *domain, *dep;
3671 isl_union_map *D, *schedule;
3672 isl_map *map, *ge;
3673 int empty;
3675 domain = "{ B[i0, i1] : 0 <= i0 <= 1 and 0 <= i1 <= 11; "
3676 "A[i0] : 0 <= i0 <= 1 }";
3677 dep = "{ B[i0, i1] -> B[i0, 1 + i1] : 0 <= i0 <= 1 and 0 <= i1 <= 10; "
3678 "B[0, 11] -> A[1]; A[i0] -> B[i0, 0] : 0 <= i0 <= 1 }";
3679 schedule = compute_schedule(ctx, domain, dep, dep);
3680 D = isl_union_map_read_from_str(ctx, dep);
3681 D = isl_union_map_apply_domain(D, isl_union_map_copy(schedule));
3682 D = isl_union_map_apply_range(D, schedule);
3683 map = isl_map_from_union_map(D);
3684 ge = isl_map_lex_ge(isl_space_domain(isl_map_get_space(map)));
3685 map = isl_map_intersect(map, ge);
3686 empty = isl_map_is_empty(map);
3687 isl_map_free(map);
3689 if (empty < 0)
3690 return -1;
3691 if (!empty)
3692 isl_die(ctx, isl_error_unknown,
3693 "dependences not strongly satisfied", return -1);
3695 return 0;
3698 /* Compute a schedule for input where the instance set constraints
3699 * conflict with the context constraints.
3700 * Earlier versions of isl did not properly handle this situation.
3702 static int test_conflicting_context_schedule(isl_ctx *ctx)
3704 isl_union_map *schedule;
3705 const char *domain, *context;
3707 domain = "[n] -> { A[] : n >= 0 }";
3708 context = "[n] -> { : n < 0 }";
3709 schedule = compute_schedule_with_context(ctx,
3710 domain, "{}", "{}", context);
3711 isl_union_map_free(schedule);
3713 if (!schedule)
3714 return -1;
3716 return 0;
3719 /* Check that the dependence carrying step is not confused by
3720 * a bound on the coefficient size.
3721 * In particular, force the scheduler to move to a dependence carrying
3722 * step by demanding outer coincidence and bound the size of
3723 * the coefficients. Earlier versions of isl would take this
3724 * bound into account while carrying dependences, breaking
3725 * fundamental assumptions.
3726 * On the other hand, the dependence carrying step now tries
3727 * to prevent loop coalescing by default, so check that indeed
3728 * no loop coalescing occurs by comparing the computed schedule
3729 * to the expected non-coalescing schedule.
3731 static int test_bounded_coefficients_schedule(isl_ctx *ctx)
3733 const char *domain, *dep;
3734 isl_union_set *I;
3735 isl_union_map *D;
3736 isl_schedule_constraints *sc;
3737 isl_schedule *schedule;
3738 isl_union_map *sched1, *sched2;
3739 isl_bool equal;
3741 domain = "{ C[i0, i1] : 2 <= i0 <= 3999 and 0 <= i1 <= -1 + i0 }";
3742 dep = "{ C[i0, i1] -> C[i0, 1 + i1] : i0 <= 3999 and i1 >= 0 and "
3743 "i1 <= -2 + i0; "
3744 "C[i0, -1 + i0] -> C[1 + i0, 0] : i0 <= 3998 and i0 >= 1 }";
3745 I = isl_union_set_read_from_str(ctx, domain);
3746 D = isl_union_map_read_from_str(ctx, dep);
3747 sc = isl_schedule_constraints_on_domain(I);
3748 sc = isl_schedule_constraints_set_validity(sc, isl_union_map_copy(D));
3749 sc = isl_schedule_constraints_set_coincidence(sc, D);
3750 isl_options_set_schedule_outer_coincidence(ctx, 1);
3751 isl_options_set_schedule_max_coefficient(ctx, 20);
3752 schedule = isl_schedule_constraints_compute_schedule(sc);
3753 isl_options_set_schedule_max_coefficient(ctx, -1);
3754 isl_options_set_schedule_outer_coincidence(ctx, 0);
3755 sched1 = isl_schedule_get_map(schedule);
3756 isl_schedule_free(schedule);
3758 sched2 = isl_union_map_read_from_str(ctx, "{ C[x,y] -> [x,y] }");
3759 equal = isl_union_map_is_equal(sched1, sched2);
3760 isl_union_map_free(sched1);
3761 isl_union_map_free(sched2);
3763 if (equal < 0)
3764 return -1;
3765 if (!equal)
3766 isl_die(ctx, isl_error_unknown,
3767 "unexpected schedule", return -1);
3769 return 0;
3772 /* Check that a set of schedule constraints that only allow for
3773 * a coalescing schedule still produces a schedule even if the user
3774 * request a non-coalescing schedule. Earlier versions of isl
3775 * would not handle this case correctly.
3777 static int test_coalescing_schedule(isl_ctx *ctx)
3779 const char *domain, *dep;
3780 isl_union_set *I;
3781 isl_union_map *D;
3782 isl_schedule_constraints *sc;
3783 isl_schedule *schedule;
3784 int treat_coalescing;
3786 domain = "{ S[a, b] : 0 <= a <= 1 and 0 <= b <= 1 }";
3787 dep = "{ S[a, b] -> S[a + b, 1 - b] }";
3788 I = isl_union_set_read_from_str(ctx, domain);
3789 D = isl_union_map_read_from_str(ctx, dep);
3790 sc = isl_schedule_constraints_on_domain(I);
3791 sc = isl_schedule_constraints_set_validity(sc, D);
3792 treat_coalescing = isl_options_get_schedule_treat_coalescing(ctx);
3793 isl_options_set_schedule_treat_coalescing(ctx, 1);
3794 schedule = isl_schedule_constraints_compute_schedule(sc);
3795 isl_options_set_schedule_treat_coalescing(ctx, treat_coalescing);
3796 isl_schedule_free(schedule);
3797 if (!schedule)
3798 return -1;
3799 return 0;
3802 int test_schedule(isl_ctx *ctx)
3804 const char *D, *W, *R, *V, *P, *S;
3805 int max_coincidence;
3806 int treat_coalescing;
3808 /* Handle resulting schedule with zero bands. */
3809 if (test_one_schedule(ctx, "{[]}", "{}", "{}", "{[] -> []}", 0, 0) < 0)
3810 return -1;
3812 /* Jacobi */
3813 D = "[T,N] -> { S1[t,i] : 1 <= t <= T and 2 <= i <= N - 1 }";
3814 W = "{ S1[t,i] -> a[t,i] }";
3815 R = "{ S1[t,i] -> a[t-1,i]; S1[t,i] -> a[t-1,i-1]; "
3816 "S1[t,i] -> a[t-1,i+1] }";
3817 S = "{ S1[t,i] -> [t,i] }";
3818 if (test_one_schedule(ctx, D, W, R, S, 2, 0) < 0)
3819 return -1;
3821 /* Fig. 5 of CC2008 */
3822 D = "[N] -> { S_0[i, j] : i >= 0 and i <= -1 + N and j >= 2 and "
3823 "j <= -1 + N }";
3824 W = "[N] -> { S_0[i, j] -> a[i, j] : i >= 0 and i <= -1 + N and "
3825 "j >= 2 and j <= -1 + N }";
3826 R = "[N] -> { S_0[i, j] -> a[j, i] : i >= 0 and i <= -1 + N and "
3827 "j >= 2 and j <= -1 + N; "
3828 "S_0[i, j] -> a[i, -1 + j] : i >= 0 and i <= -1 + N and "
3829 "j >= 2 and j <= -1 + N }";
3830 S = "[N] -> { S_0[i, j] -> [0, i, 0, j, 0] }";
3831 if (test_one_schedule(ctx, D, W, R, S, 2, 0) < 0)
3832 return -1;
3834 D = "{ S1[i] : 0 <= i <= 10; S2[i] : 0 <= i <= 9 }";
3835 W = "{ S1[i] -> a[i] }";
3836 R = "{ S2[i] -> a[i+1] }";
3837 S = "{ S1[i] -> [0,i]; S2[i] -> [1,i] }";
3838 if (test_one_schedule(ctx, D, W, R, S, 1, 1) < 0)
3839 return -1;
3841 D = "{ S1[i] : 0 <= i < 10; S2[i] : 0 <= i < 10 }";
3842 W = "{ S1[i] -> a[i] }";
3843 R = "{ S2[i] -> a[9-i] }";
3844 S = "{ S1[i] -> [0,i]; S2[i] -> [1,i] }";
3845 if (test_one_schedule(ctx, D, W, R, S, 1, 1) < 0)
3846 return -1;
3848 D = "[N] -> { S1[i] : 0 <= i < N; S2[i] : 0 <= i < N }";
3849 W = "{ S1[i] -> a[i] }";
3850 R = "[N] -> { S2[i] -> a[N-1-i] }";
3851 S = "{ S1[i] -> [0,i]; S2[i] -> [1,i] }";
3852 if (test_one_schedule(ctx, D, W, R, S, 1, 1) < 0)
3853 return -1;
3855 D = "{ S1[i] : 0 < i < 10; S2[i] : 0 <= i < 10 }";
3856 W = "{ S1[i] -> a[i]; S2[i] -> b[i] }";
3857 R = "{ S2[i] -> a[i]; S1[i] -> b[i-1] }";
3858 S = "{ S1[i] -> [i,0]; S2[i] -> [i,1] }";
3859 if (test_one_schedule(ctx, D, W, R, S, 0, 0) < 0)
3860 return -1;
3862 D = "[N] -> { S1[i] : 1 <= i <= N; S2[i,j] : 1 <= i,j <= N }";
3863 W = "{ S1[i] -> a[0,i]; S2[i,j] -> a[i,j] }";
3864 R = "{ S2[i,j] -> a[i-1,j] }";
3865 S = "{ S1[i] -> [0,i,0]; S2[i,j] -> [1,i,j] }";
3866 if (test_one_schedule(ctx, D, W, R, S, 2, 1) < 0)
3867 return -1;
3869 D = "[N] -> { S1[i] : 1 <= i <= N; S2[i,j] : 1 <= i,j <= N }";
3870 W = "{ S1[i] -> a[i,0]; S2[i,j] -> a[i,j] }";
3871 R = "{ S2[i,j] -> a[i,j-1] }";
3872 S = "{ S1[i] -> [0,i,0]; S2[i,j] -> [1,i,j] }";
3873 if (test_one_schedule(ctx, D, W, R, S, 2, 1) < 0)
3874 return -1;
3876 D = "[N] -> { S_0[]; S_1[i] : i >= 0 and i <= -1 + N; S_2[] }";
3877 W = "[N] -> { S_0[] -> a[0]; S_2[] -> b[0]; "
3878 "S_1[i] -> a[1 + i] : i >= 0 and i <= -1 + N }";
3879 R = "[N] -> { S_2[] -> a[N]; S_1[i] -> a[i] : i >= 0 and i <= -1 + N }";
3880 S = "[N] -> { S_1[i] -> [1, i, 0]; S_2[] -> [2, 0, 1]; "
3881 "S_0[] -> [0, 0, 0] }";
3882 if (test_one_schedule(ctx, D, W, R, S, 1, 0) < 0)
3883 return -1;
3884 ctx->opt->schedule_parametric = 0;
3885 if (test_one_schedule(ctx, D, W, R, S, 0, 0) < 0)
3886 return -1;
3887 ctx->opt->schedule_parametric = 1;
3889 D = "[N] -> { S1[i] : 1 <= i <= N; S2[i] : 1 <= i <= N; "
3890 "S3[i,j] : 1 <= i,j <= N; S4[i] : 1 <= i <= N }";
3891 W = "{ S1[i] -> a[i,0]; S2[i] -> a[0,i]; S3[i,j] -> a[i,j] }";
3892 R = "[N] -> { S3[i,j] -> a[i-1,j]; S3[i,j] -> a[i,j-1]; "
3893 "S4[i] -> a[i,N] }";
3894 S = "{ S1[i] -> [0,i,0]; S2[i] -> [1,i,0]; S3[i,j] -> [2,i,j]; "
3895 "S4[i] -> [4,i,0] }";
3896 max_coincidence = isl_options_get_schedule_maximize_coincidence(ctx);
3897 isl_options_set_schedule_maximize_coincidence(ctx, 0);
3898 if (test_one_schedule(ctx, D, W, R, S, 2, 0) < 0)
3899 return -1;
3900 isl_options_set_schedule_maximize_coincidence(ctx, max_coincidence);
3902 D = "[N] -> { S_0[i, j] : i >= 1 and i <= N and j >= 1 and j <= N }";
3903 W = "[N] -> { S_0[i, j] -> s[0] : i >= 1 and i <= N and j >= 1 and "
3904 "j <= N }";
3905 R = "[N] -> { S_0[i, j] -> s[0] : i >= 1 and i <= N and j >= 1 and "
3906 "j <= N; "
3907 "S_0[i, j] -> a[i, j] : i >= 1 and i <= N and j >= 1 and "
3908 "j <= N }";
3909 S = "[N] -> { S_0[i, j] -> [0, i, 0, j, 0] }";
3910 if (test_one_schedule(ctx, D, W, R, S, 0, 0) < 0)
3911 return -1;
3913 D = "[N] -> { S_0[t] : t >= 0 and t <= -1 + N; "
3914 " S_2[t] : t >= 0 and t <= -1 + N; "
3915 " S_1[t, i] : t >= 0 and t <= -1 + N and i >= 0 and "
3916 "i <= -1 + N }";
3917 W = "[N] -> { S_0[t] -> a[t, 0] : t >= 0 and t <= -1 + N; "
3918 " S_2[t] -> b[t] : t >= 0 and t <= -1 + N; "
3919 " S_1[t, i] -> a[t, 1 + i] : t >= 0 and t <= -1 + N and "
3920 "i >= 0 and i <= -1 + N }";
3921 R = "[N] -> { S_1[t, i] -> a[t, i] : t >= 0 and t <= -1 + N and "
3922 "i >= 0 and i <= -1 + N; "
3923 " S_2[t] -> a[t, N] : t >= 0 and t <= -1 + N }";
3924 S = "[N] -> { S_2[t] -> [0, t, 2]; S_1[t, i] -> [0, t, 1, i, 0]; "
3925 " S_0[t] -> [0, t, 0] }";
3927 if (test_one_schedule(ctx, D, W, R, S, 2, 1) < 0)
3928 return -1;
3929 ctx->opt->schedule_parametric = 0;
3930 if (test_one_schedule(ctx, D, W, R, S, 0, 0) < 0)
3931 return -1;
3932 ctx->opt->schedule_parametric = 1;
3934 D = "[N] -> { S1[i,j] : 0 <= i,j < N; S2[i,j] : 0 <= i,j < N }";
3935 S = "{ S1[i,j] -> [0,i,j]; S2[i,j] -> [1,i,j] }";
3936 if (test_one_schedule(ctx, D, "{}", "{}", S, 2, 2) < 0)
3937 return -1;
3939 D = "[M, N] -> { S_1[i] : i >= 0 and i <= -1 + M; "
3940 "S_0[i, j] : i >= 0 and i <= -1 + M and j >= 0 and j <= -1 + N }";
3941 W = "[M, N] -> { S_0[i, j] -> a[j] : i >= 0 and i <= -1 + M and "
3942 "j >= 0 and j <= -1 + N; "
3943 "S_1[i] -> b[0] : i >= 0 and i <= -1 + M }";
3944 R = "[M, N] -> { S_0[i, j] -> a[0] : i >= 0 and i <= -1 + M and "
3945 "j >= 0 and j <= -1 + N; "
3946 "S_1[i] -> b[0] : i >= 0 and i <= -1 + M }";
3947 S = "[M, N] -> { S_1[i] -> [1, i, 0]; S_0[i, j] -> [0, i, 0, j, 0] }";
3948 if (test_one_schedule(ctx, D, W, R, S, 0, 0) < 0)
3949 return -1;
3951 D = "{ S_0[i] : i >= 0 }";
3952 W = "{ S_0[i] -> a[i] : i >= 0 }";
3953 R = "{ S_0[i] -> a[0] : i >= 0 }";
3954 S = "{ S_0[i] -> [0, i, 0] }";
3955 if (test_one_schedule(ctx, D, W, R, S, 0, 0) < 0)
3956 return -1;
3958 D = "{ S_0[i] : i >= 0; S_1[i] : i >= 0 }";
3959 W = "{ S_0[i] -> a[i] : i >= 0; S_1[i] -> b[i] : i >= 0 }";
3960 R = "{ S_0[i] -> b[0] : i >= 0; S_1[i] -> a[i] : i >= 0 }";
3961 S = "{ S_1[i] -> [0, i, 1]; S_0[i] -> [0, i, 0] }";
3962 if (test_one_schedule(ctx, D, W, R, S, 0, 0) < 0)
3963 return -1;
3965 D = "[n] -> { S_0[j, k] : j <= -1 + n and j >= 0 and "
3966 "k <= -1 + n and k >= 0 }";
3967 W = "[n] -> { S_0[j, k] -> B[j] : j <= -1 + n and j >= 0 and " "k <= -1 + n and k >= 0 }";
3968 R = "[n] -> { S_0[j, k] -> B[j] : j <= -1 + n and j >= 0 and "
3969 "k <= -1 + n and k >= 0; "
3970 "S_0[j, k] -> B[k] : j <= -1 + n and j >= 0 and "
3971 "k <= -1 + n and k >= 0; "
3972 "S_0[j, k] -> A[k] : j <= -1 + n and j >= 0 and "
3973 "k <= -1 + n and k >= 0 }";
3974 S = "[n] -> { S_0[j, k] -> [2, j, k] }";
3975 ctx->opt->schedule_outer_coincidence = 1;
3976 if (test_one_schedule(ctx, D, W, R, S, 0, 0) < 0)
3977 return -1;
3978 ctx->opt->schedule_outer_coincidence = 0;
3980 D = "{Stmt_for_body24[i0, i1, i2, i3]:"
3981 "i0 >= 0 and i0 <= 1 and i1 >= 0 and i1 <= 6 and i2 >= 2 and "
3982 "i2 <= 6 - i1 and i3 >= 0 and i3 <= -1 + i2;"
3983 "Stmt_for_body24[i0, i1, 1, 0]:"
3984 "i0 >= 0 and i0 <= 1 and i1 >= 0 and i1 <= 5;"
3985 "Stmt_for_body7[i0, i1, i2]:"
3986 "i0 >= 0 and i0 <= 1 and i1 >= 0 and i1 <= 7 and i2 >= 0 and "
3987 "i2 <= 7 }";
3989 V = "{Stmt_for_body24[0, i1, i2, i3] -> "
3990 "Stmt_for_body24[1, i1, i2, i3]:"
3991 "i3 >= 0 and i3 <= -1 + i2 and i1 >= 0 and i2 <= 6 - i1 and "
3992 "i2 >= 1;"
3993 "Stmt_for_body24[0, i1, i2, i3] -> "
3994 "Stmt_for_body7[1, 1 + i1 + i3, 1 + i1 + i2]:"
3995 "i3 <= -1 + i2 and i2 <= 6 - i1 and i2 >= 1 and i1 >= 0 and "
3996 "i3 >= 0;"
3997 "Stmt_for_body24[0, i1, i2, i3] ->"
3998 "Stmt_for_body7[1, i1, 1 + i1 + i3]:"
3999 "i3 >= 0 and i2 <= 6 - i1 and i1 >= 0 and i3 <= -1 + i2;"
4000 "Stmt_for_body7[0, i1, i2] -> Stmt_for_body7[1, i1, i2]:"
4001 "(i2 >= 1 + i1 and i2 <= 6 and i1 >= 0 and i1 <= 4) or "
4002 "(i2 >= 3 and i2 <= 7 and i1 >= 1 and i2 >= 1 + i1) or "
4003 "(i2 >= 0 and i2 <= i1 and i2 >= -7 + i1 and i1 <= 7);"
4004 "Stmt_for_body7[0, i1, 1 + i1] -> Stmt_for_body7[1, i1, 1 + i1]:"
4005 "i1 <= 6 and i1 >= 0;"
4006 "Stmt_for_body7[0, 0, 7] -> Stmt_for_body7[1, 0, 7];"
4007 "Stmt_for_body7[i0, i1, i2] -> "
4008 "Stmt_for_body24[i0, o1, -1 + i2 - o1, -1 + i1 - o1]:"
4009 "i0 >= 0 and i0 <= 1 and o1 >= 0 and i2 >= 1 + i1 and "
4010 "o1 <= -2 + i2 and i2 <= 7 and o1 <= -1 + i1;"
4011 "Stmt_for_body7[i0, i1, i2] -> "
4012 "Stmt_for_body24[i0, i1, o2, -1 - i1 + i2]:"
4013 "i0 >= 0 and i0 <= 1 and i1 >= 0 and o2 >= -i1 + i2 and "
4014 "o2 >= 1 and o2 <= 6 - i1 and i2 >= 1 + i1 }";
4015 P = V;
4016 S = "{ Stmt_for_body24[i0, i1, i2, i3] -> "
4017 "[i0, 5i0 + i1, 6i0 + i1 + i2, 1 + 6i0 + i1 + i2 + i3, 1];"
4018 "Stmt_for_body7[i0, i1, i2] -> [0, 5i0, 6i0 + i1, 6i0 + i2, 0] }";
4020 treat_coalescing = isl_options_get_schedule_treat_coalescing(ctx);
4021 isl_options_set_schedule_treat_coalescing(ctx, 0);
4022 if (test_special_schedule(ctx, D, V, P, S) < 0)
4023 return -1;
4024 isl_options_set_schedule_treat_coalescing(ctx, treat_coalescing);
4026 D = "{ S_0[i, j] : i >= 1 and i <= 10 and j >= 1 and j <= 8 }";
4027 V = "{ S_0[i, j] -> S_0[i, 1 + j] : i >= 1 and i <= 10 and "
4028 "j >= 1 and j <= 7;"
4029 "S_0[i, j] -> S_0[1 + i, j] : i >= 1 and i <= 9 and "
4030 "j >= 1 and j <= 8 }";
4031 P = "{ }";
4032 S = "{ S_0[i, j] -> [i + j, j] }";
4033 ctx->opt->schedule_algorithm = ISL_SCHEDULE_ALGORITHM_FEAUTRIER;
4034 if (test_special_schedule(ctx, D, V, P, S) < 0)
4035 return -1;
4036 ctx->opt->schedule_algorithm = ISL_SCHEDULE_ALGORITHM_ISL;
4038 /* Fig. 1 from Feautrier's "Some Efficient Solutions..." pt. 2, 1992 */
4039 D = "[N] -> { S_0[i, j] : i >= 0 and i <= -1 + N and "
4040 "j >= 0 and j <= -1 + i }";
4041 V = "[N] -> { S_0[i, j] -> S_0[i, 1 + j] : j <= -2 + i and "
4042 "i <= -1 + N and j >= 0;"
4043 "S_0[i, -1 + i] -> S_0[1 + i, 0] : i >= 1 and "
4044 "i <= -2 + N }";
4045 P = "{ }";
4046 S = "{ S_0[i, j] -> [i, j] }";
4047 ctx->opt->schedule_algorithm = ISL_SCHEDULE_ALGORITHM_FEAUTRIER;
4048 if (test_special_schedule(ctx, D, V, P, S) < 0)
4049 return -1;
4050 ctx->opt->schedule_algorithm = ISL_SCHEDULE_ALGORITHM_ISL;
4052 /* Test both algorithms on a case with only proximity dependences. */
4053 D = "{ S[i,j] : 0 <= i <= 10 }";
4054 V = "{ }";
4055 P = "{ S[i,j] -> S[i+1,j] : 0 <= i,j <= 10 }";
4056 S = "{ S[i, j] -> [j, i] }";
4057 ctx->opt->schedule_algorithm = ISL_SCHEDULE_ALGORITHM_FEAUTRIER;
4058 if (test_special_schedule(ctx, D, V, P, S) < 0)
4059 return -1;
4060 ctx->opt->schedule_algorithm = ISL_SCHEDULE_ALGORITHM_ISL;
4061 if (test_special_schedule(ctx, D, V, P, S) < 0)
4062 return -1;
4064 D = "{ A[a]; B[] }";
4065 V = "{}";
4066 P = "{ A[a] -> B[] }";
4067 if (test_has_schedule(ctx, D, V, P) < 0)
4068 return -1;
4070 if (test_padded_schedule(ctx) < 0)
4071 return -1;
4073 /* Check that check for progress is not confused by rational
4074 * solution.
4076 D = "[N] -> { S0[i, j] : i >= 0 and i <= N and j >= 0 and j <= N }";
4077 V = "[N] -> { S0[i0, -1 + N] -> S0[2 + i0, 0] : i0 >= 0 and "
4078 "i0 <= -2 + N; "
4079 "S0[i0, i1] -> S0[i0, 1 + i1] : i0 >= 0 and "
4080 "i0 <= N and i1 >= 0 and i1 <= -1 + N }";
4081 P = "{}";
4082 ctx->opt->schedule_algorithm = ISL_SCHEDULE_ALGORITHM_FEAUTRIER;
4083 if (test_has_schedule(ctx, D, V, P) < 0)
4084 return -1;
4085 ctx->opt->schedule_algorithm = ISL_SCHEDULE_ALGORITHM_ISL;
4087 /* Check that we allow schedule rows that are only non-trivial
4088 * on some full-dimensional domains.
4090 D = "{ S1[j] : 0 <= j <= 1; S0[]; S2[k] : 0 <= k <= 1 }";
4091 V = "{ S0[] -> S1[j] : 0 <= j <= 1; S2[0] -> S0[];"
4092 "S1[j] -> S2[1] : 0 <= j <= 1 }";
4093 P = "{}";
4094 ctx->opt->schedule_algorithm = ISL_SCHEDULE_ALGORITHM_FEAUTRIER;
4095 if (test_has_schedule(ctx, D, V, P) < 0)
4096 return -1;
4097 ctx->opt->schedule_algorithm = ISL_SCHEDULE_ALGORITHM_ISL;
4099 if (test_conditional_schedule_constraints(ctx) < 0)
4100 return -1;
4102 if (test_strongly_satisfying_schedule(ctx) < 0)
4103 return -1;
4105 if (test_conflicting_context_schedule(ctx) < 0)
4106 return -1;
4108 if (test_bounded_coefficients_schedule(ctx) < 0)
4109 return -1;
4110 if (test_coalescing_schedule(ctx) < 0)
4111 return -1;
4113 return 0;
4116 /* Perform scheduling tests using the whole component scheduler.
4118 static int test_schedule_whole(isl_ctx *ctx)
4120 int whole;
4121 int r;
4123 whole = isl_options_get_schedule_whole_component(ctx);
4124 isl_options_set_schedule_whole_component(ctx, 1);
4125 r = test_schedule(ctx);
4126 isl_options_set_schedule_whole_component(ctx, whole);
4128 return r;
4131 /* Perform scheduling tests using the incremental scheduler.
4133 static int test_schedule_incremental(isl_ctx *ctx)
4135 int whole;
4136 int r;
4138 whole = isl_options_get_schedule_whole_component(ctx);
4139 isl_options_set_schedule_whole_component(ctx, 0);
4140 r = test_schedule(ctx);
4141 isl_options_set_schedule_whole_component(ctx, whole);
4143 return r;
4146 int test_plain_injective(isl_ctx *ctx, const char *str, int injective)
4148 isl_union_map *umap;
4149 int test;
4151 umap = isl_union_map_read_from_str(ctx, str);
4152 test = isl_union_map_plain_is_injective(umap);
4153 isl_union_map_free(umap);
4154 if (test < 0)
4155 return -1;
4156 if (test == injective)
4157 return 0;
4158 if (injective)
4159 isl_die(ctx, isl_error_unknown,
4160 "map not detected as injective", return -1);
4161 else
4162 isl_die(ctx, isl_error_unknown,
4163 "map detected as injective", return -1);
4166 int test_injective(isl_ctx *ctx)
4168 const char *str;
4170 if (test_plain_injective(ctx, "{S[i,j] -> A[0]; T[i,j] -> B[1]}", 0))
4171 return -1;
4172 if (test_plain_injective(ctx, "{S[] -> A[0]; T[] -> B[0]}", 1))
4173 return -1;
4174 if (test_plain_injective(ctx, "{S[] -> A[0]; T[] -> A[1]}", 1))
4175 return -1;
4176 if (test_plain_injective(ctx, "{S[] -> A[0]; T[] -> A[0]}", 0))
4177 return -1;
4178 if (test_plain_injective(ctx, "{S[i] -> A[i,0]; T[i] -> A[i,1]}", 1))
4179 return -1;
4180 if (test_plain_injective(ctx, "{S[i] -> A[i]; T[i] -> A[i]}", 0))
4181 return -1;
4182 if (test_plain_injective(ctx, "{S[] -> A[0,0]; T[] -> A[0,1]}", 1))
4183 return -1;
4184 if (test_plain_injective(ctx, "{S[] -> A[0,0]; T[] -> A[1,0]}", 1))
4185 return -1;
4187 str = "{S[] -> A[0,0]; T[] -> A[0,1]; U[] -> A[1,0]}";
4188 if (test_plain_injective(ctx, str, 1))
4189 return -1;
4190 str = "{S[] -> A[0,0]; T[] -> A[0,1]; U[] -> A[0,0]}";
4191 if (test_plain_injective(ctx, str, 0))
4192 return -1;
4194 return 0;
4197 static int aff_plain_is_equal(__isl_keep isl_aff *aff, const char *str)
4199 isl_aff *aff2;
4200 int equal;
4202 if (!aff)
4203 return -1;
4205 aff2 = isl_aff_read_from_str(isl_aff_get_ctx(aff), str);
4206 equal = isl_aff_plain_is_equal(aff, aff2);
4207 isl_aff_free(aff2);
4209 return equal;
4212 static int aff_check_plain_equal(__isl_keep isl_aff *aff, const char *str)
4214 int equal;
4216 equal = aff_plain_is_equal(aff, str);
4217 if (equal < 0)
4218 return -1;
4219 if (!equal)
4220 isl_die(isl_aff_get_ctx(aff), isl_error_unknown,
4221 "result not as expected", return -1);
4222 return 0;
4225 struct {
4226 __isl_give isl_aff *(*fn)(__isl_take isl_aff *aff1,
4227 __isl_take isl_aff *aff2);
4228 } aff_bin_op[] = {
4229 ['+'] = { &isl_aff_add },
4230 ['-'] = { &isl_aff_sub },
4231 ['*'] = { &isl_aff_mul },
4232 ['/'] = { &isl_aff_div },
4235 struct {
4236 const char *arg1;
4237 unsigned char op;
4238 const char *arg2;
4239 const char *res;
4240 } aff_bin_tests[] = {
4241 { "{ [i] -> [i] }", '+', "{ [i] -> [i] }",
4242 "{ [i] -> [2i] }" },
4243 { "{ [i] -> [i] }", '-', "{ [i] -> [i] }",
4244 "{ [i] -> [0] }" },
4245 { "{ [i] -> [i] }", '*', "{ [i] -> [2] }",
4246 "{ [i] -> [2i] }" },
4247 { "{ [i] -> [2] }", '*', "{ [i] -> [i] }",
4248 "{ [i] -> [2i] }" },
4249 { "{ [i] -> [i] }", '/', "{ [i] -> [2] }",
4250 "{ [i] -> [i/2] }" },
4251 { "{ [i] -> [2i] }", '/', "{ [i] -> [2] }",
4252 "{ [i] -> [i] }" },
4253 { "{ [i] -> [i] }", '+', "{ [i] -> [NaN] }",
4254 "{ [i] -> [NaN] }" },
4255 { "{ [i] -> [i] }", '-', "{ [i] -> [NaN] }",
4256 "{ [i] -> [NaN] }" },
4257 { "{ [i] -> [i] }", '*', "{ [i] -> [NaN] }",
4258 "{ [i] -> [NaN] }" },
4259 { "{ [i] -> [2] }", '*', "{ [i] -> [NaN] }",
4260 "{ [i] -> [NaN] }" },
4261 { "{ [i] -> [i] }", '/', "{ [i] -> [NaN] }",
4262 "{ [i] -> [NaN] }" },
4263 { "{ [i] -> [2] }", '/', "{ [i] -> [NaN] }",
4264 "{ [i] -> [NaN] }" },
4265 { "{ [i] -> [NaN] }", '+', "{ [i] -> [i] }",
4266 "{ [i] -> [NaN] }" },
4267 { "{ [i] -> [NaN] }", '-', "{ [i] -> [i] }",
4268 "{ [i] -> [NaN] }" },
4269 { "{ [i] -> [NaN] }", '*', "{ [i] -> [2] }",
4270 "{ [i] -> [NaN] }" },
4271 { "{ [i] -> [NaN] }", '*', "{ [i] -> [i] }",
4272 "{ [i] -> [NaN] }" },
4273 { "{ [i] -> [NaN] }", '/', "{ [i] -> [2] }",
4274 "{ [i] -> [NaN] }" },
4275 { "{ [i] -> [NaN] }", '/', "{ [i] -> [i] }",
4276 "{ [i] -> [NaN] }" },
4279 /* Perform some basic tests of binary operations on isl_aff objects.
4281 static int test_bin_aff(isl_ctx *ctx)
4283 int i;
4284 isl_aff *aff1, *aff2, *res;
4285 __isl_give isl_aff *(*fn)(__isl_take isl_aff *aff1,
4286 __isl_take isl_aff *aff2);
4287 int ok;
4289 for (i = 0; i < ARRAY_SIZE(aff_bin_tests); ++i) {
4290 aff1 = isl_aff_read_from_str(ctx, aff_bin_tests[i].arg1);
4291 aff2 = isl_aff_read_from_str(ctx, aff_bin_tests[i].arg2);
4292 res = isl_aff_read_from_str(ctx, aff_bin_tests[i].res);
4293 fn = aff_bin_op[aff_bin_tests[i].op].fn;
4294 aff1 = fn(aff1, aff2);
4295 if (isl_aff_is_nan(res))
4296 ok = isl_aff_is_nan(aff1);
4297 else
4298 ok = isl_aff_plain_is_equal(aff1, res);
4299 isl_aff_free(aff1);
4300 isl_aff_free(res);
4301 if (ok < 0)
4302 return -1;
4303 if (!ok)
4304 isl_die(ctx, isl_error_unknown,
4305 "unexpected result", return -1);
4308 return 0;
4311 struct {
4312 __isl_give isl_union_pw_multi_aff *(*fn)(
4313 __isl_take isl_union_pw_multi_aff *upma1,
4314 __isl_take isl_union_pw_multi_aff *upma2);
4315 const char *arg1;
4316 const char *arg2;
4317 const char *res;
4318 } upma_bin_tests[] = {
4319 { &isl_union_pw_multi_aff_add, "{ A[] -> [0]; B[0] -> [1] }",
4320 "{ B[x] -> [2] : x >= 0 }", "{ B[0] -> [3] }" },
4321 { &isl_union_pw_multi_aff_union_add, "{ A[] -> [0]; B[0] -> [1] }",
4322 "{ B[x] -> [2] : x >= 0 }",
4323 "{ A[] -> [0]; B[0] -> [3]; B[x] -> [2] : x >= 1 }" },
4324 { &isl_union_pw_multi_aff_pullback_union_pw_multi_aff,
4325 "{ A[] -> B[0]; C[x] -> B[1] : x < 10; C[y] -> B[2] : y >= 10 }",
4326 "{ D[i] -> A[] : i < 0; D[i] -> C[i + 5] : i >= 0 }",
4327 "{ D[i] -> B[0] : i < 0; D[i] -> B[1] : 0 <= i < 5; "
4328 "D[i] -> B[2] : i >= 5 }" },
4329 { &isl_union_pw_multi_aff_union_add, "{ B[x] -> A[1] : x <= 0 }",
4330 "{ B[x] -> C[2] : x > 0 }",
4331 "{ B[x] -> A[1] : x <= 0; B[x] -> C[2] : x > 0 }" },
4332 { &isl_union_pw_multi_aff_union_add, "{ B[x] -> A[1] : x <= 0 }",
4333 "{ B[x] -> A[2] : x >= 0 }",
4334 "{ B[x] -> A[1] : x < 0; B[x] -> A[2] : x > 0; B[0] -> A[3] }" },
4337 /* Perform some basic tests of binary operations on
4338 * isl_union_pw_multi_aff objects.
4340 static int test_bin_upma(isl_ctx *ctx)
4342 int i;
4343 isl_union_pw_multi_aff *upma1, *upma2, *res;
4344 int ok;
4346 for (i = 0; i < ARRAY_SIZE(upma_bin_tests); ++i) {
4347 upma1 = isl_union_pw_multi_aff_read_from_str(ctx,
4348 upma_bin_tests[i].arg1);
4349 upma2 = isl_union_pw_multi_aff_read_from_str(ctx,
4350 upma_bin_tests[i].arg2);
4351 res = isl_union_pw_multi_aff_read_from_str(ctx,
4352 upma_bin_tests[i].res);
4353 upma1 = upma_bin_tests[i].fn(upma1, upma2);
4354 ok = isl_union_pw_multi_aff_plain_is_equal(upma1, res);
4355 isl_union_pw_multi_aff_free(upma1);
4356 isl_union_pw_multi_aff_free(res);
4357 if (ok < 0)
4358 return -1;
4359 if (!ok)
4360 isl_die(ctx, isl_error_unknown,
4361 "unexpected result", return -1);
4364 return 0;
4367 struct {
4368 __isl_give isl_union_pw_multi_aff *(*fn)(
4369 __isl_take isl_union_pw_multi_aff *upma1,
4370 __isl_take isl_union_pw_multi_aff *upma2);
4371 const char *arg1;
4372 const char *arg2;
4373 } upma_bin_fail_tests[] = {
4374 { &isl_union_pw_multi_aff_union_add, "{ B[x] -> A[1] : x <= 0 }",
4375 "{ B[x] -> C[2] : x >= 0 }" },
4378 /* Perform some basic tests of binary operations on
4379 * isl_union_pw_multi_aff objects that are expected to fail.
4381 static int test_bin_upma_fail(isl_ctx *ctx)
4383 int i, n;
4384 isl_union_pw_multi_aff *upma1, *upma2;
4385 int on_error;
4387 on_error = isl_options_get_on_error(ctx);
4388 isl_options_set_on_error(ctx, ISL_ON_ERROR_CONTINUE);
4389 n = ARRAY_SIZE(upma_bin_fail_tests);
4390 for (i = 0; i < n; ++i) {
4391 upma1 = isl_union_pw_multi_aff_read_from_str(ctx,
4392 upma_bin_fail_tests[i].arg1);
4393 upma2 = isl_union_pw_multi_aff_read_from_str(ctx,
4394 upma_bin_fail_tests[i].arg2);
4395 upma1 = upma_bin_fail_tests[i].fn(upma1, upma2);
4396 isl_union_pw_multi_aff_free(upma1);
4397 if (upma1)
4398 break;
4400 isl_options_set_on_error(ctx, on_error);
4401 if (i < n)
4402 isl_die(ctx, isl_error_unknown,
4403 "operation not expected to succeed", return -1);
4405 return 0;
4408 int test_aff(isl_ctx *ctx)
4410 const char *str;
4411 isl_set *set;
4412 isl_space *space;
4413 isl_local_space *ls;
4414 isl_aff *aff;
4415 int zero, equal;
4417 if (test_bin_aff(ctx) < 0)
4418 return -1;
4419 if (test_bin_upma(ctx) < 0)
4420 return -1;
4421 if (test_bin_upma_fail(ctx) < 0)
4422 return -1;
4424 space = isl_space_set_alloc(ctx, 0, 1);
4425 ls = isl_local_space_from_space(space);
4426 aff = isl_aff_zero_on_domain(ls);
4428 aff = isl_aff_add_coefficient_si(aff, isl_dim_in, 0, 1);
4429 aff = isl_aff_scale_down_ui(aff, 3);
4430 aff = isl_aff_floor(aff);
4431 aff = isl_aff_add_coefficient_si(aff, isl_dim_in, 0, 1);
4432 aff = isl_aff_scale_down_ui(aff, 2);
4433 aff = isl_aff_floor(aff);
4434 aff = isl_aff_add_coefficient_si(aff, isl_dim_in, 0, 1);
4436 str = "{ [10] }";
4437 set = isl_set_read_from_str(ctx, str);
4438 aff = isl_aff_gist(aff, set);
4440 aff = isl_aff_add_constant_si(aff, -16);
4441 zero = isl_aff_plain_is_zero(aff);
4442 isl_aff_free(aff);
4444 if (zero < 0)
4445 return -1;
4446 if (!zero)
4447 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
4449 aff = isl_aff_read_from_str(ctx, "{ [-1] }");
4450 aff = isl_aff_scale_down_ui(aff, 64);
4451 aff = isl_aff_floor(aff);
4452 equal = aff_check_plain_equal(aff, "{ [-1] }");
4453 isl_aff_free(aff);
4454 if (equal < 0)
4455 return -1;
4457 return 0;
4460 int test_dim_max(isl_ctx *ctx)
4462 int equal;
4463 const char *str;
4464 isl_set *set1, *set2;
4465 isl_set *set;
4466 isl_map *map;
4467 isl_pw_aff *pwaff;
4469 str = "[N] -> { [i] : 0 <= i <= min(N,10) }";
4470 set = isl_set_read_from_str(ctx, str);
4471 pwaff = isl_set_dim_max(set, 0);
4472 set1 = isl_set_from_pw_aff(pwaff);
4473 str = "[N] -> { [10] : N >= 10; [N] : N <= 9 and N >= 0 }";
4474 set2 = isl_set_read_from_str(ctx, str);
4475 equal = isl_set_is_equal(set1, set2);
4476 isl_set_free(set1);
4477 isl_set_free(set2);
4478 if (equal < 0)
4479 return -1;
4480 if (!equal)
4481 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
4483 str = "[N] -> { [i] : 0 <= i <= max(2N,N+6) }";
4484 set = isl_set_read_from_str(ctx, str);
4485 pwaff = isl_set_dim_max(set, 0);
4486 set1 = isl_set_from_pw_aff(pwaff);
4487 str = "[N] -> { [6 + N] : -6 <= N <= 5; [2N] : N >= 6 }";
4488 set2 = isl_set_read_from_str(ctx, str);
4489 equal = isl_set_is_equal(set1, set2);
4490 isl_set_free(set1);
4491 isl_set_free(set2);
4492 if (equal < 0)
4493 return -1;
4494 if (!equal)
4495 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
4497 str = "[N] -> { [i] : 0 <= i <= 2N or 0 <= i <= N+6 }";
4498 set = isl_set_read_from_str(ctx, str);
4499 pwaff = isl_set_dim_max(set, 0);
4500 set1 = isl_set_from_pw_aff(pwaff);
4501 str = "[N] -> { [6 + N] : -6 <= N <= 5; [2N] : N >= 6 }";
4502 set2 = isl_set_read_from_str(ctx, str);
4503 equal = isl_set_is_equal(set1, set2);
4504 isl_set_free(set1);
4505 isl_set_free(set2);
4506 if (equal < 0)
4507 return -1;
4508 if (!equal)
4509 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
4511 str = "[N,M] -> { [i,j] -> [([i/16]), i%16, ([j/16]), j%16] : "
4512 "0 <= i < N and 0 <= j < M }";
4513 map = isl_map_read_from_str(ctx, str);
4514 set = isl_map_range(map);
4516 pwaff = isl_set_dim_max(isl_set_copy(set), 0);
4517 set1 = isl_set_from_pw_aff(pwaff);
4518 str = "[N,M] -> { [([(N-1)/16])] : M,N > 0 }";
4519 set2 = isl_set_read_from_str(ctx, str);
4520 equal = isl_set_is_equal(set1, set2);
4521 isl_set_free(set1);
4522 isl_set_free(set2);
4524 pwaff = isl_set_dim_max(isl_set_copy(set), 3);
4525 set1 = isl_set_from_pw_aff(pwaff);
4526 str = "[N,M] -> { [t] : t = min(M-1,15) and M,N > 0 }";
4527 set2 = isl_set_read_from_str(ctx, str);
4528 if (equal >= 0 && equal)
4529 equal = isl_set_is_equal(set1, set2);
4530 isl_set_free(set1);
4531 isl_set_free(set2);
4533 isl_set_free(set);
4535 if (equal < 0)
4536 return -1;
4537 if (!equal)
4538 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
4540 /* Check that solutions are properly merged. */
4541 str = "[n] -> { [a, b, c] : c >= -4a - 2b and "
4542 "c <= -1 + n - 4a - 2b and c >= -2b and "
4543 "4a >= -4 + n and c >= 0 }";
4544 set = isl_set_read_from_str(ctx, str);
4545 pwaff = isl_set_dim_min(set, 2);
4546 set1 = isl_set_from_pw_aff(pwaff);
4547 str = "[n] -> { [(0)] : n >= 1 }";
4548 set2 = isl_set_read_from_str(ctx, str);
4549 equal = isl_set_is_equal(set1, set2);
4550 isl_set_free(set1);
4551 isl_set_free(set2);
4553 if (equal < 0)
4554 return -1;
4555 if (!equal)
4556 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
4558 /* Check that empty solution lie in the right space. */
4559 str = "[n] -> { [t,a] : 1 = 0 }";
4560 set = isl_set_read_from_str(ctx, str);
4561 pwaff = isl_set_dim_max(set, 0);
4562 set1 = isl_set_from_pw_aff(pwaff);
4563 str = "[n] -> { [t] : 1 = 0 }";
4564 set2 = isl_set_read_from_str(ctx, str);
4565 equal = isl_set_is_equal(set1, set2);
4566 isl_set_free(set1);
4567 isl_set_free(set2);
4569 if (equal < 0)
4570 return -1;
4571 if (!equal)
4572 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
4574 return 0;
4577 /* Is "pma" obviously equal to the isl_pw_multi_aff represented by "str"?
4579 static int pw_multi_aff_plain_is_equal(__isl_keep isl_pw_multi_aff *pma,
4580 const char *str)
4582 isl_ctx *ctx;
4583 isl_pw_multi_aff *pma2;
4584 int equal;
4586 if (!pma)
4587 return -1;
4589 ctx = isl_pw_multi_aff_get_ctx(pma);
4590 pma2 = isl_pw_multi_aff_read_from_str(ctx, str);
4591 equal = isl_pw_multi_aff_plain_is_equal(pma, pma2);
4592 isl_pw_multi_aff_free(pma2);
4594 return equal;
4597 /* Check that "pma" is obviously equal to the isl_pw_multi_aff
4598 * represented by "str".
4600 static int pw_multi_aff_check_plain_equal(__isl_keep isl_pw_multi_aff *pma,
4601 const char *str)
4603 int equal;
4605 equal = pw_multi_aff_plain_is_equal(pma, str);
4606 if (equal < 0)
4607 return -1;
4608 if (!equal)
4609 isl_die(isl_pw_multi_aff_get_ctx(pma), isl_error_unknown,
4610 "result not as expected", return -1);
4611 return 0;
4614 /* Basic test for isl_pw_multi_aff_product.
4616 * Check that multiple pieces are properly handled.
4618 static int test_product_pma(isl_ctx *ctx)
4620 int equal;
4621 const char *str;
4622 isl_pw_multi_aff *pma1, *pma2;
4624 str = "{ A[i] -> B[1] : i < 0; A[i] -> B[2] : i >= 0 }";
4625 pma1 = isl_pw_multi_aff_read_from_str(ctx, str);
4626 str = "{ C[] -> D[] }";
4627 pma2 = isl_pw_multi_aff_read_from_str(ctx, str);
4628 pma1 = isl_pw_multi_aff_product(pma1, pma2);
4629 str = "{ [A[i] -> C[]] -> [B[(1)] -> D[]] : i < 0;"
4630 "[A[i] -> C[]] -> [B[(2)] -> D[]] : i >= 0 }";
4631 equal = pw_multi_aff_check_plain_equal(pma1, str);
4632 isl_pw_multi_aff_free(pma1);
4633 if (equal < 0)
4634 return -1;
4636 return 0;
4639 int test_product(isl_ctx *ctx)
4641 const char *str;
4642 isl_set *set;
4643 isl_union_set *uset1, *uset2;
4644 int ok;
4646 str = "{ A[i] }";
4647 set = isl_set_read_from_str(ctx, str);
4648 set = isl_set_product(set, isl_set_copy(set));
4649 ok = isl_set_is_wrapping(set);
4650 isl_set_free(set);
4651 if (ok < 0)
4652 return -1;
4653 if (!ok)
4654 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
4656 str = "{ [] }";
4657 uset1 = isl_union_set_read_from_str(ctx, str);
4658 uset1 = isl_union_set_product(uset1, isl_union_set_copy(uset1));
4659 str = "{ [[] -> []] }";
4660 uset2 = isl_union_set_read_from_str(ctx, str);
4661 ok = isl_union_set_is_equal(uset1, uset2);
4662 isl_union_set_free(uset1);
4663 isl_union_set_free(uset2);
4664 if (ok < 0)
4665 return -1;
4666 if (!ok)
4667 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
4669 if (test_product_pma(ctx) < 0)
4670 return -1;
4672 return 0;
4675 /* Check that two sets are not considered disjoint just because
4676 * they have a different set of (named) parameters.
4678 static int test_disjoint(isl_ctx *ctx)
4680 const char *str;
4681 isl_set *set, *set2;
4682 int disjoint;
4684 str = "[n] -> { [[]->[]] }";
4685 set = isl_set_read_from_str(ctx, str);
4686 str = "{ [[]->[]] }";
4687 set2 = isl_set_read_from_str(ctx, str);
4688 disjoint = isl_set_is_disjoint(set, set2);
4689 isl_set_free(set);
4690 isl_set_free(set2);
4691 if (disjoint < 0)
4692 return -1;
4693 if (disjoint)
4694 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
4696 return 0;
4699 int test_equal(isl_ctx *ctx)
4701 const char *str;
4702 isl_set *set, *set2;
4703 int equal;
4705 str = "{ S_6[i] }";
4706 set = isl_set_read_from_str(ctx, str);
4707 str = "{ S_7[i] }";
4708 set2 = isl_set_read_from_str(ctx, str);
4709 equal = isl_set_is_equal(set, set2);
4710 isl_set_free(set);
4711 isl_set_free(set2);
4712 if (equal < 0)
4713 return -1;
4714 if (equal)
4715 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
4717 return 0;
4720 static int test_plain_fixed(isl_ctx *ctx, __isl_take isl_map *map,
4721 enum isl_dim_type type, unsigned pos, int fixed)
4723 int test;
4725 test = isl_map_plain_is_fixed(map, type, pos, NULL);
4726 isl_map_free(map);
4727 if (test < 0)
4728 return -1;
4729 if (test == fixed)
4730 return 0;
4731 if (fixed)
4732 isl_die(ctx, isl_error_unknown,
4733 "map not detected as fixed", return -1);
4734 else
4735 isl_die(ctx, isl_error_unknown,
4736 "map detected as fixed", return -1);
4739 int test_fixed(isl_ctx *ctx)
4741 const char *str;
4742 isl_map *map;
4744 str = "{ [i] -> [i] }";
4745 map = isl_map_read_from_str(ctx, str);
4746 if (test_plain_fixed(ctx, map, isl_dim_out, 0, 0))
4747 return -1;
4748 str = "{ [i] -> [1] }";
4749 map = isl_map_read_from_str(ctx, str);
4750 if (test_plain_fixed(ctx, map, isl_dim_out, 0, 1))
4751 return -1;
4752 str = "{ S_1[p1] -> [o0] : o0 = -2 and p1 >= 1 and p1 <= 7 }";
4753 map = isl_map_read_from_str(ctx, str);
4754 if (test_plain_fixed(ctx, map, isl_dim_out, 0, 1))
4755 return -1;
4756 map = isl_map_read_from_str(ctx, str);
4757 map = isl_map_neg(map);
4758 if (test_plain_fixed(ctx, map, isl_dim_out, 0, 1))
4759 return -1;
4761 return 0;
4764 struct isl_vertices_test_data {
4765 const char *set;
4766 int n;
4767 const char *vertex[2];
4768 } vertices_tests[] = {
4769 { "{ A[t, i] : t = 12 and i >= 4 and i <= 12 }",
4770 2, { "{ A[12, 4] }", "{ A[12, 12] }" } },
4771 { "{ A[t, i] : t = 14 and i = 1 }",
4772 1, { "{ A[14, 1] }" } },
4775 /* Check that "vertex" corresponds to one of the vertices in data->vertex.
4777 static isl_stat find_vertex(__isl_take isl_vertex *vertex, void *user)
4779 struct isl_vertices_test_data *data = user;
4780 isl_ctx *ctx;
4781 isl_multi_aff *ma;
4782 isl_basic_set *bset;
4783 isl_pw_multi_aff *pma;
4784 int i;
4785 isl_bool equal;
4787 ctx = isl_vertex_get_ctx(vertex);
4788 bset = isl_vertex_get_domain(vertex);
4789 ma = isl_vertex_get_expr(vertex);
4790 pma = isl_pw_multi_aff_alloc(isl_set_from_basic_set(bset), ma);
4792 for (i = 0; i < data->n; ++i) {
4793 isl_pw_multi_aff *pma_i;
4795 pma_i = isl_pw_multi_aff_read_from_str(ctx, data->vertex[i]);
4796 equal = isl_pw_multi_aff_plain_is_equal(pma, pma_i);
4797 isl_pw_multi_aff_free(pma_i);
4799 if (equal < 0 || equal)
4800 break;
4803 isl_pw_multi_aff_free(pma);
4804 isl_vertex_free(vertex);
4806 if (equal < 0)
4807 return isl_stat_error;
4809 return equal ? isl_stat_ok : isl_stat_error;
4812 int test_vertices(isl_ctx *ctx)
4814 int i;
4816 for (i = 0; i < ARRAY_SIZE(vertices_tests); ++i) {
4817 isl_basic_set *bset;
4818 isl_vertices *vertices;
4819 int ok = 1;
4820 int n;
4822 bset = isl_basic_set_read_from_str(ctx, vertices_tests[i].set);
4823 vertices = isl_basic_set_compute_vertices(bset);
4824 n = isl_vertices_get_n_vertices(vertices);
4825 if (vertices_tests[i].n != n)
4826 ok = 0;
4827 if (isl_vertices_foreach_vertex(vertices, &find_vertex,
4828 &vertices_tests[i]) < 0)
4829 ok = 0;
4830 isl_vertices_free(vertices);
4831 isl_basic_set_free(bset);
4833 if (!vertices)
4834 return -1;
4835 if (!ok)
4836 isl_die(ctx, isl_error_unknown, "unexpected vertices",
4837 return -1);
4840 return 0;
4843 int test_union_pw(isl_ctx *ctx)
4845 int equal;
4846 const char *str;
4847 isl_union_set *uset;
4848 isl_union_pw_qpolynomial *upwqp1, *upwqp2;
4850 str = "{ [x] -> x^2 }";
4851 upwqp1 = isl_union_pw_qpolynomial_read_from_str(ctx, str);
4852 upwqp2 = isl_union_pw_qpolynomial_copy(upwqp1);
4853 uset = isl_union_pw_qpolynomial_domain(upwqp1);
4854 upwqp1 = isl_union_pw_qpolynomial_copy(upwqp2);
4855 upwqp1 = isl_union_pw_qpolynomial_intersect_domain(upwqp1, uset);
4856 equal = isl_union_pw_qpolynomial_plain_is_equal(upwqp1, upwqp2);
4857 isl_union_pw_qpolynomial_free(upwqp1);
4858 isl_union_pw_qpolynomial_free(upwqp2);
4859 if (equal < 0)
4860 return -1;
4861 if (!equal)
4862 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
4864 return 0;
4867 /* Test that isl_union_pw_qpolynomial_eval picks up the function
4868 * defined over the correct domain space.
4870 static int test_eval(isl_ctx *ctx)
4872 const char *str;
4873 isl_point *pnt;
4874 isl_set *set;
4875 isl_union_pw_qpolynomial *upwqp;
4876 isl_val *v;
4877 int cmp;
4879 str = "{ A[x] -> x^2; B[x] -> -x^2 }";
4880 upwqp = isl_union_pw_qpolynomial_read_from_str(ctx, str);
4881 str = "{ A[6] }";
4882 set = isl_set_read_from_str(ctx, str);
4883 pnt = isl_set_sample_point(set);
4884 v = isl_union_pw_qpolynomial_eval(upwqp, pnt);
4885 cmp = isl_val_cmp_si(v, 36);
4886 isl_val_free(v);
4888 if (!v)
4889 return -1;
4890 if (cmp != 0)
4891 isl_die(ctx, isl_error_unknown, "unexpected value", return -1);
4893 return 0;
4896 /* Descriptions of sets that are tested for reparsing after printing.
4898 const char *output_tests[] = {
4899 "{ [1, y] : 0 <= y <= 1; [x, -x] : 0 <= x <= 1 }",
4902 /* Check that printing a set and reparsing a set from the printed output
4903 * results in the same set.
4905 static int test_output_set(isl_ctx *ctx)
4907 int i;
4908 char *str;
4909 isl_set *set1, *set2;
4910 isl_bool equal;
4912 for (i = 0; i < ARRAY_SIZE(output_tests); ++i) {
4913 set1 = isl_set_read_from_str(ctx, output_tests[i]);
4914 str = isl_set_to_str(set1);
4915 set2 = isl_set_read_from_str(ctx, str);
4916 free(str);
4917 equal = isl_set_is_equal(set1, set2);
4918 isl_set_free(set1);
4919 isl_set_free(set2);
4920 if (equal < 0)
4921 return -1;
4922 if (!equal)
4923 isl_die(ctx, isl_error_unknown,
4924 "parsed output not the same", return -1);
4927 return 0;
4930 int test_output(isl_ctx *ctx)
4932 char *s;
4933 const char *str;
4934 isl_pw_aff *pa;
4935 isl_printer *p;
4936 int equal;
4938 if (test_output_set(ctx) < 0)
4939 return -1;
4941 str = "[x] -> { [1] : x % 4 <= 2; [2] : x = 3 }";
4942 pa = isl_pw_aff_read_from_str(ctx, str);
4944 p = isl_printer_to_str(ctx);
4945 p = isl_printer_set_output_format(p, ISL_FORMAT_C);
4946 p = isl_printer_print_pw_aff(p, pa);
4947 s = isl_printer_get_str(p);
4948 isl_printer_free(p);
4949 isl_pw_aff_free(pa);
4950 if (!s)
4951 equal = -1;
4952 else
4953 equal = !strcmp(s, "4 * floord(x, 4) + 2 >= x ? 1 : 2");
4954 free(s);
4955 if (equal < 0)
4956 return -1;
4957 if (!equal)
4958 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
4960 return 0;
4963 int test_sample(isl_ctx *ctx)
4965 const char *str;
4966 isl_basic_set *bset1, *bset2;
4967 int empty, subset;
4969 str = "{ [a, b, c, d, e, f, g, h, i, j, k] : "
4970 "3i >= 1073741823b - c - 1073741823e + f and c >= 0 and "
4971 "3i >= -1 + 3221225466b + c + d - 3221225466e - f and "
4972 "2e >= a - b and 3e <= 2a and 3k <= -a and f <= -1 + a and "
4973 "3i <= 4 - a + 4b + 2c - e - 2f and 3k <= -a + c - f and "
4974 "3h >= -2 + a and 3g >= -3 - a and 3k >= -2 - a and "
4975 "3i >= -2 - a - 2c + 3e + 2f and 3h <= a + c - f and "
4976 "3h >= a + 2147483646b + 2c - 2147483646e - 2f and "
4977 "3g <= -1 - a and 3i <= 1 + c + d - f and a <= 1073741823 and "
4978 "f >= 1 - a + 1073741822b + c + d - 1073741822e and "
4979 "3i >= 1 + 2b - 2c + e + 2f + 3g and "
4980 "1073741822f <= 1073741822 - a + 1073741821b + 1073741822c +"
4981 "d - 1073741821e and "
4982 "3j <= 3 - a + 3b and 3g <= -2 - 2b + c + d - e - f and "
4983 "3j >= 1 - a + b + 2e and "
4984 "3f >= -3 + a + 3221225462b + 3c + d - 3221225465e and "
4985 "3i <= 4 - a + 4b - e and "
4986 "f <= 1073741822 + 1073741822b - 1073741822e and 3h <= a and "
4987 "f >= 0 and 2e <= 4 - a + 5b - d and 2e <= a - b + d and "
4988 "c <= -1 + a and 3i >= -2 - a + 3e and "
4989 "1073741822e <= 1073741823 - a + 1073741822b + c and "
4990 "3g >= -4 + 3221225464b + 3c + d - 3221225467e - 3f and "
4991 "3i >= -1 + 3221225466b + 3c + d - 3221225466e - 3f and "
4992 "1073741823e >= 1 + 1073741823b - d and "
4993 "3i >= 1073741823b + c - 1073741823e - f and "
4994 "3i >= 1 + 2b + e + 3g }";
4995 bset1 = isl_basic_set_read_from_str(ctx, str);
4996 bset2 = isl_basic_set_sample(isl_basic_set_copy(bset1));
4997 empty = isl_basic_set_is_empty(bset2);
4998 subset = isl_basic_set_is_subset(bset2, bset1);
4999 isl_basic_set_free(bset1);
5000 isl_basic_set_free(bset2);
5001 if (empty < 0 || subset < 0)
5002 return -1;
5003 if (empty)
5004 isl_die(ctx, isl_error_unknown, "point not found", return -1);
5005 if (!subset)
5006 isl_die(ctx, isl_error_unknown, "bad point found", return -1);
5008 return 0;
5011 int test_fixed_power(isl_ctx *ctx)
5013 const char *str;
5014 isl_map *map;
5015 isl_int exp;
5016 int equal;
5018 isl_int_init(exp);
5019 str = "{ [i] -> [i + 1] }";
5020 map = isl_map_read_from_str(ctx, str);
5021 isl_int_set_si(exp, 23);
5022 map = isl_map_fixed_power(map, exp);
5023 equal = map_check_equal(map, "{ [i] -> [i + 23] }");
5024 isl_int_clear(exp);
5025 isl_map_free(map);
5026 if (equal < 0)
5027 return -1;
5029 return 0;
5032 int test_slice(isl_ctx *ctx)
5034 const char *str;
5035 isl_map *map;
5036 int equal;
5038 str = "{ [i] -> [j] }";
5039 map = isl_map_read_from_str(ctx, str);
5040 map = isl_map_equate(map, isl_dim_in, 0, isl_dim_out, 0);
5041 equal = map_check_equal(map, "{ [i] -> [i] }");
5042 isl_map_free(map);
5043 if (equal < 0)
5044 return -1;
5046 str = "{ [i] -> [j] }";
5047 map = isl_map_read_from_str(ctx, str);
5048 map = isl_map_equate(map, isl_dim_in, 0, isl_dim_in, 0);
5049 equal = map_check_equal(map, "{ [i] -> [j] }");
5050 isl_map_free(map);
5051 if (equal < 0)
5052 return -1;
5054 str = "{ [i] -> [j] }";
5055 map = isl_map_read_from_str(ctx, str);
5056 map = isl_map_oppose(map, isl_dim_in, 0, isl_dim_out, 0);
5057 equal = map_check_equal(map, "{ [i] -> [-i] }");
5058 isl_map_free(map);
5059 if (equal < 0)
5060 return -1;
5062 str = "{ [i] -> [j] }";
5063 map = isl_map_read_from_str(ctx, str);
5064 map = isl_map_oppose(map, isl_dim_in, 0, isl_dim_in, 0);
5065 equal = map_check_equal(map, "{ [0] -> [j] }");
5066 isl_map_free(map);
5067 if (equal < 0)
5068 return -1;
5070 str = "{ [i] -> [j] }";
5071 map = isl_map_read_from_str(ctx, str);
5072 map = isl_map_order_gt(map, isl_dim_in, 0, isl_dim_out, 0);
5073 equal = map_check_equal(map, "{ [i] -> [j] : i > j }");
5074 isl_map_free(map);
5075 if (equal < 0)
5076 return -1;
5078 str = "{ [i] -> [j] }";
5079 map = isl_map_read_from_str(ctx, str);
5080 map = isl_map_order_gt(map, isl_dim_in, 0, isl_dim_in, 0);
5081 equal = map_check_equal(map, "{ [i] -> [j] : false }");
5082 isl_map_free(map);
5083 if (equal < 0)
5084 return -1;
5086 return 0;
5089 int test_eliminate(isl_ctx *ctx)
5091 const char *str;
5092 isl_map *map;
5093 int equal;
5095 str = "{ [i] -> [j] : i = 2j }";
5096 map = isl_map_read_from_str(ctx, str);
5097 map = isl_map_eliminate(map, isl_dim_out, 0, 1);
5098 equal = map_check_equal(map, "{ [i] -> [j] : exists a : i = 2a }");
5099 isl_map_free(map);
5100 if (equal < 0)
5101 return -1;
5103 return 0;
5106 /* Check that isl_set_dim_residue_class detects that the values of j
5107 * in the set below are all odd and that it does not detect any spurious
5108 * strides.
5110 static int test_residue_class(isl_ctx *ctx)
5112 const char *str;
5113 isl_set *set;
5114 isl_int m, r;
5115 int res;
5117 str = "{ [i,j] : j = 4 i + 1 and 0 <= i <= 100; "
5118 "[i,j] : j = 4 i + 3 and 500 <= i <= 600 }";
5119 set = isl_set_read_from_str(ctx, str);
5120 isl_int_init(m);
5121 isl_int_init(r);
5122 res = isl_set_dim_residue_class(set, 1, &m, &r);
5123 if (res >= 0 &&
5124 (isl_int_cmp_si(m, 2) != 0 || isl_int_cmp_si(r, 1) != 0))
5125 isl_die(ctx, isl_error_unknown, "incorrect residue class",
5126 res = -1);
5127 isl_int_clear(r);
5128 isl_int_clear(m);
5129 isl_set_free(set);
5131 return res;
5134 int test_align_parameters(isl_ctx *ctx)
5136 const char *str;
5137 isl_space *space;
5138 isl_multi_aff *ma1, *ma2;
5139 int equal;
5141 str = "{ A[B[] -> C[]] -> D[E[] -> F[]] }";
5142 ma1 = isl_multi_aff_read_from_str(ctx, str);
5144 space = isl_space_params_alloc(ctx, 1);
5145 space = isl_space_set_dim_name(space, isl_dim_param, 0, "N");
5146 ma1 = isl_multi_aff_align_params(ma1, space);
5148 str = "[N] -> { A[B[] -> C[]] -> D[E[] -> F[]] }";
5149 ma2 = isl_multi_aff_read_from_str(ctx, str);
5151 equal = isl_multi_aff_plain_is_equal(ma1, ma2);
5153 isl_multi_aff_free(ma1);
5154 isl_multi_aff_free(ma2);
5156 if (equal < 0)
5157 return -1;
5158 if (!equal)
5159 isl_die(ctx, isl_error_unknown,
5160 "result not as expected", return -1);
5162 return 0;
5165 static int test_list(isl_ctx *ctx)
5167 isl_id *a, *b, *c, *d, *id;
5168 isl_id_list *list;
5169 int ok;
5171 a = isl_id_alloc(ctx, "a", NULL);
5172 b = isl_id_alloc(ctx, "b", NULL);
5173 c = isl_id_alloc(ctx, "c", NULL);
5174 d = isl_id_alloc(ctx, "d", NULL);
5176 list = isl_id_list_alloc(ctx, 4);
5177 list = isl_id_list_add(list, a);
5178 list = isl_id_list_add(list, b);
5179 list = isl_id_list_add(list, c);
5180 list = isl_id_list_add(list, d);
5181 list = isl_id_list_drop(list, 1, 1);
5183 if (isl_id_list_n_id(list) != 3) {
5184 isl_id_list_free(list);
5185 isl_die(ctx, isl_error_unknown,
5186 "unexpected number of elements in list", return -1);
5189 id = isl_id_list_get_id(list, 0);
5190 ok = id == a;
5191 isl_id_free(id);
5192 id = isl_id_list_get_id(list, 1);
5193 ok = ok && id == c;
5194 isl_id_free(id);
5195 id = isl_id_list_get_id(list, 2);
5196 ok = ok && id == d;
5197 isl_id_free(id);
5199 isl_id_list_free(list);
5201 if (!ok)
5202 isl_die(ctx, isl_error_unknown,
5203 "unexpected elements in list", return -1);
5205 return 0;
5208 const char *set_conversion_tests[] = {
5209 "[N] -> { [i] : N - 1 <= 2 i <= N }",
5210 "[N] -> { [i] : exists a : i = 4 a and N - 1 <= i <= N }",
5211 "[N] -> { [i,j] : exists a : i = 4 a and N - 1 <= i, 2j <= N }",
5212 "[N] -> { [[i]->[j]] : exists a : i = 4 a and N - 1 <= i, 2j <= N }",
5213 "[N] -> { [3*floor(N/2) + 5*floor(N/3)] }",
5214 "[a, b] -> { [c, d] : (4*floor((-a + c)/4) = -a + c and "
5215 "32*floor((-b + d)/32) = -b + d and 5 <= c <= 8 and "
5216 "-3 + c <= d <= 28 + c) }",
5219 /* Check that converting from isl_set to isl_pw_multi_aff and back
5220 * to isl_set produces the original isl_set.
5222 static int test_set_conversion(isl_ctx *ctx)
5224 int i;
5225 const char *str;
5226 isl_set *set1, *set2;
5227 isl_pw_multi_aff *pma;
5228 int equal;
5230 for (i = 0; i < ARRAY_SIZE(set_conversion_tests); ++i) {
5231 str = set_conversion_tests[i];
5232 set1 = isl_set_read_from_str(ctx, str);
5233 pma = isl_pw_multi_aff_from_set(isl_set_copy(set1));
5234 set2 = isl_set_from_pw_multi_aff(pma);
5235 equal = isl_set_is_equal(set1, set2);
5236 isl_set_free(set1);
5237 isl_set_free(set2);
5239 if (equal < 0)
5240 return -1;
5241 if (!equal)
5242 isl_die(ctx, isl_error_unknown, "bad conversion",
5243 return -1);
5246 return 0;
5249 const char *conversion_tests[] = {
5250 "{ [a, b, c, d] -> s0[a, b, e, f] : "
5251 "exists (e0 = [(a - 2c)/3], e1 = [(-4 + b - 5d)/9], "
5252 "e2 = [(-d + f)/9]: 3e0 = a - 2c and 9e1 = -4 + b - 5d and "
5253 "9e2 = -d + f and f >= 0 and f <= 8 and 9e >= -5 - 2a and "
5254 "9e <= -2 - 2a) }",
5255 "{ [a, b] -> [c] : exists (e0 = floor((-a - b + c)/5): "
5256 "5e0 = -a - b + c and c >= -a and c <= 4 - a) }",
5257 "{ [a, b] -> [c] : exists d : 18 * d = -3 - a + 2c and 1 <= c <= 3 }",
5260 /* Check that converting from isl_map to isl_pw_multi_aff and back
5261 * to isl_map produces the original isl_map.
5263 static int test_map_conversion(isl_ctx *ctx)
5265 int i;
5266 isl_map *map1, *map2;
5267 isl_pw_multi_aff *pma;
5268 int equal;
5270 for (i = 0; i < ARRAY_SIZE(conversion_tests); ++i) {
5271 map1 = isl_map_read_from_str(ctx, conversion_tests[i]);
5272 pma = isl_pw_multi_aff_from_map(isl_map_copy(map1));
5273 map2 = isl_map_from_pw_multi_aff(pma);
5274 equal = isl_map_is_equal(map1, map2);
5275 isl_map_free(map1);
5276 isl_map_free(map2);
5278 if (equal < 0)
5279 return -1;
5280 if (!equal)
5281 isl_die(ctx, isl_error_unknown, "bad conversion",
5282 return -1);
5285 return 0;
5288 static int test_conversion(isl_ctx *ctx)
5290 if (test_set_conversion(ctx) < 0)
5291 return -1;
5292 if (test_map_conversion(ctx) < 0)
5293 return -1;
5294 return 0;
5297 /* Check that isl_basic_map_curry does not modify input.
5299 static int test_curry(isl_ctx *ctx)
5301 const char *str;
5302 isl_basic_map *bmap1, *bmap2;
5303 int equal;
5305 str = "{ [A[] -> B[]] -> C[] }";
5306 bmap1 = isl_basic_map_read_from_str(ctx, str);
5307 bmap2 = isl_basic_map_curry(isl_basic_map_copy(bmap1));
5308 equal = isl_basic_map_is_equal(bmap1, bmap2);
5309 isl_basic_map_free(bmap1);
5310 isl_basic_map_free(bmap2);
5312 if (equal < 0)
5313 return -1;
5314 if (equal)
5315 isl_die(ctx, isl_error_unknown,
5316 "curried map should not be equal to original",
5317 return -1);
5319 return 0;
5322 struct {
5323 const char *set;
5324 const char *ma;
5325 const char *res;
5326 } preimage_tests[] = {
5327 { "{ B[i,j] : 0 <= i < 10 and 0 <= j < 100 }",
5328 "{ A[j,i] -> B[i,j] }",
5329 "{ A[j,i] : 0 <= i < 10 and 0 <= j < 100 }" },
5330 { "{ rat: B[i,j] : 0 <= i, j and 3 i + 5 j <= 100 }",
5331 "{ A[a,b] -> B[a/2,b/6] }",
5332 "{ rat: A[a,b] : 0 <= a, b and 9 a + 5 b <= 600 }" },
5333 { "{ B[i,j] : 0 <= i, j and 3 i + 5 j <= 100 }",
5334 "{ A[a,b] -> B[a/2,b/6] }",
5335 "{ A[a,b] : 0 <= a, b and 9 a + 5 b <= 600 and "
5336 "exists i,j : a = 2 i and b = 6 j }" },
5337 { "[n] -> { S[i] : 0 <= i <= 100 }", "[n] -> { S[n] }",
5338 "[n] -> { : 0 <= n <= 100 }" },
5339 { "{ B[i] : 0 <= i < 100 and exists a : i = 4 a }",
5340 "{ A[a] -> B[2a] }",
5341 "{ A[a] : 0 <= a < 50 and exists b : a = 2 b }" },
5342 { "{ B[i] : 0 <= i < 100 and exists a : i = 4 a }",
5343 "{ A[a] -> B[([a/2])] }",
5344 "{ A[a] : 0 <= a < 200 and exists b : [a/2] = 4 b }" },
5345 { "{ B[i,j,k] : 0 <= i,j,k <= 100 }",
5346 "{ A[a] -> B[a,a,a/3] }",
5347 "{ A[a] : 0 <= a <= 100 and exists b : a = 3 b }" },
5348 { "{ B[i,j] : j = [(i)/2] } ", "{ A[i,j] -> B[i/3,j] }",
5349 "{ A[i,j] : j = [(i)/6] and exists a : i = 3 a }" },
5352 static int test_preimage_basic_set(isl_ctx *ctx)
5354 int i;
5355 isl_basic_set *bset1, *bset2;
5356 isl_multi_aff *ma;
5357 int equal;
5359 for (i = 0; i < ARRAY_SIZE(preimage_tests); ++i) {
5360 bset1 = isl_basic_set_read_from_str(ctx, preimage_tests[i].set);
5361 ma = isl_multi_aff_read_from_str(ctx, preimage_tests[i].ma);
5362 bset2 = isl_basic_set_read_from_str(ctx, preimage_tests[i].res);
5363 bset1 = isl_basic_set_preimage_multi_aff(bset1, ma);
5364 equal = isl_basic_set_is_equal(bset1, bset2);
5365 isl_basic_set_free(bset1);
5366 isl_basic_set_free(bset2);
5367 if (equal < 0)
5368 return -1;
5369 if (!equal)
5370 isl_die(ctx, isl_error_unknown, "bad preimage",
5371 return -1);
5374 return 0;
5377 struct {
5378 const char *map;
5379 const char *ma;
5380 const char *res;
5381 } preimage_domain_tests[] = {
5382 { "{ B[i,j] -> C[2i + 3j] : 0 <= i < 10 and 0 <= j < 100 }",
5383 "{ A[j,i] -> B[i,j] }",
5384 "{ A[j,i] -> C[2i + 3j] : 0 <= i < 10 and 0 <= j < 100 }" },
5385 { "{ B[i] -> C[i]; D[i] -> E[i] }",
5386 "{ A[i] -> B[i + 1] }",
5387 "{ A[i] -> C[i + 1] }" },
5388 { "{ B[i] -> C[i]; B[i] -> E[i] }",
5389 "{ A[i] -> B[i + 1] }",
5390 "{ A[i] -> C[i + 1]; A[i] -> E[i + 1] }" },
5391 { "{ B[i] -> C[([i/2])] }",
5392 "{ A[i] -> B[2i] }",
5393 "{ A[i] -> C[i] }" },
5394 { "{ B[i,j] -> C[([i/2]), ([(i+j)/3])] }",
5395 "{ A[i] -> B[([i/5]), ([i/7])] }",
5396 "{ A[i] -> C[([([i/5])/2]), ([(([i/5])+([i/7]))/3])] }" },
5397 { "[N] -> { B[i] -> C[([N/2]), i, ([N/3])] }",
5398 "[N] -> { A[] -> B[([N/5])] }",
5399 "[N] -> { A[] -> C[([N/2]), ([N/5]), ([N/3])] }" },
5400 { "{ B[i] -> C[i] : exists a : i = 5 a }",
5401 "{ A[i] -> B[2i] }",
5402 "{ A[i] -> C[2i] : exists a : 2i = 5 a }" },
5403 { "{ B[i] -> C[i] : exists a : i = 2 a; "
5404 "B[i] -> D[i] : exists a : i = 2 a + 1 }",
5405 "{ A[i] -> B[2i] }",
5406 "{ A[i] -> C[2i] }" },
5407 { "{ A[i] -> B[i] }", "{ C[i] -> A[(i + floor(i/3))/2] }",
5408 "{ C[i] -> B[j] : 2j = i + floor(i/3) }" },
5411 static int test_preimage_union_map(isl_ctx *ctx)
5413 int i;
5414 isl_union_map *umap1, *umap2;
5415 isl_multi_aff *ma;
5416 int equal;
5418 for (i = 0; i < ARRAY_SIZE(preimage_domain_tests); ++i) {
5419 umap1 = isl_union_map_read_from_str(ctx,
5420 preimage_domain_tests[i].map);
5421 ma = isl_multi_aff_read_from_str(ctx,
5422 preimage_domain_tests[i].ma);
5423 umap2 = isl_union_map_read_from_str(ctx,
5424 preimage_domain_tests[i].res);
5425 umap1 = isl_union_map_preimage_domain_multi_aff(umap1, ma);
5426 equal = isl_union_map_is_equal(umap1, umap2);
5427 isl_union_map_free(umap1);
5428 isl_union_map_free(umap2);
5429 if (equal < 0)
5430 return -1;
5431 if (!equal)
5432 isl_die(ctx, isl_error_unknown, "bad preimage",
5433 return -1);
5436 return 0;
5439 static int test_preimage(isl_ctx *ctx)
5441 if (test_preimage_basic_set(ctx) < 0)
5442 return -1;
5443 if (test_preimage_union_map(ctx) < 0)
5444 return -1;
5446 return 0;
5449 struct {
5450 const char *ma1;
5451 const char *ma;
5452 const char *res;
5453 } pullback_tests[] = {
5454 { "{ B[i,j] -> C[i + 2j] }" , "{ A[a,b] -> B[b,a] }",
5455 "{ A[a,b] -> C[b + 2a] }" },
5456 { "{ B[i] -> C[2i] }", "{ A[a] -> B[(a)/2] }", "{ A[a] -> C[a] }" },
5457 { "{ B[i] -> C[(i)/2] }", "{ A[a] -> B[2a] }", "{ A[a] -> C[a] }" },
5458 { "{ B[i] -> C[(i)/2] }", "{ A[a] -> B[(a)/3] }",
5459 "{ A[a] -> C[(a)/6] }" },
5460 { "{ B[i] -> C[2i] }", "{ A[a] -> B[5a] }", "{ A[a] -> C[10a] }" },
5461 { "{ B[i] -> C[2i] }", "{ A[a] -> B[(a)/3] }",
5462 "{ A[a] -> C[(2a)/3] }" },
5463 { "{ B[i,j] -> C[i + j] }", "{ A[a] -> B[a,a] }", "{ A[a] -> C[2a] }"},
5464 { "{ B[a] -> C[a,a] }", "{ A[i,j] -> B[i + j] }",
5465 "{ A[i,j] -> C[i + j, i + j] }"},
5466 { "{ B[i] -> C[([i/2])] }", "{ B[5] }", "{ C[2] }" },
5467 { "[n] -> { B[i,j] -> C[([i/2]) + 2j] }",
5468 "[n] -> { B[n,[n/3]] }", "[n] -> { C[([n/2]) + 2*[n/3]] }", },
5469 { "{ [i, j] -> [floor((i)/4) + floor((2*i+j)/5)] }",
5470 "{ [i, j] -> [floor((i)/3), j] }",
5471 "{ [i, j] -> [(floor((i)/12) + floor((j + 2*floor((i)/3))/5))] }" },
5474 static int test_pullback(isl_ctx *ctx)
5476 int i;
5477 isl_multi_aff *ma1, *ma2;
5478 isl_multi_aff *ma;
5479 int equal;
5481 for (i = 0; i < ARRAY_SIZE(pullback_tests); ++i) {
5482 ma1 = isl_multi_aff_read_from_str(ctx, pullback_tests[i].ma1);
5483 ma = isl_multi_aff_read_from_str(ctx, pullback_tests[i].ma);
5484 ma2 = isl_multi_aff_read_from_str(ctx, pullback_tests[i].res);
5485 ma1 = isl_multi_aff_pullback_multi_aff(ma1, ma);
5486 equal = isl_multi_aff_plain_is_equal(ma1, ma2);
5487 isl_multi_aff_free(ma1);
5488 isl_multi_aff_free(ma2);
5489 if (equal < 0)
5490 return -1;
5491 if (!equal)
5492 isl_die(ctx, isl_error_unknown, "bad pullback",
5493 return -1);
5496 return 0;
5499 /* Check that negation is printed correctly and that equal expressions
5500 * are correctly identified.
5502 static int test_ast(isl_ctx *ctx)
5504 isl_ast_expr *expr, *expr1, *expr2, *expr3;
5505 char *str;
5506 int ok, equal;
5508 expr1 = isl_ast_expr_from_id(isl_id_alloc(ctx, "A", NULL));
5509 expr2 = isl_ast_expr_from_id(isl_id_alloc(ctx, "B", NULL));
5510 expr = isl_ast_expr_add(expr1, expr2);
5511 expr2 = isl_ast_expr_copy(expr);
5512 expr = isl_ast_expr_neg(expr);
5513 expr2 = isl_ast_expr_neg(expr2);
5514 equal = isl_ast_expr_is_equal(expr, expr2);
5515 str = isl_ast_expr_to_str(expr);
5516 ok = str ? !strcmp(str, "-(A + B)") : -1;
5517 free(str);
5518 isl_ast_expr_free(expr);
5519 isl_ast_expr_free(expr2);
5521 if (ok < 0 || equal < 0)
5522 return -1;
5523 if (!equal)
5524 isl_die(ctx, isl_error_unknown,
5525 "equal expressions not considered equal", return -1);
5526 if (!ok)
5527 isl_die(ctx, isl_error_unknown,
5528 "isl_ast_expr printed incorrectly", return -1);
5530 expr1 = isl_ast_expr_from_id(isl_id_alloc(ctx, "A", NULL));
5531 expr2 = isl_ast_expr_from_id(isl_id_alloc(ctx, "B", NULL));
5532 expr = isl_ast_expr_add(expr1, expr2);
5533 expr3 = isl_ast_expr_from_id(isl_id_alloc(ctx, "C", NULL));
5534 expr = isl_ast_expr_sub(expr3, expr);
5535 str = isl_ast_expr_to_str(expr);
5536 ok = str ? !strcmp(str, "C - (A + B)") : -1;
5537 free(str);
5538 isl_ast_expr_free(expr);
5540 if (ok < 0)
5541 return -1;
5542 if (!ok)
5543 isl_die(ctx, isl_error_unknown,
5544 "isl_ast_expr printed incorrectly", return -1);
5546 return 0;
5549 /* Check that isl_ast_build_expr_from_set returns a valid expression
5550 * for an empty set. Note that isl_ast_build_expr_from_set getting
5551 * called on an empty set probably indicates a bug in the caller.
5553 static int test_ast_build(isl_ctx *ctx)
5555 isl_set *set;
5556 isl_ast_build *build;
5557 isl_ast_expr *expr;
5559 set = isl_set_universe(isl_space_params_alloc(ctx, 0));
5560 build = isl_ast_build_from_context(set);
5562 set = isl_set_empty(isl_space_params_alloc(ctx, 0));
5563 expr = isl_ast_build_expr_from_set(build, set);
5565 isl_ast_expr_free(expr);
5566 isl_ast_build_free(build);
5568 if (!expr)
5569 return -1;
5571 return 0;
5574 /* Internal data structure for before_for and after_for callbacks.
5576 * depth is the current depth
5577 * before is the number of times before_for has been called
5578 * after is the number of times after_for has been called
5580 struct isl_test_codegen_data {
5581 int depth;
5582 int before;
5583 int after;
5586 /* This function is called before each for loop in the AST generated
5587 * from test_ast_gen1.
5589 * Increment the number of calls and the depth.
5590 * Check that the space returned by isl_ast_build_get_schedule_space
5591 * matches the target space of the schedule returned by
5592 * isl_ast_build_get_schedule.
5593 * Return an isl_id that is checked by the corresponding call
5594 * to after_for.
5596 static __isl_give isl_id *before_for(__isl_keep isl_ast_build *build,
5597 void *user)
5599 struct isl_test_codegen_data *data = user;
5600 isl_ctx *ctx;
5601 isl_space *space;
5602 isl_union_map *schedule;
5603 isl_union_set *uset;
5604 isl_set *set;
5605 int empty;
5606 char name[] = "d0";
5608 ctx = isl_ast_build_get_ctx(build);
5610 if (data->before >= 3)
5611 isl_die(ctx, isl_error_unknown,
5612 "unexpected number of for nodes", return NULL);
5613 if (data->depth >= 2)
5614 isl_die(ctx, isl_error_unknown,
5615 "unexpected depth", return NULL);
5617 snprintf(name, sizeof(name), "d%d", data->depth);
5618 data->before++;
5619 data->depth++;
5621 schedule = isl_ast_build_get_schedule(build);
5622 uset = isl_union_map_range(schedule);
5623 if (!uset)
5624 return NULL;
5625 if (isl_union_set_n_set(uset) != 1) {
5626 isl_union_set_free(uset);
5627 isl_die(ctx, isl_error_unknown,
5628 "expecting single range space", return NULL);
5631 space = isl_ast_build_get_schedule_space(build);
5632 set = isl_union_set_extract_set(uset, space);
5633 isl_union_set_free(uset);
5634 empty = isl_set_is_empty(set);
5635 isl_set_free(set);
5637 if (empty < 0)
5638 return NULL;
5639 if (empty)
5640 isl_die(ctx, isl_error_unknown,
5641 "spaces don't match", return NULL);
5643 return isl_id_alloc(ctx, name, NULL);
5646 /* This function is called after each for loop in the AST generated
5647 * from test_ast_gen1.
5649 * Increment the number of calls and decrement the depth.
5650 * Check that the annotation attached to the node matches
5651 * the isl_id returned by the corresponding call to before_for.
5653 static __isl_give isl_ast_node *after_for(__isl_take isl_ast_node *node,
5654 __isl_keep isl_ast_build *build, void *user)
5656 struct isl_test_codegen_data *data = user;
5657 isl_id *id;
5658 const char *name;
5659 int valid;
5661 data->after++;
5662 data->depth--;
5664 if (data->after > data->before)
5665 isl_die(isl_ast_node_get_ctx(node), isl_error_unknown,
5666 "mismatch in number of for nodes",
5667 return isl_ast_node_free(node));
5669 id = isl_ast_node_get_annotation(node);
5670 if (!id)
5671 isl_die(isl_ast_node_get_ctx(node), isl_error_unknown,
5672 "missing annotation", return isl_ast_node_free(node));
5674 name = isl_id_get_name(id);
5675 valid = name && atoi(name + 1) == data->depth;
5676 isl_id_free(id);
5678 if (!valid)
5679 isl_die(isl_ast_node_get_ctx(node), isl_error_unknown,
5680 "wrong annotation", return isl_ast_node_free(node));
5682 return node;
5685 /* Check that the before_each_for and after_each_for callbacks
5686 * are called for each for loop in the generated code,
5687 * that they are called in the right order and that the isl_id
5688 * returned from the before_each_for callback is attached to
5689 * the isl_ast_node passed to the corresponding after_each_for call.
5691 static int test_ast_gen1(isl_ctx *ctx)
5693 const char *str;
5694 isl_set *set;
5695 isl_union_map *schedule;
5696 isl_ast_build *build;
5697 isl_ast_node *tree;
5698 struct isl_test_codegen_data data;
5700 str = "[N] -> { : N >= 10 }";
5701 set = isl_set_read_from_str(ctx, str);
5702 str = "[N] -> { A[i,j] -> S[8,i,3,j] : 0 <= i,j <= N; "
5703 "B[i,j] -> S[8,j,9,i] : 0 <= i,j <= N }";
5704 schedule = isl_union_map_read_from_str(ctx, str);
5706 data.before = 0;
5707 data.after = 0;
5708 data.depth = 0;
5709 build = isl_ast_build_from_context(set);
5710 build = isl_ast_build_set_before_each_for(build,
5711 &before_for, &data);
5712 build = isl_ast_build_set_after_each_for(build,
5713 &after_for, &data);
5714 tree = isl_ast_build_node_from_schedule_map(build, schedule);
5715 isl_ast_build_free(build);
5716 if (!tree)
5717 return -1;
5719 isl_ast_node_free(tree);
5721 if (data.before != 3 || data.after != 3)
5722 isl_die(ctx, isl_error_unknown,
5723 "unexpected number of for nodes", return -1);
5725 return 0;
5728 /* Check that the AST generator handles domains that are integrally disjoint
5729 * but not rationally disjoint.
5731 static int test_ast_gen2(isl_ctx *ctx)
5733 const char *str;
5734 isl_set *set;
5735 isl_union_map *schedule;
5736 isl_union_map *options;
5737 isl_ast_build *build;
5738 isl_ast_node *tree;
5740 str = "{ A[i,j] -> [i,j] : 0 <= i,j <= 1 }";
5741 schedule = isl_union_map_read_from_str(ctx, str);
5742 set = isl_set_universe(isl_space_params_alloc(ctx, 0));
5743 build = isl_ast_build_from_context(set);
5745 str = "{ [i,j] -> atomic[1] : i + j = 1; [i,j] -> unroll[1] : i = j }";
5746 options = isl_union_map_read_from_str(ctx, str);
5747 build = isl_ast_build_set_options(build, options);
5748 tree = isl_ast_build_node_from_schedule_map(build, schedule);
5749 isl_ast_build_free(build);
5750 if (!tree)
5751 return -1;
5752 isl_ast_node_free(tree);
5754 return 0;
5757 /* Increment *user on each call.
5759 static __isl_give isl_ast_node *count_domains(__isl_take isl_ast_node *node,
5760 __isl_keep isl_ast_build *build, void *user)
5762 int *n = user;
5764 (*n)++;
5766 return node;
5769 /* Test that unrolling tries to minimize the number of instances.
5770 * In particular, for the schedule given below, make sure it generates
5771 * 3 nodes (rather than 101).
5773 static int test_ast_gen3(isl_ctx *ctx)
5775 const char *str;
5776 isl_set *set;
5777 isl_union_map *schedule;
5778 isl_union_map *options;
5779 isl_ast_build *build;
5780 isl_ast_node *tree;
5781 int n_domain = 0;
5783 str = "[n] -> { A[i] -> [i] : 0 <= i <= 100 and n <= i <= n + 2 }";
5784 schedule = isl_union_map_read_from_str(ctx, str);
5785 set = isl_set_universe(isl_space_params_alloc(ctx, 0));
5787 str = "{ [i] -> unroll[0] }";
5788 options = isl_union_map_read_from_str(ctx, str);
5790 build = isl_ast_build_from_context(set);
5791 build = isl_ast_build_set_options(build, options);
5792 build = isl_ast_build_set_at_each_domain(build,
5793 &count_domains, &n_domain);
5794 tree = isl_ast_build_node_from_schedule_map(build, schedule);
5795 isl_ast_build_free(build);
5796 if (!tree)
5797 return -1;
5799 isl_ast_node_free(tree);
5801 if (n_domain != 3)
5802 isl_die(ctx, isl_error_unknown,
5803 "unexpected number of for nodes", return -1);
5805 return 0;
5808 /* Check that if the ast_build_exploit_nested_bounds options is set,
5809 * we do not get an outer if node in the generated AST,
5810 * while we do get such an outer if node if the options is not set.
5812 static int test_ast_gen4(isl_ctx *ctx)
5814 const char *str;
5815 isl_set *set;
5816 isl_union_map *schedule;
5817 isl_ast_build *build;
5818 isl_ast_node *tree;
5819 enum isl_ast_node_type type;
5820 int enb;
5822 enb = isl_options_get_ast_build_exploit_nested_bounds(ctx);
5823 str = "[N,M] -> { A[i,j] -> [i,j] : 0 <= i <= N and 0 <= j <= M }";
5825 isl_options_set_ast_build_exploit_nested_bounds(ctx, 1);
5827 schedule = isl_union_map_read_from_str(ctx, str);
5828 set = isl_set_universe(isl_space_params_alloc(ctx, 0));
5829 build = isl_ast_build_from_context(set);
5830 tree = isl_ast_build_node_from_schedule_map(build, schedule);
5831 isl_ast_build_free(build);
5832 if (!tree)
5833 return -1;
5835 type = isl_ast_node_get_type(tree);
5836 isl_ast_node_free(tree);
5838 if (type == isl_ast_node_if)
5839 isl_die(ctx, isl_error_unknown,
5840 "not expecting if node", return -1);
5842 isl_options_set_ast_build_exploit_nested_bounds(ctx, 0);
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);
5847 tree = isl_ast_build_node_from_schedule_map(build, schedule);
5848 isl_ast_build_free(build);
5849 if (!tree)
5850 return -1;
5852 type = isl_ast_node_get_type(tree);
5853 isl_ast_node_free(tree);
5855 if (type != isl_ast_node_if)
5856 isl_die(ctx, isl_error_unknown,
5857 "expecting if node", return -1);
5859 isl_options_set_ast_build_exploit_nested_bounds(ctx, enb);
5861 return 0;
5864 /* This function is called for each leaf in the AST generated
5865 * from test_ast_gen5.
5867 * We finalize the AST generation by extending the outer schedule
5868 * with a zero-dimensional schedule. If this results in any for loops,
5869 * then this means that we did not pass along enough information
5870 * about the outer schedule to the inner AST generation.
5872 static __isl_give isl_ast_node *create_leaf(__isl_take isl_ast_build *build,
5873 void *user)
5875 isl_union_map *schedule, *extra;
5876 isl_ast_node *tree;
5878 schedule = isl_ast_build_get_schedule(build);
5879 extra = isl_union_map_copy(schedule);
5880 extra = isl_union_map_from_domain(isl_union_map_domain(extra));
5881 schedule = isl_union_map_range_product(schedule, extra);
5882 tree = isl_ast_build_node_from_schedule_map(build, schedule);
5883 isl_ast_build_free(build);
5885 if (!tree)
5886 return NULL;
5888 if (isl_ast_node_get_type(tree) == isl_ast_node_for)
5889 isl_die(isl_ast_node_get_ctx(tree), isl_error_unknown,
5890 "code should not contain any for loop",
5891 return isl_ast_node_free(tree));
5893 return tree;
5896 /* Check that we do not lose any information when going back and
5897 * forth between internal and external schedule.
5899 * In particular, we create an AST where we unroll the only
5900 * non-constant dimension in the schedule. We therefore do
5901 * not expect any for loops in the AST. However, older versions
5902 * of isl would not pass along enough information about the outer
5903 * schedule when performing an inner code generation from a create_leaf
5904 * callback, resulting in the inner code generation producing a for loop.
5906 static int test_ast_gen5(isl_ctx *ctx)
5908 const char *str;
5909 isl_set *set;
5910 isl_union_map *schedule, *options;
5911 isl_ast_build *build;
5912 isl_ast_node *tree;
5914 str = "{ A[] -> [1, 1, 2]; B[i] -> [1, i, 0] : i >= 1 and i <= 2 }";
5915 schedule = isl_union_map_read_from_str(ctx, str);
5917 str = "{ [a, b, c] -> unroll[1] : exists (e0 = [(a)/4]: "
5918 "4e0 >= -1 + a - b and 4e0 <= -2 + a + b) }";
5919 options = isl_union_map_read_from_str(ctx, str);
5921 set = isl_set_universe(isl_space_params_alloc(ctx, 0));
5922 build = isl_ast_build_from_context(set);
5923 build = isl_ast_build_set_options(build, options);
5924 build = isl_ast_build_set_create_leaf(build, &create_leaf, NULL);
5925 tree = isl_ast_build_node_from_schedule_map(build, schedule);
5926 isl_ast_build_free(build);
5927 isl_ast_node_free(tree);
5928 if (!tree)
5929 return -1;
5931 return 0;
5934 static int test_ast_gen(isl_ctx *ctx)
5936 if (test_ast_gen1(ctx) < 0)
5937 return -1;
5938 if (test_ast_gen2(ctx) < 0)
5939 return -1;
5940 if (test_ast_gen3(ctx) < 0)
5941 return -1;
5942 if (test_ast_gen4(ctx) < 0)
5943 return -1;
5944 if (test_ast_gen5(ctx) < 0)
5945 return -1;
5946 return 0;
5949 /* Check if dropping output dimensions from an isl_pw_multi_aff
5950 * works properly.
5952 static int test_pw_multi_aff(isl_ctx *ctx)
5954 const char *str;
5955 isl_pw_multi_aff *pma1, *pma2;
5956 int equal;
5958 str = "{ [i,j] -> [i+j, 4i-j] }";
5959 pma1 = isl_pw_multi_aff_read_from_str(ctx, str);
5960 str = "{ [i,j] -> [4i-j] }";
5961 pma2 = isl_pw_multi_aff_read_from_str(ctx, str);
5963 pma1 = isl_pw_multi_aff_drop_dims(pma1, isl_dim_out, 0, 1);
5965 equal = isl_pw_multi_aff_plain_is_equal(pma1, pma2);
5967 isl_pw_multi_aff_free(pma1);
5968 isl_pw_multi_aff_free(pma2);
5969 if (equal < 0)
5970 return -1;
5971 if (!equal)
5972 isl_die(ctx, isl_error_unknown,
5973 "expressions not equal", return -1);
5975 return 0;
5978 /* Check that we can properly parse multi piecewise affine expressions
5979 * where the piecewise affine expressions have different domains.
5981 static int test_multi_pw_aff(isl_ctx *ctx)
5983 const char *str;
5984 isl_set *dom, *dom2;
5985 isl_multi_pw_aff *mpa1, *mpa2;
5986 isl_pw_aff *pa;
5987 int equal;
5988 int equal_domain;
5990 mpa1 = isl_multi_pw_aff_read_from_str(ctx, "{ [i] -> [i] }");
5991 dom = isl_set_read_from_str(ctx, "{ [i] : i > 0 }");
5992 mpa1 = isl_multi_pw_aff_intersect_domain(mpa1, dom);
5993 mpa2 = isl_multi_pw_aff_read_from_str(ctx, "{ [i] -> [2i] }");
5994 mpa2 = isl_multi_pw_aff_flat_range_product(mpa1, mpa2);
5995 str = "{ [i] -> [(i : i > 0), 2i] }";
5996 mpa1 = isl_multi_pw_aff_read_from_str(ctx, str);
5998 equal = isl_multi_pw_aff_plain_is_equal(mpa1, mpa2);
6000 pa = isl_multi_pw_aff_get_pw_aff(mpa1, 0);
6001 dom = isl_pw_aff_domain(pa);
6002 pa = isl_multi_pw_aff_get_pw_aff(mpa1, 1);
6003 dom2 = isl_pw_aff_domain(pa);
6004 equal_domain = isl_set_is_equal(dom, dom2);
6006 isl_set_free(dom);
6007 isl_set_free(dom2);
6008 isl_multi_pw_aff_free(mpa1);
6009 isl_multi_pw_aff_free(mpa2);
6011 if (equal < 0)
6012 return -1;
6013 if (!equal)
6014 isl_die(ctx, isl_error_unknown,
6015 "expressions not equal", return -1);
6017 if (equal_domain < 0)
6018 return -1;
6019 if (equal_domain)
6020 isl_die(ctx, isl_error_unknown,
6021 "domains unexpectedly equal", return -1);
6023 return 0;
6026 /* This is a regression test for a bug where isl_basic_map_simplify
6027 * would end up in an infinite loop. In particular, we construct
6028 * an empty basic set that is not obviously empty.
6029 * isl_basic_set_is_empty marks the basic set as empty.
6030 * After projecting out i3, the variable can be dropped completely,
6031 * but isl_basic_map_simplify refrains from doing so if the basic set
6032 * is empty and would end up in an infinite loop if it didn't test
6033 * explicitly for empty basic maps in the outer loop.
6035 static int test_simplify_1(isl_ctx *ctx)
6037 const char *str;
6038 isl_basic_set *bset;
6039 int empty;
6041 str = "{ [i0, i1, i2, i3] : i0 >= -2 and 6i2 <= 4 + i0 + 5i1 and "
6042 "i2 <= 22 and 75i2 <= 111 + 13i0 + 60i1 and "
6043 "25i2 >= 38 + 6i0 + 20i1 and i0 <= -1 and i2 >= 20 and "
6044 "i3 >= i2 }";
6045 bset = isl_basic_set_read_from_str(ctx, str);
6046 empty = isl_basic_set_is_empty(bset);
6047 bset = isl_basic_set_project_out(bset, isl_dim_set, 3, 1);
6048 isl_basic_set_free(bset);
6049 if (!bset)
6050 return -1;
6051 if (!empty)
6052 isl_die(ctx, isl_error_unknown,
6053 "basic set should be empty", return -1);
6055 return 0;
6058 /* Check that the equality in the set description below
6059 * is simplified away.
6061 static int test_simplify_2(isl_ctx *ctx)
6063 const char *str;
6064 isl_basic_set *bset;
6065 isl_bool universe;
6067 str = "{ [a] : exists e0, e1: 32e1 = 31 + 31a + 31e0 }";
6068 bset = isl_basic_set_read_from_str(ctx, str);
6069 universe = isl_basic_set_plain_is_universe(bset);
6070 isl_basic_set_free(bset);
6072 if (universe < 0)
6073 return -1;
6074 if (!universe)
6075 isl_die(ctx, isl_error_unknown,
6076 "equality not simplified away", return -1);
6077 return 0;
6080 /* Some simplification tests.
6082 static int test_simplify(isl_ctx *ctx)
6084 if (test_simplify_1(ctx) < 0)
6085 return -1;
6086 if (test_simplify_2(ctx) < 0)
6087 return -1;
6088 return 0;
6091 /* This is a regression test for a bug where isl_tab_basic_map_partial_lexopt
6092 * with gbr context would fail to disable the use of the shifted tableau
6093 * when transferring equalities for the input to the context, resulting
6094 * in invalid sample values.
6096 static int test_partial_lexmin(isl_ctx *ctx)
6098 const char *str;
6099 isl_basic_set *bset;
6100 isl_basic_map *bmap;
6101 isl_map *map;
6103 str = "{ [1, b, c, 1 - c] -> [e] : 2e <= -c and 2e >= -3 + c }";
6104 bmap = isl_basic_map_read_from_str(ctx, str);
6105 str = "{ [a, b, c, d] : c <= 1 and 2d >= 6 - 4b - c }";
6106 bset = isl_basic_set_read_from_str(ctx, str);
6107 map = isl_basic_map_partial_lexmin(bmap, bset, NULL);
6108 isl_map_free(map);
6110 if (!map)
6111 return -1;
6113 return 0;
6116 /* Check that the variable compression performed on the existentially
6117 * quantified variables inside isl_basic_set_compute_divs is not confused
6118 * by the implicit equalities among the parameters.
6120 static int test_compute_divs(isl_ctx *ctx)
6122 const char *str;
6123 isl_basic_set *bset;
6124 isl_set *set;
6126 str = "[a, b, c, d, e] -> { [] : exists (e0: 2d = b and a <= 124 and "
6127 "b <= 2046 and b >= 0 and b <= 60 + 64a and 2e >= b + 2c and "
6128 "2e >= b and 2e <= 1 + b and 2e <= 1 + b + 2c and "
6129 "32768e0 >= -124 + a and 2097152e0 <= 60 + 64a - b) }";
6130 bset = isl_basic_set_read_from_str(ctx, str);
6131 set = isl_basic_set_compute_divs(bset);
6132 isl_set_free(set);
6133 if (!set)
6134 return -1;
6136 return 0;
6139 /* Check that the reaching domain elements and the prefix schedule
6140 * at a leaf node are the same before and after grouping.
6142 static int test_schedule_tree_group_1(isl_ctx *ctx)
6144 int equal;
6145 const char *str;
6146 isl_id *id;
6147 isl_union_set *uset;
6148 isl_multi_union_pw_aff *mupa;
6149 isl_union_pw_multi_aff *upma1, *upma2;
6150 isl_union_set *domain1, *domain2;
6151 isl_union_map *umap1, *umap2;
6152 isl_schedule_node *node;
6154 str = "{ S1[i,j] : 0 <= i,j < 10; S2[i,j] : 0 <= i,j < 10 }";
6155 uset = isl_union_set_read_from_str(ctx, str);
6156 node = isl_schedule_node_from_domain(uset);
6157 node = isl_schedule_node_child(node, 0);
6158 str = "[{ S1[i,j] -> [i]; S2[i,j] -> [9 - i] }]";
6159 mupa = isl_multi_union_pw_aff_read_from_str(ctx, str);
6160 node = isl_schedule_node_insert_partial_schedule(node, mupa);
6161 node = isl_schedule_node_child(node, 0);
6162 str = "[{ S1[i,j] -> [j]; S2[i,j] -> [j] }]";
6163 mupa = isl_multi_union_pw_aff_read_from_str(ctx, str);
6164 node = isl_schedule_node_insert_partial_schedule(node, mupa);
6165 node = isl_schedule_node_child(node, 0);
6166 umap1 = isl_schedule_node_get_prefix_schedule_union_map(node);
6167 upma1 = isl_schedule_node_get_prefix_schedule_union_pw_multi_aff(node);
6168 domain1 = isl_schedule_node_get_domain(node);
6169 id = isl_id_alloc(ctx, "group", NULL);
6170 node = isl_schedule_node_parent(node);
6171 node = isl_schedule_node_group(node, id);
6172 node = isl_schedule_node_child(node, 0);
6173 umap2 = isl_schedule_node_get_prefix_schedule_union_map(node);
6174 upma2 = isl_schedule_node_get_prefix_schedule_union_pw_multi_aff(node);
6175 domain2 = isl_schedule_node_get_domain(node);
6176 equal = isl_union_pw_multi_aff_plain_is_equal(upma1, upma2);
6177 if (equal >= 0 && equal)
6178 equal = isl_union_set_is_equal(domain1, domain2);
6179 if (equal >= 0 && equal)
6180 equal = isl_union_map_is_equal(umap1, umap2);
6181 isl_union_map_free(umap1);
6182 isl_union_map_free(umap2);
6183 isl_union_set_free(domain1);
6184 isl_union_set_free(domain2);
6185 isl_union_pw_multi_aff_free(upma1);
6186 isl_union_pw_multi_aff_free(upma2);
6187 isl_schedule_node_free(node);
6189 if (equal < 0)
6190 return -1;
6191 if (!equal)
6192 isl_die(ctx, isl_error_unknown,
6193 "expressions not equal", return -1);
6195 return 0;
6198 /* Check that we can have nested groupings and that the union map
6199 * schedule representation is the same before and after the grouping.
6200 * Note that after the grouping, the union map representation contains
6201 * the domain constraints from the ranges of the expansion nodes,
6202 * while they are missing from the union map representation of
6203 * the tree without expansion nodes.
6205 * Also check that the global expansion is as expected.
6207 static int test_schedule_tree_group_2(isl_ctx *ctx)
6209 int equal, equal_expansion;
6210 const char *str;
6211 isl_id *id;
6212 isl_union_set *uset;
6213 isl_union_map *umap1, *umap2;
6214 isl_union_map *expansion1, *expansion2;
6215 isl_union_set_list *filters;
6216 isl_multi_union_pw_aff *mupa;
6217 isl_schedule *schedule;
6218 isl_schedule_node *node;
6220 str = "{ S1[i,j] : 0 <= i,j < 10; S2[i,j] : 0 <= i,j < 10; "
6221 "S3[i,j] : 0 <= i,j < 10 }";
6222 uset = isl_union_set_read_from_str(ctx, str);
6223 node = isl_schedule_node_from_domain(uset);
6224 node = isl_schedule_node_child(node, 0);
6225 str = "[{ S1[i,j] -> [i]; S2[i,j] -> [i]; S3[i,j] -> [i] }]";
6226 mupa = isl_multi_union_pw_aff_read_from_str(ctx, str);
6227 node = isl_schedule_node_insert_partial_schedule(node, mupa);
6228 node = isl_schedule_node_child(node, 0);
6229 str = "{ S1[i,j] }";
6230 uset = isl_union_set_read_from_str(ctx, str);
6231 filters = isl_union_set_list_from_union_set(uset);
6232 str = "{ S2[i,j]; S3[i,j] }";
6233 uset = isl_union_set_read_from_str(ctx, str);
6234 filters = isl_union_set_list_add(filters, uset);
6235 node = isl_schedule_node_insert_sequence(node, filters);
6236 node = isl_schedule_node_child(node, 1);
6237 node = isl_schedule_node_child(node, 0);
6238 str = "{ S2[i,j] }";
6239 uset = isl_union_set_read_from_str(ctx, str);
6240 filters = isl_union_set_list_from_union_set(uset);
6241 str = "{ S3[i,j] }";
6242 uset = isl_union_set_read_from_str(ctx, str);
6243 filters = isl_union_set_list_add(filters, uset);
6244 node = isl_schedule_node_insert_sequence(node, filters);
6246 schedule = isl_schedule_node_get_schedule(node);
6247 umap1 = isl_schedule_get_map(schedule);
6248 uset = isl_schedule_get_domain(schedule);
6249 umap1 = isl_union_map_intersect_domain(umap1, uset);
6250 isl_schedule_free(schedule);
6252 node = isl_schedule_node_parent(node);
6253 node = isl_schedule_node_parent(node);
6254 id = isl_id_alloc(ctx, "group1", NULL);
6255 node = isl_schedule_node_group(node, id);
6256 node = isl_schedule_node_child(node, 1);
6257 node = isl_schedule_node_child(node, 0);
6258 id = isl_id_alloc(ctx, "group2", NULL);
6259 node = isl_schedule_node_group(node, id);
6261 schedule = isl_schedule_node_get_schedule(node);
6262 umap2 = isl_schedule_get_map(schedule);
6263 isl_schedule_free(schedule);
6265 node = isl_schedule_node_root(node);
6266 node = isl_schedule_node_child(node, 0);
6267 expansion1 = isl_schedule_node_get_subtree_expansion(node);
6268 isl_schedule_node_free(node);
6270 str = "{ group1[i] -> S1[i,j] : 0 <= i,j < 10; "
6271 "group1[i] -> S2[i,j] : 0 <= i,j < 10; "
6272 "group1[i] -> S3[i,j] : 0 <= i,j < 10 }";
6274 expansion2 = isl_union_map_read_from_str(ctx, str);
6276 equal = isl_union_map_is_equal(umap1, umap2);
6277 equal_expansion = isl_union_map_is_equal(expansion1, expansion2);
6279 isl_union_map_free(umap1);
6280 isl_union_map_free(umap2);
6281 isl_union_map_free(expansion1);
6282 isl_union_map_free(expansion2);
6284 if (equal < 0 || equal_expansion < 0)
6285 return -1;
6286 if (!equal)
6287 isl_die(ctx, isl_error_unknown,
6288 "expressions not equal", return -1);
6289 if (!equal_expansion)
6290 isl_die(ctx, isl_error_unknown,
6291 "unexpected expansion", return -1);
6293 return 0;
6296 /* Some tests for the isl_schedule_node_group function.
6298 static int test_schedule_tree_group(isl_ctx *ctx)
6300 if (test_schedule_tree_group_1(ctx) < 0)
6301 return -1;
6302 if (test_schedule_tree_group_2(ctx) < 0)
6303 return -1;
6304 return 0;
6307 struct {
6308 const char *set;
6309 const char *dual;
6310 } coef_tests[] = {
6311 { "{ rat: [i] : 0 <= i <= 10 }",
6312 "{ rat: coefficients[[cst] -> [a]] : cst >= 0 and 10a + cst >= 0 }" },
6313 { "{ rat: [i] : FALSE }",
6314 "{ rat: coefficients[[cst] -> [a]] }" },
6315 { "{ rat: [i] : }",
6316 "{ rat: coefficients[[cst] -> [0]] : cst >= 0 }" },
6319 struct {
6320 const char *set;
6321 const char *dual;
6322 } sol_tests[] = {
6323 { "{ rat: coefficients[[cst] -> [a]] : cst >= 0 and 10a + cst >= 0 }",
6324 "{ rat: [i] : 0 <= i <= 10 }" },
6325 { "{ rat: coefficients[[cst] -> [a]] : FALSE }",
6326 "{ rat: [i] }" },
6327 { "{ rat: coefficients[[cst] -> [a]] }",
6328 "{ rat: [i] : FALSE }" },
6331 /* Test the basic functionality of isl_basic_set_coefficients and
6332 * isl_basic_set_solutions.
6334 static int test_dual(isl_ctx *ctx)
6336 int i;
6338 for (i = 0; i < ARRAY_SIZE(coef_tests); ++i) {
6339 int equal;
6340 isl_basic_set *bset1, *bset2;
6342 bset1 = isl_basic_set_read_from_str(ctx, coef_tests[i].set);
6343 bset2 = isl_basic_set_read_from_str(ctx, coef_tests[i].dual);
6344 bset1 = isl_basic_set_coefficients(bset1);
6345 equal = isl_basic_set_is_equal(bset1, bset2);
6346 isl_basic_set_free(bset1);
6347 isl_basic_set_free(bset2);
6348 if (equal < 0)
6349 return -1;
6350 if (!equal)
6351 isl_die(ctx, isl_error_unknown,
6352 "incorrect dual", return -1);
6355 for (i = 0; i < ARRAY_SIZE(sol_tests); ++i) {
6356 int equal;
6357 isl_basic_set *bset1, *bset2;
6359 bset1 = isl_basic_set_read_from_str(ctx, sol_tests[i].set);
6360 bset2 = isl_basic_set_read_from_str(ctx, sol_tests[i].dual);
6361 bset1 = isl_basic_set_solutions(bset1);
6362 equal = isl_basic_set_is_equal(bset1, bset2);
6363 isl_basic_set_free(bset1);
6364 isl_basic_set_free(bset2);
6365 if (equal < 0)
6366 return -1;
6367 if (!equal)
6368 isl_die(ctx, isl_error_unknown,
6369 "incorrect dual", return -1);
6372 return 0;
6375 struct {
6376 int scale_tile;
6377 int shift_point;
6378 const char *domain;
6379 const char *schedule;
6380 const char *sizes;
6381 const char *tile;
6382 const char *point;
6383 } tile_tests[] = {
6384 { 0, 0, "[n] -> { S[i,j] : 0 <= i,j < n }",
6385 "[{ S[i,j] -> [i] }, { S[i,j] -> [j] }]",
6386 "{ [32,32] }",
6387 "[{ S[i,j] -> [floor(i/32)] }, { S[i,j] -> [floor(j/32)] }]",
6388 "[{ S[i,j] -> [i] }, { S[i,j] -> [j] }]",
6390 { 1, 0, "[n] -> { S[i,j] : 0 <= i,j < n }",
6391 "[{ S[i,j] -> [i] }, { S[i,j] -> [j] }]",
6392 "{ [32,32] }",
6393 "[{ S[i,j] -> [32*floor(i/32)] }, { S[i,j] -> [32*floor(j/32)] }]",
6394 "[{ S[i,j] -> [i] }, { S[i,j] -> [j] }]",
6396 { 0, 1, "[n] -> { S[i,j] : 0 <= i,j < n }",
6397 "[{ S[i,j] -> [i] }, { S[i,j] -> [j] }]",
6398 "{ [32,32] }",
6399 "[{ S[i,j] -> [floor(i/32)] }, { S[i,j] -> [floor(j/32)] }]",
6400 "[{ S[i,j] -> [i%32] }, { S[i,j] -> [j%32] }]",
6402 { 1, 1, "[n] -> { S[i,j] : 0 <= i,j < n }",
6403 "[{ S[i,j] -> [i] }, { S[i,j] -> [j] }]",
6404 "{ [32,32] }",
6405 "[{ S[i,j] -> [32*floor(i/32)] }, { S[i,j] -> [32*floor(j/32)] }]",
6406 "[{ S[i,j] -> [i%32] }, { S[i,j] -> [j%32] }]",
6410 /* Basic tiling tests. Create a schedule tree with a domain and a band node,
6411 * tile the band and then check if the tile and point bands have the
6412 * expected partial schedule.
6414 static int test_tile(isl_ctx *ctx)
6416 int i;
6417 int scale;
6418 int shift;
6420 scale = isl_options_get_tile_scale_tile_loops(ctx);
6421 shift = isl_options_get_tile_shift_point_loops(ctx);
6423 for (i = 0; i < ARRAY_SIZE(tile_tests); ++i) {
6424 int opt;
6425 int equal;
6426 const char *str;
6427 isl_union_set *domain;
6428 isl_multi_union_pw_aff *mupa, *mupa2;
6429 isl_schedule_node *node;
6430 isl_multi_val *sizes;
6432 opt = tile_tests[i].scale_tile;
6433 isl_options_set_tile_scale_tile_loops(ctx, opt);
6434 opt = tile_tests[i].shift_point;
6435 isl_options_set_tile_shift_point_loops(ctx, opt);
6437 str = tile_tests[i].domain;
6438 domain = isl_union_set_read_from_str(ctx, str);
6439 node = isl_schedule_node_from_domain(domain);
6440 node = isl_schedule_node_child(node, 0);
6441 str = tile_tests[i].schedule;
6442 mupa = isl_multi_union_pw_aff_read_from_str(ctx, str);
6443 node = isl_schedule_node_insert_partial_schedule(node, mupa);
6444 str = tile_tests[i].sizes;
6445 sizes = isl_multi_val_read_from_str(ctx, str);
6446 node = isl_schedule_node_band_tile(node, sizes);
6448 str = tile_tests[i].tile;
6449 mupa = isl_multi_union_pw_aff_read_from_str(ctx, str);
6450 mupa2 = isl_schedule_node_band_get_partial_schedule(node);
6451 equal = isl_multi_union_pw_aff_plain_is_equal(mupa, mupa2);
6452 isl_multi_union_pw_aff_free(mupa);
6453 isl_multi_union_pw_aff_free(mupa2);
6455 node = isl_schedule_node_child(node, 0);
6457 str = tile_tests[i].point;
6458 mupa = isl_multi_union_pw_aff_read_from_str(ctx, str);
6459 mupa2 = isl_schedule_node_band_get_partial_schedule(node);
6460 if (equal >= 0 && equal)
6461 equal = isl_multi_union_pw_aff_plain_is_equal(mupa,
6462 mupa2);
6463 isl_multi_union_pw_aff_free(mupa);
6464 isl_multi_union_pw_aff_free(mupa2);
6466 isl_schedule_node_free(node);
6468 if (equal < 0)
6469 return -1;
6470 if (!equal)
6471 isl_die(ctx, isl_error_unknown,
6472 "unexpected result", return -1);
6475 isl_options_set_tile_scale_tile_loops(ctx, scale);
6476 isl_options_set_tile_shift_point_loops(ctx, shift);
6478 return 0;
6481 /* Check that the domain hash of a space is equal to the hash
6482 * of the domain of the space.
6484 static int test_domain_hash(isl_ctx *ctx)
6486 isl_map *map;
6487 isl_space *space;
6488 uint32_t hash1, hash2;
6490 map = isl_map_read_from_str(ctx, "[n] -> { A[B[x] -> C[]] -> D[] }");
6491 space = isl_map_get_space(map);
6492 isl_map_free(map);
6493 hash1 = isl_space_get_domain_hash(space);
6494 space = isl_space_domain(space);
6495 hash2 = isl_space_get_hash(space);
6496 isl_space_free(space);
6498 if (!space)
6499 return -1;
6500 if (hash1 != hash2)
6501 isl_die(ctx, isl_error_unknown,
6502 "domain hash not equal to hash of domain", return -1);
6504 return 0;
6507 /* Check that a universe basic set that is not obviously equal to the universe
6508 * is still recognized as being equal to the universe.
6510 static int test_universe(isl_ctx *ctx)
6512 const char *s;
6513 isl_basic_set *bset;
6514 isl_bool is_univ;
6516 s = "{ [] : exists x, y : 3y <= 2x and y >= -3 + 2x and 2y >= 2 - x }";
6517 bset = isl_basic_set_read_from_str(ctx, s);
6518 is_univ = isl_basic_set_is_universe(bset);
6519 isl_basic_set_free(bset);
6521 if (is_univ < 0)
6522 return -1;
6523 if (!is_univ)
6524 isl_die(ctx, isl_error_unknown,
6525 "not recognized as universe set", return -1);
6527 return 0;
6530 struct {
6531 const char *name;
6532 int (*fn)(isl_ctx *ctx);
6533 } tests [] = {
6534 { "universe", &test_universe },
6535 { "domain hash", &test_domain_hash },
6536 { "dual", &test_dual },
6537 { "dependence analysis", &test_flow },
6538 { "val", &test_val },
6539 { "compute divs", &test_compute_divs },
6540 { "partial lexmin", &test_partial_lexmin },
6541 { "simplify", &test_simplify },
6542 { "curry", &test_curry },
6543 { "piecewise multi affine expressions", &test_pw_multi_aff },
6544 { "multi piecewise affine expressions", &test_multi_pw_aff },
6545 { "conversion", &test_conversion },
6546 { "list", &test_list },
6547 { "align parameters", &test_align_parameters },
6548 { "preimage", &test_preimage },
6549 { "pullback", &test_pullback },
6550 { "AST", &test_ast },
6551 { "AST build", &test_ast_build },
6552 { "AST generation", &test_ast_gen },
6553 { "eliminate", &test_eliminate },
6554 { "residue class", &test_residue_class },
6555 { "div", &test_div },
6556 { "slice", &test_slice },
6557 { "fixed power", &test_fixed_power },
6558 { "sample", &test_sample },
6559 { "output", &test_output },
6560 { "vertices", &test_vertices },
6561 { "fixed", &test_fixed },
6562 { "equal", &test_equal },
6563 { "disjoint", &test_disjoint },
6564 { "product", &test_product },
6565 { "dim_max", &test_dim_max },
6566 { "affine", &test_aff },
6567 { "injective", &test_injective },
6568 { "schedule (whole component)", &test_schedule_whole },
6569 { "schedule (incremental)", &test_schedule_incremental },
6570 { "schedule tree grouping", &test_schedule_tree_group },
6571 { "tile", &test_tile },
6572 { "union_pw", &test_union_pw },
6573 { "eval", &test_eval },
6574 { "parse", &test_parse },
6575 { "single-valued", &test_sv },
6576 { "affine hull", &test_affine_hull },
6577 { "simple_hull", &test_simple_hull },
6578 { "coalesce", &test_coalesce },
6579 { "factorize", &test_factorize },
6580 { "subset", &test_subset },
6581 { "subtract", &test_subtract },
6582 { "intersect", &test_intersect },
6583 { "lexmin", &test_lexmin },
6584 { "min", &test_min },
6585 { "gist", &test_gist },
6586 { "piecewise quasi-polynomials", &test_pwqp },
6587 { "lift", &test_lift },
6588 { "bound", &test_bound },
6589 { "union", &test_union },
6590 { "split periods", &test_split_periods },
6591 { "lexicographic order", &test_lex },
6592 { "bijectivity", &test_bijective },
6593 { "dataflow analysis", &test_dep },
6594 { "reading", &test_read },
6595 { "bounded", &test_bounded },
6596 { "construction", &test_construction },
6597 { "dimension manipulation", &test_dim },
6598 { "map application", &test_application },
6599 { "convex hull", &test_convex_hull },
6600 { "transitive closure", &test_closure },
6603 int main(int argc, char **argv)
6605 int i;
6606 struct isl_ctx *ctx;
6607 struct isl_options *options;
6609 srcdir = getenv("srcdir");
6610 assert(srcdir);
6612 options = isl_options_new_with_defaults();
6613 assert(options);
6614 argc = isl_options_parse(options, argc, argv, ISL_ARG_ALL);
6616 ctx = isl_ctx_alloc_with_options(&isl_options_args, options);
6617 for (i = 0; i < ARRAY_SIZE(tests); ++i) {
6618 printf("%s\n", tests[i].name);
6619 if (tests[i].fn(ctx) < 0)
6620 goto error;
6622 isl_ctx_free(ctx);
6623 return 0;
6624 error:
6625 isl_ctx_free(ctx);
6626 return -1;