isl_ast_codegen.c: foreach_iteration: improve error handling
[isl.git] / isl_test.c
blob05b953634d860068ba1300d68cef385ab3af0a00
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/set.h>
25 #include <isl/flow.h>
26 #include <isl_constraint_private.h>
27 #include <isl/polynomial.h>
28 #include <isl/union_set.h>
29 #include <isl/union_map.h>
30 #include <isl_factorization.h>
31 #include <isl/schedule.h>
32 #include <isl/schedule_node.h>
33 #include <isl_options_private.h>
34 #include <isl/vertices.h>
35 #include <isl/ast_build.h>
36 #include <isl/val.h>
37 #include <isl/ilp.h>
38 #include <isl_ast_build_expr.h>
39 #include <isl/options.h>
41 #define ARRAY_SIZE(array) (sizeof(array)/sizeof(*array))
43 static char *srcdir;
45 static char *get_filename(isl_ctx *ctx, const char *name, const char *suffix) {
46 char *filename;
47 int length;
48 char *pattern = "%s/test_inputs/%s.%s";
50 length = strlen(pattern) - 6 + strlen(srcdir) + strlen(name)
51 + strlen(suffix) + 1;
52 filename = isl_alloc_array(ctx, char, length);
54 if (!filename)
55 return NULL;
57 sprintf(filename, pattern, srcdir, name, suffix);
59 return filename;
62 void test_parse_map(isl_ctx *ctx, const char *str)
64 isl_map *map;
66 map = isl_map_read_from_str(ctx, str);
67 assert(map);
68 isl_map_free(map);
71 int test_parse_map_equal(isl_ctx *ctx, const char *str, const char *str2)
73 isl_map *map, *map2;
74 int equal;
76 map = isl_map_read_from_str(ctx, str);
77 map2 = isl_map_read_from_str(ctx, str2);
78 equal = isl_map_is_equal(map, map2);
79 isl_map_free(map);
80 isl_map_free(map2);
82 if (equal < 0)
83 return -1;
84 if (!equal)
85 isl_die(ctx, isl_error_unknown, "maps not equal",
86 return -1);
88 return 0;
91 void test_parse_pwqp(isl_ctx *ctx, const char *str)
93 isl_pw_qpolynomial *pwqp;
95 pwqp = isl_pw_qpolynomial_read_from_str(ctx, str);
96 assert(pwqp);
97 isl_pw_qpolynomial_free(pwqp);
100 static void test_parse_pwaff(isl_ctx *ctx, const char *str)
102 isl_pw_aff *pwaff;
104 pwaff = isl_pw_aff_read_from_str(ctx, str);
105 assert(pwaff);
106 isl_pw_aff_free(pwaff);
109 /* Check that we can read an isl_multi_val from "str" without errors.
111 static int test_parse_multi_val(isl_ctx *ctx, const char *str)
113 isl_multi_val *mv;
115 mv = isl_multi_val_read_from_str(ctx, str);
116 isl_multi_val_free(mv);
118 return mv ? 0 : -1;
121 int test_parse(struct isl_ctx *ctx)
123 isl_map *map, *map2;
124 const char *str, *str2;
126 if (test_parse_multi_val(ctx, "{ A[B[2] -> C[5, 7]] }") < 0)
127 return -1;
128 if (test_parse_multi_val(ctx, "[n] -> { [2] }") < 0)
129 return -1;
130 if (test_parse_multi_val(ctx, "{ A[4, infty, NaN, -1/2, 2/3] }") < 0)
131 return -1;
133 str = "{ [i] -> [-i] }";
134 map = isl_map_read_from_str(ctx, str);
135 assert(map);
136 isl_map_free(map);
138 str = "{ A[i] -> L[([i/3])] }";
139 map = isl_map_read_from_str(ctx, str);
140 assert(map);
141 isl_map_free(map);
143 test_parse_map(ctx, "{[[s] -> A[i]] -> [[s+1] -> A[i]]}");
144 test_parse_map(ctx, "{ [p1, y1, y2] -> [2, y1, y2] : "
145 "p1 = 1 && (y1 <= y2 || y2 = 0) }");
147 str = "{ [x,y] : [([x/2]+y)/3] >= 1 }";
148 str2 = "{ [x, y] : 2y >= 6 - x }";
149 if (test_parse_map_equal(ctx, str, str2) < 0)
150 return -1;
152 if (test_parse_map_equal(ctx, "{ [x,y] : x <= min(y, 2*y+3) }",
153 "{ [x,y] : x <= y, 2*y + 3 }") < 0)
154 return -1;
155 str = "{ [x, y] : (y <= x and y >= -3) or (2y <= -3 + x and y <= -4) }";
156 if (test_parse_map_equal(ctx, "{ [x,y] : x >= min(y, 2*y+3) }",
157 str) < 0)
158 return -1;
160 str = "{[new,old] -> [new+1-2*[(new+1)/2],old+1-2*[(old+1)/2]]}";
161 map = isl_map_read_from_str(ctx, str);
162 str = "{ [new, old] -> [o0, o1] : "
163 "exists (e0 = [(-1 - new + o0)/2], e1 = [(-1 - old + o1)/2]: "
164 "2e0 = -1 - new + o0 and 2e1 = -1 - old + o1 and o0 >= 0 and "
165 "o0 <= 1 and o1 >= 0 and o1 <= 1) }";
166 map2 = isl_map_read_from_str(ctx, str);
167 assert(isl_map_is_equal(map, map2));
168 isl_map_free(map);
169 isl_map_free(map2);
171 str = "{[new,old] -> [new+1-2*[(new+1)/2],old+1-2*[(old+1)/2]]}";
172 map = isl_map_read_from_str(ctx, str);
173 str = "{[new,old] -> [(new+1)%2,(old+1)%2]}";
174 map2 = isl_map_read_from_str(ctx, str);
175 assert(isl_map_is_equal(map, map2));
176 isl_map_free(map);
177 isl_map_free(map2);
179 str = "[n] -> { [c1] : c1>=0 and c1<=floord(n-4,3) }";
180 str2 = "[n] -> { [c1] : c1 >= 0 and 3c1 <= -4 + n }";
181 if (test_parse_map_equal(ctx, str, str2) < 0)
182 return -1;
184 str = "{ [i,j] -> [i] : i < j; [i,j] -> [j] : j <= i }";
185 str2 = "{ [i,j] -> [min(i,j)] }";
186 if (test_parse_map_equal(ctx, str, str2) < 0)
187 return -1;
189 str = "{ [i,j] : i != j }";
190 str2 = "{ [i,j] : i < j or i > j }";
191 if (test_parse_map_equal(ctx, str, str2) < 0)
192 return -1;
194 str = "{ [i,j] : (i+1)*2 >= j }";
195 str2 = "{ [i, j] : j <= 2 + 2i }";
196 if (test_parse_map_equal(ctx, str, str2) < 0)
197 return -1;
199 str = "{ [i] -> [i > 0 ? 4 : 5] }";
200 str2 = "{ [i] -> [5] : i <= 0; [i] -> [4] : i >= 1 }";
201 if (test_parse_map_equal(ctx, str, str2) < 0)
202 return -1;
204 str = "[N=2,M] -> { [i=[(M+N)/4]] }";
205 str2 = "[N, M] -> { [i] : N = 2 and 4i <= 2 + M and 4i >= -1 + M }";
206 if (test_parse_map_equal(ctx, str, str2) < 0)
207 return -1;
209 str = "{ [x] : x >= 0 }";
210 str2 = "{ [x] : x-0 >= 0 }";
211 if (test_parse_map_equal(ctx, str, str2) < 0)
212 return -1;
214 str = "{ [i] : ((i > 10)) }";
215 str2 = "{ [i] : i >= 11 }";
216 if (test_parse_map_equal(ctx, str, str2) < 0)
217 return -1;
219 str = "{ [i] -> [0] }";
220 str2 = "{ [i] -> [0 * i] }";
221 if (test_parse_map_equal(ctx, str, str2) < 0)
222 return -1;
224 test_parse_pwqp(ctx, "{ [i] -> i + [ (i + [i/3])/2 ] }");
225 test_parse_map(ctx, "{ S1[i] -> [([i/10]),i%10] : 0 <= i <= 45 }");
226 test_parse_pwaff(ctx, "{ [i] -> [i + 1] : i > 0; [a] -> [a] : a < 0 }");
227 test_parse_pwqp(ctx, "{ [x] -> ([(x)/2] * [(x)/3]) }");
229 if (test_parse_map_equal(ctx, "{ [a] -> [b] : (not false) }",
230 "{ [a] -> [b] : true }") < 0)
231 return -1;
233 if (test_parse_map_equal(ctx, "{ [i] : i/2 <= 5 }",
234 "{ [i] : i <= 10 }") < 0)
235 return -1;
237 if (test_parse_map_equal(ctx, "{Sym=[n] [i] : i <= n }",
238 "[n] -> { [i] : i <= n }") < 0)
239 return -1;
241 if (test_parse_map_equal(ctx, "{ [*] }", "{ [a] }") < 0)
242 return -1;
244 if (test_parse_map_equal(ctx, "{ [i] : 2*floor(i/2) = i }",
245 "{ [i] : exists a : i = 2 a }") < 0)
246 return -1;
248 if (test_parse_map_equal(ctx, "{ [a] -> [b] : a = 5 implies b = 5 }",
249 "{ [a] -> [b] : a != 5 or b = 5 }") < 0)
250 return -1;
252 if (test_parse_map_equal(ctx, "{ [a] -> [a - 1 : a > 0] }",
253 "{ [a] -> [a - 1] : a > 0 }") < 0)
254 return -1;
255 if (test_parse_map_equal(ctx,
256 "{ [a] -> [a - 1 : a > 0; a : a <= 0] }",
257 "{ [a] -> [a - 1] : a > 0; [a] -> [a] : a <= 0 }") < 0)
258 return -1;
259 if (test_parse_map_equal(ctx,
260 "{ [a] -> [(a) * 2 : a >= 0; 0 : a < 0] }",
261 "{ [a] -> [2a] : a >= 0; [a] -> [0] : a < 0 }") < 0)
262 return -1;
263 if (test_parse_map_equal(ctx,
264 "{ [a] -> [(a * 2) : a >= 0; 0 : a < 0] }",
265 "{ [a] -> [2a] : a >= 0; [a] -> [0] : a < 0 }") < 0)
266 return -1;
267 if (test_parse_map_equal(ctx,
268 "{ [a] -> [(a * 2 : a >= 0); 0 : a < 0] }",
269 "{ [a] -> [2a] : a >= 0; [a] -> [0] : a < 0 }") < 0)
270 return -1;
271 if (test_parse_map_equal(ctx,
272 "{ [a] -> [(a * 2 : a >= 0; 0 : a < 0)] }",
273 "{ [a] -> [2a] : a >= 0; [a] -> [0] : a < 0 }") < 0)
274 return -1;
276 return 0;
279 static int test_read(isl_ctx *ctx)
281 char *filename;
282 FILE *input;
283 isl_basic_set *bset1, *bset2;
284 const char *str = "{[y]: Exists ( alpha : 2alpha = y)}";
285 int equal;
287 filename = get_filename(ctx, "set", "omega");
288 assert(filename);
289 input = fopen(filename, "r");
290 assert(input);
292 bset1 = isl_basic_set_read_from_file(ctx, input);
293 bset2 = isl_basic_set_read_from_str(ctx, str);
295 equal = isl_basic_set_is_equal(bset1, bset2);
297 isl_basic_set_free(bset1);
298 isl_basic_set_free(bset2);
299 free(filename);
301 fclose(input);
303 if (equal < 0)
304 return -1;
305 if (!equal)
306 isl_die(ctx, isl_error_unknown,
307 "read sets not equal", return -1);
309 return 0;
312 static int test_bounded(isl_ctx *ctx)
314 isl_set *set;
315 int bounded;
317 set = isl_set_read_from_str(ctx, "[n] -> {[i] : 0 <= i <= n }");
318 bounded = isl_set_is_bounded(set);
319 isl_set_free(set);
321 if (bounded < 0)
322 return -1;
323 if (!bounded)
324 isl_die(ctx, isl_error_unknown,
325 "set not considered bounded", return -1);
327 set = isl_set_read_from_str(ctx, "{[n, i] : 0 <= i <= n }");
328 bounded = isl_set_is_bounded(set);
329 assert(!bounded);
330 isl_set_free(set);
332 if (bounded < 0)
333 return -1;
334 if (bounded)
335 isl_die(ctx, isl_error_unknown,
336 "set considered bounded", return -1);
338 set = isl_set_read_from_str(ctx, "[n] -> {[i] : i <= n }");
339 bounded = isl_set_is_bounded(set);
340 isl_set_free(set);
342 if (bounded < 0)
343 return -1;
344 if (bounded)
345 isl_die(ctx, isl_error_unknown,
346 "set considered bounded", return -1);
348 return 0;
351 /* Construct the basic set { [i] : 5 <= i <= N } */
352 static int test_construction(isl_ctx *ctx)
354 isl_int v;
355 isl_space *dim;
356 isl_local_space *ls;
357 isl_basic_set *bset;
358 isl_constraint *c;
360 isl_int_init(v);
362 dim = isl_space_set_alloc(ctx, 1, 1);
363 bset = isl_basic_set_universe(isl_space_copy(dim));
364 ls = isl_local_space_from_space(dim);
366 c = isl_inequality_alloc(isl_local_space_copy(ls));
367 isl_int_set_si(v, -1);
368 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
369 isl_int_set_si(v, 1);
370 isl_constraint_set_coefficient(c, isl_dim_param, 0, v);
371 bset = isl_basic_set_add_constraint(bset, c);
373 c = isl_inequality_alloc(isl_local_space_copy(ls));
374 isl_int_set_si(v, 1);
375 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
376 isl_int_set_si(v, -5);
377 isl_constraint_set_constant(c, v);
378 bset = isl_basic_set_add_constraint(bset, c);
380 isl_local_space_free(ls);
381 isl_basic_set_free(bset);
383 isl_int_clear(v);
385 return 0;
388 static int test_dim(isl_ctx *ctx)
390 const char *str;
391 isl_map *map1, *map2;
392 int equal;
394 map1 = isl_map_read_from_str(ctx,
395 "[n] -> { [i] -> [j] : exists (a = [i/10] : i - 10a <= n ) }");
396 map1 = isl_map_add_dims(map1, isl_dim_in, 1);
397 map2 = isl_map_read_from_str(ctx,
398 "[n] -> { [i,k] -> [j] : exists (a = [i/10] : i - 10a <= n ) }");
399 equal = isl_map_is_equal(map1, map2);
400 isl_map_free(map2);
402 map1 = isl_map_project_out(map1, isl_dim_in, 0, 1);
403 map2 = isl_map_read_from_str(ctx, "[n] -> { [i] -> [j] : n >= 0 }");
404 if (equal >= 0 && equal)
405 equal = isl_map_is_equal(map1, map2);
407 isl_map_free(map1);
408 isl_map_free(map2);
410 if (equal < 0)
411 return -1;
412 if (!equal)
413 isl_die(ctx, isl_error_unknown,
414 "unexpected result", return -1);
416 str = "[n] -> { [i] -> [] : exists a : 0 <= i <= n and i = 2 a }";
417 map1 = isl_map_read_from_str(ctx, str);
418 str = "{ [i] -> [j] : exists a : 0 <= i <= j and i = 2 a }";
419 map2 = isl_map_read_from_str(ctx, str);
420 map1 = isl_map_move_dims(map1, isl_dim_out, 0, isl_dim_param, 0, 1);
421 equal = isl_map_is_equal(map1, map2);
422 isl_map_free(map1);
423 isl_map_free(map2);
425 if (equal < 0)
426 return -1;
427 if (!equal)
428 isl_die(ctx, isl_error_unknown,
429 "unexpected result", return -1);
431 return 0;
434 struct {
435 __isl_give isl_val *(*op)(__isl_take isl_val *v);
436 const char *arg;
437 const char *res;
438 } val_un_tests[] = {
439 { &isl_val_neg, "0", "0" },
440 { &isl_val_abs, "0", "0" },
441 { &isl_val_2exp, "0", "1" },
442 { &isl_val_floor, "0", "0" },
443 { &isl_val_ceil, "0", "0" },
444 { &isl_val_neg, "1", "-1" },
445 { &isl_val_neg, "-1", "1" },
446 { &isl_val_neg, "1/2", "-1/2" },
447 { &isl_val_neg, "-1/2", "1/2" },
448 { &isl_val_neg, "infty", "-infty" },
449 { &isl_val_neg, "-infty", "infty" },
450 { &isl_val_neg, "NaN", "NaN" },
451 { &isl_val_abs, "1", "1" },
452 { &isl_val_abs, "-1", "1" },
453 { &isl_val_abs, "1/2", "1/2" },
454 { &isl_val_abs, "-1/2", "1/2" },
455 { &isl_val_abs, "infty", "infty" },
456 { &isl_val_abs, "-infty", "infty" },
457 { &isl_val_abs, "NaN", "NaN" },
458 { &isl_val_floor, "1", "1" },
459 { &isl_val_floor, "-1", "-1" },
460 { &isl_val_floor, "1/2", "0" },
461 { &isl_val_floor, "-1/2", "-1" },
462 { &isl_val_floor, "infty", "infty" },
463 { &isl_val_floor, "-infty", "-infty" },
464 { &isl_val_floor, "NaN", "NaN" },
465 { &isl_val_ceil, "1", "1" },
466 { &isl_val_ceil, "-1", "-1" },
467 { &isl_val_ceil, "1/2", "1" },
468 { &isl_val_ceil, "-1/2", "0" },
469 { &isl_val_ceil, "infty", "infty" },
470 { &isl_val_ceil, "-infty", "-infty" },
471 { &isl_val_ceil, "NaN", "NaN" },
472 { &isl_val_2exp, "-3", "1/8" },
473 { &isl_val_2exp, "-1", "1/2" },
474 { &isl_val_2exp, "1", "2" },
475 { &isl_val_2exp, "2", "4" },
476 { &isl_val_2exp, "3", "8" },
477 { &isl_val_inv, "1", "1" },
478 { &isl_val_inv, "2", "1/2" },
479 { &isl_val_inv, "1/2", "2" },
480 { &isl_val_inv, "-2", "-1/2" },
481 { &isl_val_inv, "-1/2", "-2" },
482 { &isl_val_inv, "0", "NaN" },
483 { &isl_val_inv, "NaN", "NaN" },
484 { &isl_val_inv, "infty", "0" },
485 { &isl_val_inv, "-infty", "0" },
488 /* Perform some basic tests of unary operations on isl_val objects.
490 static int test_un_val(isl_ctx *ctx)
492 int i;
493 isl_val *v, *res;
494 __isl_give isl_val *(*fn)(__isl_take isl_val *v);
495 int ok;
497 for (i = 0; i < ARRAY_SIZE(val_un_tests); ++i) {
498 v = isl_val_read_from_str(ctx, val_un_tests[i].arg);
499 res = isl_val_read_from_str(ctx, val_un_tests[i].res);
500 fn = val_un_tests[i].op;
501 v = fn(v);
502 if (isl_val_is_nan(res))
503 ok = isl_val_is_nan(v);
504 else
505 ok = isl_val_eq(v, res);
506 isl_val_free(v);
507 isl_val_free(res);
508 if (ok < 0)
509 return -1;
510 if (!ok)
511 isl_die(ctx, isl_error_unknown,
512 "unexpected result", return -1);
515 return 0;
518 struct {
519 __isl_give isl_val *(*fn)(__isl_take isl_val *v1,
520 __isl_take isl_val *v2);
521 } val_bin_op[] = {
522 ['+'] = { &isl_val_add },
523 ['-'] = { &isl_val_sub },
524 ['*'] = { &isl_val_mul },
525 ['/'] = { &isl_val_div },
526 ['g'] = { &isl_val_gcd },
527 ['m'] = { &isl_val_min },
528 ['M'] = { &isl_val_max },
531 struct {
532 const char *arg1;
533 unsigned char op;
534 const char *arg2;
535 const char *res;
536 } val_bin_tests[] = {
537 { "0", '+', "0", "0" },
538 { "1", '+', "0", "1" },
539 { "1", '+', "1", "2" },
540 { "1", '-', "1", "0" },
541 { "1", '*', "1", "1" },
542 { "1", '/', "1", "1" },
543 { "2", '*', "3", "6" },
544 { "2", '*', "1/2", "1" },
545 { "2", '*', "1/3", "2/3" },
546 { "2/3", '*', "3/5", "2/5" },
547 { "2/3", '*', "7/5", "14/15" },
548 { "2", '/', "1/2", "4" },
549 { "-2", '/', "-1/2", "4" },
550 { "-2", '/', "1/2", "-4" },
551 { "2", '/', "-1/2", "-4" },
552 { "2", '/', "2", "1" },
553 { "2", '/', "3", "2/3" },
554 { "2/3", '/', "5/3", "2/5" },
555 { "2/3", '/', "5/7", "14/15" },
556 { "0", '/', "0", "NaN" },
557 { "42", '/', "0", "NaN" },
558 { "-42", '/', "0", "NaN" },
559 { "infty", '/', "0", "NaN" },
560 { "-infty", '/', "0", "NaN" },
561 { "NaN", '/', "0", "NaN" },
562 { "0", '/', "NaN", "NaN" },
563 { "42", '/', "NaN", "NaN" },
564 { "-42", '/', "NaN", "NaN" },
565 { "infty", '/', "NaN", "NaN" },
566 { "-infty", '/', "NaN", "NaN" },
567 { "NaN", '/', "NaN", "NaN" },
568 { "0", '/', "infty", "0" },
569 { "42", '/', "infty", "0" },
570 { "-42", '/', "infty", "0" },
571 { "infty", '/', "infty", "NaN" },
572 { "-infty", '/', "infty", "NaN" },
573 { "NaN", '/', "infty", "NaN" },
574 { "0", '/', "-infty", "0" },
575 { "42", '/', "-infty", "0" },
576 { "-42", '/', "-infty", "0" },
577 { "infty", '/', "-infty", "NaN" },
578 { "-infty", '/', "-infty", "NaN" },
579 { "NaN", '/', "-infty", "NaN" },
580 { "1", '-', "1/3", "2/3" },
581 { "1/3", '+', "1/2", "5/6" },
582 { "1/2", '+', "1/2", "1" },
583 { "3/4", '-', "1/4", "1/2" },
584 { "1/2", '-', "1/3", "1/6" },
585 { "infty", '+', "42", "infty" },
586 { "infty", '+', "infty", "infty" },
587 { "42", '+', "infty", "infty" },
588 { "infty", '-', "infty", "NaN" },
589 { "infty", '*', "infty", "infty" },
590 { "infty", '*', "-infty", "-infty" },
591 { "-infty", '*', "infty", "-infty" },
592 { "-infty", '*', "-infty", "infty" },
593 { "0", '*', "infty", "NaN" },
594 { "1", '*', "infty", "infty" },
595 { "infty", '*', "0", "NaN" },
596 { "infty", '*', "42", "infty" },
597 { "42", '-', "infty", "-infty" },
598 { "infty", '+', "-infty", "NaN" },
599 { "4", 'g', "6", "2" },
600 { "5", 'g', "6", "1" },
601 { "42", 'm', "3", "3" },
602 { "42", 'M', "3", "42" },
603 { "3", 'm', "42", "3" },
604 { "3", 'M', "42", "42" },
605 { "42", 'm', "infty", "42" },
606 { "42", 'M', "infty", "infty" },
607 { "42", 'm', "-infty", "-infty" },
608 { "42", 'M', "-infty", "42" },
609 { "42", 'm', "NaN", "NaN" },
610 { "42", 'M', "NaN", "NaN" },
611 { "infty", 'm', "-infty", "-infty" },
612 { "infty", 'M', "-infty", "infty" },
615 /* Perform some basic tests of binary operations on isl_val objects.
617 static int test_bin_val(isl_ctx *ctx)
619 int i;
620 isl_val *v1, *v2, *res;
621 __isl_give isl_val *(*fn)(__isl_take isl_val *v1,
622 __isl_take isl_val *v2);
623 int ok;
625 for (i = 0; i < ARRAY_SIZE(val_bin_tests); ++i) {
626 v1 = isl_val_read_from_str(ctx, val_bin_tests[i].arg1);
627 v2 = isl_val_read_from_str(ctx, val_bin_tests[i].arg2);
628 res = isl_val_read_from_str(ctx, val_bin_tests[i].res);
629 fn = val_bin_op[val_bin_tests[i].op].fn;
630 v1 = fn(v1, v2);
631 if (isl_val_is_nan(res))
632 ok = isl_val_is_nan(v1);
633 else
634 ok = isl_val_eq(v1, res);
635 isl_val_free(v1);
636 isl_val_free(res);
637 if (ok < 0)
638 return -1;
639 if (!ok)
640 isl_die(ctx, isl_error_unknown,
641 "unexpected result", return -1);
644 return 0;
647 /* Perform some basic tests on isl_val objects.
649 static int test_val(isl_ctx *ctx)
651 if (test_un_val(ctx) < 0)
652 return -1;
653 if (test_bin_val(ctx) < 0)
654 return -1;
655 return 0;
658 static int test_div(isl_ctx *ctx)
660 unsigned n;
661 const char *str;
662 int empty;
663 isl_int v;
664 isl_space *dim;
665 isl_set *set;
666 isl_local_space *ls;
667 struct isl_basic_set *bset;
668 struct isl_constraint *c;
670 isl_int_init(v);
672 /* test 1 */
673 dim = isl_space_set_alloc(ctx, 0, 3);
674 bset = isl_basic_set_universe(isl_space_copy(dim));
675 ls = isl_local_space_from_space(dim);
677 c = isl_equality_alloc(isl_local_space_copy(ls));
678 isl_int_set_si(v, -1);
679 isl_constraint_set_constant(c, v);
680 isl_int_set_si(v, 1);
681 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
682 isl_int_set_si(v, 3);
683 isl_constraint_set_coefficient(c, isl_dim_set, 1, v);
684 bset = isl_basic_set_add_constraint(bset, c);
686 c = isl_equality_alloc(isl_local_space_copy(ls));
687 isl_int_set_si(v, 1);
688 isl_constraint_set_constant(c, v);
689 isl_int_set_si(v, -1);
690 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
691 isl_int_set_si(v, 3);
692 isl_constraint_set_coefficient(c, isl_dim_set, 2, v);
693 bset = isl_basic_set_add_constraint(bset, c);
695 bset = isl_basic_set_project_out(bset, isl_dim_set, 1, 2);
697 assert(bset && bset->n_div == 1);
698 isl_local_space_free(ls);
699 isl_basic_set_free(bset);
701 /* test 2 */
702 dim = isl_space_set_alloc(ctx, 0, 3);
703 bset = isl_basic_set_universe(isl_space_copy(dim));
704 ls = isl_local_space_from_space(dim);
706 c = isl_equality_alloc(isl_local_space_copy(ls));
707 isl_int_set_si(v, 1);
708 isl_constraint_set_constant(c, v);
709 isl_int_set_si(v, -1);
710 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
711 isl_int_set_si(v, 3);
712 isl_constraint_set_coefficient(c, isl_dim_set, 1, v);
713 bset = isl_basic_set_add_constraint(bset, c);
715 c = isl_equality_alloc(isl_local_space_copy(ls));
716 isl_int_set_si(v, -1);
717 isl_constraint_set_constant(c, v);
718 isl_int_set_si(v, 1);
719 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
720 isl_int_set_si(v, 3);
721 isl_constraint_set_coefficient(c, isl_dim_set, 2, v);
722 bset = isl_basic_set_add_constraint(bset, c);
724 bset = isl_basic_set_project_out(bset, isl_dim_set, 1, 2);
726 assert(bset && bset->n_div == 1);
727 isl_local_space_free(ls);
728 isl_basic_set_free(bset);
730 /* test 3 */
731 dim = isl_space_set_alloc(ctx, 0, 3);
732 bset = isl_basic_set_universe(isl_space_copy(dim));
733 ls = isl_local_space_from_space(dim);
735 c = isl_equality_alloc(isl_local_space_copy(ls));
736 isl_int_set_si(v, 1);
737 isl_constraint_set_constant(c, v);
738 isl_int_set_si(v, -1);
739 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
740 isl_int_set_si(v, 3);
741 isl_constraint_set_coefficient(c, isl_dim_set, 1, v);
742 bset = isl_basic_set_add_constraint(bset, c);
744 c = isl_equality_alloc(isl_local_space_copy(ls));
745 isl_int_set_si(v, -3);
746 isl_constraint_set_constant(c, v);
747 isl_int_set_si(v, 1);
748 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
749 isl_int_set_si(v, 4);
750 isl_constraint_set_coefficient(c, isl_dim_set, 2, v);
751 bset = isl_basic_set_add_constraint(bset, c);
753 bset = isl_basic_set_project_out(bset, isl_dim_set, 1, 2);
755 assert(bset && bset->n_div == 1);
756 isl_local_space_free(ls);
757 isl_basic_set_free(bset);
759 /* test 4 */
760 dim = isl_space_set_alloc(ctx, 0, 3);
761 bset = isl_basic_set_universe(isl_space_copy(dim));
762 ls = isl_local_space_from_space(dim);
764 c = isl_equality_alloc(isl_local_space_copy(ls));
765 isl_int_set_si(v, 2);
766 isl_constraint_set_constant(c, v);
767 isl_int_set_si(v, -1);
768 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
769 isl_int_set_si(v, 3);
770 isl_constraint_set_coefficient(c, isl_dim_set, 1, v);
771 bset = isl_basic_set_add_constraint(bset, c);
773 c = isl_equality_alloc(isl_local_space_copy(ls));
774 isl_int_set_si(v, -1);
775 isl_constraint_set_constant(c, v);
776 isl_int_set_si(v, 1);
777 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
778 isl_int_set_si(v, 6);
779 isl_constraint_set_coefficient(c, isl_dim_set, 2, v);
780 bset = isl_basic_set_add_constraint(bset, c);
782 bset = isl_basic_set_project_out(bset, isl_dim_set, 1, 2);
784 assert(isl_basic_set_is_empty(bset));
785 isl_local_space_free(ls);
786 isl_basic_set_free(bset);
788 /* test 5 */
789 dim = isl_space_set_alloc(ctx, 0, 3);
790 bset = isl_basic_set_universe(isl_space_copy(dim));
791 ls = isl_local_space_from_space(dim);
793 c = isl_equality_alloc(isl_local_space_copy(ls));
794 isl_int_set_si(v, -1);
795 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
796 isl_int_set_si(v, 3);
797 isl_constraint_set_coefficient(c, isl_dim_set, 2, v);
798 bset = isl_basic_set_add_constraint(bset, c);
800 c = isl_equality_alloc(isl_local_space_copy(ls));
801 isl_int_set_si(v, 1);
802 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
803 isl_int_set_si(v, -3);
804 isl_constraint_set_coefficient(c, isl_dim_set, 1, v);
805 bset = isl_basic_set_add_constraint(bset, c);
807 bset = isl_basic_set_project_out(bset, isl_dim_set, 2, 1);
809 assert(bset && bset->n_div == 0);
810 isl_basic_set_free(bset);
811 isl_local_space_free(ls);
813 /* test 6 */
814 dim = isl_space_set_alloc(ctx, 0, 3);
815 bset = isl_basic_set_universe(isl_space_copy(dim));
816 ls = isl_local_space_from_space(dim);
818 c = isl_equality_alloc(isl_local_space_copy(ls));
819 isl_int_set_si(v, -1);
820 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
821 isl_int_set_si(v, 6);
822 isl_constraint_set_coefficient(c, isl_dim_set, 2, v);
823 bset = isl_basic_set_add_constraint(bset, c);
825 c = isl_equality_alloc(isl_local_space_copy(ls));
826 isl_int_set_si(v, 1);
827 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
828 isl_int_set_si(v, -3);
829 isl_constraint_set_coefficient(c, isl_dim_set, 1, v);
830 bset = isl_basic_set_add_constraint(bset, c);
832 bset = isl_basic_set_project_out(bset, isl_dim_set, 2, 1);
834 assert(bset && bset->n_div == 1);
835 isl_basic_set_free(bset);
836 isl_local_space_free(ls);
838 /* test 7 */
839 /* This test is a bit tricky. We set up an equality
840 * a + 3b + 3c = 6 e0
841 * Normalization of divs creates _two_ divs
842 * a = 3 e0
843 * c - b - e0 = 2 e1
844 * Afterwards e0 is removed again because it has coefficient -1
845 * and we end up with the original equality and div again.
846 * Perhaps we can avoid the introduction of this temporary div.
848 dim = isl_space_set_alloc(ctx, 0, 4);
849 bset = isl_basic_set_universe(isl_space_copy(dim));
850 ls = isl_local_space_from_space(dim);
852 c = isl_equality_alloc(isl_local_space_copy(ls));
853 isl_int_set_si(v, -1);
854 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
855 isl_int_set_si(v, -3);
856 isl_constraint_set_coefficient(c, isl_dim_set, 1, v);
857 isl_int_set_si(v, -3);
858 isl_constraint_set_coefficient(c, isl_dim_set, 2, v);
859 isl_int_set_si(v, 6);
860 isl_constraint_set_coefficient(c, isl_dim_set, 3, v);
861 bset = isl_basic_set_add_constraint(bset, c);
863 bset = isl_basic_set_project_out(bset, isl_dim_set, 3, 1);
865 /* Test disabled for now */
867 assert(bset && bset->n_div == 1);
869 isl_local_space_free(ls);
870 isl_basic_set_free(bset);
872 /* test 8 */
873 dim = isl_space_set_alloc(ctx, 0, 5);
874 bset = isl_basic_set_universe(isl_space_copy(dim));
875 ls = isl_local_space_from_space(dim);
877 c = isl_equality_alloc(isl_local_space_copy(ls));
878 isl_int_set_si(v, -1);
879 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
880 isl_int_set_si(v, -3);
881 isl_constraint_set_coefficient(c, isl_dim_set, 1, v);
882 isl_int_set_si(v, -3);
883 isl_constraint_set_coefficient(c, isl_dim_set, 3, v);
884 isl_int_set_si(v, 6);
885 isl_constraint_set_coefficient(c, isl_dim_set, 4, v);
886 bset = isl_basic_set_add_constraint(bset, c);
888 c = isl_equality_alloc(isl_local_space_copy(ls));
889 isl_int_set_si(v, -1);
890 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
891 isl_int_set_si(v, 1);
892 isl_constraint_set_coefficient(c, isl_dim_set, 2, v);
893 isl_int_set_si(v, 1);
894 isl_constraint_set_constant(c, v);
895 bset = isl_basic_set_add_constraint(bset, c);
897 bset = isl_basic_set_project_out(bset, isl_dim_set, 4, 1);
899 /* Test disabled for now */
901 assert(bset && bset->n_div == 1);
903 isl_local_space_free(ls);
904 isl_basic_set_free(bset);
906 /* test 9 */
907 dim = isl_space_set_alloc(ctx, 0, 4);
908 bset = isl_basic_set_universe(isl_space_copy(dim));
909 ls = isl_local_space_from_space(dim);
911 c = isl_equality_alloc(isl_local_space_copy(ls));
912 isl_int_set_si(v, 1);
913 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
914 isl_int_set_si(v, -1);
915 isl_constraint_set_coefficient(c, isl_dim_set, 1, v);
916 isl_int_set_si(v, -2);
917 isl_constraint_set_coefficient(c, isl_dim_set, 2, v);
918 bset = isl_basic_set_add_constraint(bset, c);
920 c = isl_equality_alloc(isl_local_space_copy(ls));
921 isl_int_set_si(v, -1);
922 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
923 isl_int_set_si(v, 3);
924 isl_constraint_set_coefficient(c, isl_dim_set, 3, v);
925 isl_int_set_si(v, 2);
926 isl_constraint_set_constant(c, v);
927 bset = isl_basic_set_add_constraint(bset, c);
929 bset = isl_basic_set_project_out(bset, isl_dim_set, 2, 2);
931 bset = isl_basic_set_fix_si(bset, isl_dim_set, 0, 2);
933 assert(!isl_basic_set_is_empty(bset));
935 isl_local_space_free(ls);
936 isl_basic_set_free(bset);
938 /* test 10 */
939 dim = isl_space_set_alloc(ctx, 0, 3);
940 bset = isl_basic_set_universe(isl_space_copy(dim));
941 ls = isl_local_space_from_space(dim);
943 c = isl_equality_alloc(isl_local_space_copy(ls));
944 isl_int_set_si(v, 1);
945 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
946 isl_int_set_si(v, -2);
947 isl_constraint_set_coefficient(c, isl_dim_set, 2, v);
948 bset = isl_basic_set_add_constraint(bset, c);
950 bset = isl_basic_set_project_out(bset, isl_dim_set, 2, 1);
952 bset = isl_basic_set_fix_si(bset, isl_dim_set, 0, 2);
954 isl_local_space_free(ls);
955 isl_basic_set_free(bset);
957 isl_int_clear(v);
959 str = "{ [i] : exists (e0, e1: 3e1 >= 1 + 2e0 and "
960 "8e1 <= -1 + 5i - 5e0 and 2e1 >= 1 + 2i - 5e0) }";
961 set = isl_set_read_from_str(ctx, str);
962 set = isl_set_compute_divs(set);
963 isl_set_free(set);
964 if (!set)
965 return -1;
967 str = "{ [i,j] : 2*[i/2] + 3 * [j/4] <= 10 and 2 i = j }";
968 bset = isl_basic_set_read_from_str(ctx, str);
969 n = isl_basic_set_dim(bset, isl_dim_div);
970 isl_basic_set_free(bset);
971 if (!bset)
972 return -1;
973 if (n != 0)
974 isl_die(ctx, isl_error_unknown,
975 "expecting no existentials", return -1);
977 str = "{ [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }";
978 set = isl_set_read_from_str(ctx, str);
979 set = isl_set_remove_divs_involving_dims(set, isl_dim_set, 0, 2);
980 set = isl_set_fix_si(set, isl_dim_set, 2, -3);
981 empty = isl_set_is_empty(set);
982 isl_set_free(set);
983 if (empty < 0)
984 return -1;
985 if (!empty)
986 isl_die(ctx, isl_error_unknown,
987 "result not as accurate as expected", return -1);
989 return 0;
992 void test_application_case(struct isl_ctx *ctx, const char *name)
994 char *filename;
995 FILE *input;
996 struct isl_basic_set *bset1, *bset2;
997 struct isl_basic_map *bmap;
999 filename = get_filename(ctx, name, "omega");
1000 assert(filename);
1001 input = fopen(filename, "r");
1002 assert(input);
1004 bset1 = isl_basic_set_read_from_file(ctx, input);
1005 bmap = isl_basic_map_read_from_file(ctx, input);
1007 bset1 = isl_basic_set_apply(bset1, bmap);
1009 bset2 = isl_basic_set_read_from_file(ctx, input);
1011 assert(isl_basic_set_is_equal(bset1, bset2) == 1);
1013 isl_basic_set_free(bset1);
1014 isl_basic_set_free(bset2);
1015 free(filename);
1017 fclose(input);
1020 static int test_application(isl_ctx *ctx)
1022 test_application_case(ctx, "application");
1023 test_application_case(ctx, "application2");
1025 return 0;
1028 void test_affine_hull_case(struct isl_ctx *ctx, const char *name)
1030 char *filename;
1031 FILE *input;
1032 struct isl_basic_set *bset1, *bset2;
1034 filename = get_filename(ctx, name, "polylib");
1035 assert(filename);
1036 input = fopen(filename, "r");
1037 assert(input);
1039 bset1 = isl_basic_set_read_from_file(ctx, input);
1040 bset2 = isl_basic_set_read_from_file(ctx, input);
1042 bset1 = isl_basic_set_affine_hull(bset1);
1044 assert(isl_basic_set_is_equal(bset1, bset2) == 1);
1046 isl_basic_set_free(bset1);
1047 isl_basic_set_free(bset2);
1048 free(filename);
1050 fclose(input);
1053 int test_affine_hull(struct isl_ctx *ctx)
1055 const char *str;
1056 isl_set *set;
1057 isl_basic_set *bset, *bset2;
1058 int n;
1059 int subset;
1061 test_affine_hull_case(ctx, "affine2");
1062 test_affine_hull_case(ctx, "affine");
1063 test_affine_hull_case(ctx, "affine3");
1065 str = "[m] -> { [i0] : exists (e0, e1: e1 <= 1 + i0 and "
1066 "m >= 3 and 4i0 <= 2 + m and e1 >= i0 and "
1067 "e1 >= 0 and e1 <= 2 and e1 >= 1 + 2e0 and "
1068 "2e1 <= 1 + m + 4e0 and 2e1 >= 2 - m + 4i0 - 4e0) }";
1069 set = isl_set_read_from_str(ctx, str);
1070 bset = isl_set_affine_hull(set);
1071 n = isl_basic_set_dim(bset, isl_dim_div);
1072 isl_basic_set_free(bset);
1073 if (n != 0)
1074 isl_die(ctx, isl_error_unknown, "not expecting any divs",
1075 return -1);
1077 /* Check that isl_map_affine_hull is not confused by
1078 * the reordering of divs in isl_map_align_divs.
1080 str = "{ [a, b, c, 0] : exists (e0 = [(b)/32], e1 = [(c)/32]: "
1081 "32e0 = b and 32e1 = c); "
1082 "[a, 0, c, 0] : exists (e0 = [(c)/32]: 32e0 = c) }";
1083 set = isl_set_read_from_str(ctx, str);
1084 bset = isl_set_affine_hull(set);
1085 isl_basic_set_free(bset);
1086 if (!bset)
1087 return -1;
1089 str = "{ [a] : exists e0, e1, e2: 32e1 = 31 + 31a + 31e0 and "
1090 "32e2 = 31 + 31e0 }";
1091 set = isl_set_read_from_str(ctx, str);
1092 bset = isl_set_affine_hull(set);
1093 str = "{ [a] : exists e : a = 32 e }";
1094 bset2 = isl_basic_set_read_from_str(ctx, str);
1095 subset = isl_basic_set_is_subset(bset, bset2);
1096 isl_basic_set_free(bset);
1097 isl_basic_set_free(bset2);
1098 if (subset < 0)
1099 return -1;
1100 if (!subset)
1101 isl_die(ctx, isl_error_unknown, "not as accurate as expected",
1102 return -1);
1104 return 0;
1107 void test_convex_hull_case(struct isl_ctx *ctx, const char *name)
1109 char *filename;
1110 FILE *input;
1111 struct isl_basic_set *bset1, *bset2;
1112 struct isl_set *set;
1114 filename = get_filename(ctx, name, "polylib");
1115 assert(filename);
1116 input = fopen(filename, "r");
1117 assert(input);
1119 bset1 = isl_basic_set_read_from_file(ctx, input);
1120 bset2 = isl_basic_set_read_from_file(ctx, input);
1122 set = isl_basic_set_union(bset1, bset2);
1123 bset1 = isl_set_convex_hull(set);
1125 bset2 = isl_basic_set_read_from_file(ctx, input);
1127 assert(isl_basic_set_is_equal(bset1, bset2) == 1);
1129 isl_basic_set_free(bset1);
1130 isl_basic_set_free(bset2);
1131 free(filename);
1133 fclose(input);
1136 struct {
1137 const char *set;
1138 const char *hull;
1139 } convex_hull_tests[] = {
1140 { "{ [i0, i1, i2] : (i2 = 1 and i0 = 0 and i1 >= 0) or "
1141 "(i0 = 1 and i1 = 0 and i2 = 1) or "
1142 "(i0 = 0 and i1 = 0 and i2 = 0) }",
1143 "{ [i0, i1, i2] : i0 >= 0 and i2 >= i0 and i2 <= 1 and i1 >= 0 }" },
1144 { "[n] -> { [i0, i1, i0] : i0 <= -4 + n; "
1145 "[i0, i0, i2] : n = 6 and i0 >= 0 and i2 <= 7 - i0 and "
1146 "i2 <= 5 and i2 >= 4; "
1147 "[3, i1, 3] : n = 5 and i1 <= 2 and i1 >= 0 }",
1148 "[n] -> { [i0, i1, i2] : i2 <= -1 + n and 2i2 <= -6 + 3n - i0 and "
1149 "i2 <= 5 + i0 and i2 >= i0 }" },
1150 { "{ [x, y] : 3y <= 2x and y >= -2 + 2x and 2y >= 2 - x }",
1151 "{ [x, y] : 1 = 0 }" },
1154 static int test_convex_hull_algo(isl_ctx *ctx, int convex)
1156 int i;
1157 int orig_convex = ctx->opt->convex;
1158 ctx->opt->convex = convex;
1160 test_convex_hull_case(ctx, "convex0");
1161 test_convex_hull_case(ctx, "convex1");
1162 test_convex_hull_case(ctx, "convex2");
1163 test_convex_hull_case(ctx, "convex3");
1164 test_convex_hull_case(ctx, "convex4");
1165 test_convex_hull_case(ctx, "convex5");
1166 test_convex_hull_case(ctx, "convex6");
1167 test_convex_hull_case(ctx, "convex7");
1168 test_convex_hull_case(ctx, "convex8");
1169 test_convex_hull_case(ctx, "convex9");
1170 test_convex_hull_case(ctx, "convex10");
1171 test_convex_hull_case(ctx, "convex11");
1172 test_convex_hull_case(ctx, "convex12");
1173 test_convex_hull_case(ctx, "convex13");
1174 test_convex_hull_case(ctx, "convex14");
1175 test_convex_hull_case(ctx, "convex15");
1177 for (i = 0; i < ARRAY_SIZE(convex_hull_tests); ++i) {
1178 isl_set *set1, *set2;
1179 int equal;
1181 set1 = isl_set_read_from_str(ctx, convex_hull_tests[i].set);
1182 set2 = isl_set_read_from_str(ctx, convex_hull_tests[i].hull);
1183 set1 = isl_set_from_basic_set(isl_set_convex_hull(set1));
1184 equal = isl_set_is_equal(set1, set2);
1185 isl_set_free(set1);
1186 isl_set_free(set2);
1188 if (equal < 0)
1189 return -1;
1190 if (!equal)
1191 isl_die(ctx, isl_error_unknown,
1192 "unexpected convex hull", return -1);
1195 ctx->opt->convex = orig_convex;
1197 return 0;
1200 static int test_convex_hull(isl_ctx *ctx)
1202 if (test_convex_hull_algo(ctx, ISL_CONVEX_HULL_FM) < 0)
1203 return -1;
1204 if (test_convex_hull_algo(ctx, ISL_CONVEX_HULL_WRAP) < 0)
1205 return -1;
1206 return 0;
1209 void test_gist_case(struct isl_ctx *ctx, const char *name)
1211 char *filename;
1212 FILE *input;
1213 struct isl_basic_set *bset1, *bset2;
1215 filename = get_filename(ctx, name, "polylib");
1216 assert(filename);
1217 input = fopen(filename, "r");
1218 assert(input);
1220 bset1 = isl_basic_set_read_from_file(ctx, input);
1221 bset2 = isl_basic_set_read_from_file(ctx, input);
1223 bset1 = isl_basic_set_gist(bset1, bset2);
1225 bset2 = isl_basic_set_read_from_file(ctx, input);
1227 assert(isl_basic_set_is_equal(bset1, bset2) == 1);
1229 isl_basic_set_free(bset1);
1230 isl_basic_set_free(bset2);
1231 free(filename);
1233 fclose(input);
1236 struct {
1237 const char *set;
1238 const char *context;
1239 const char *gist;
1240 } gist_tests[] = {
1241 { "{ [a, b, c] : a <= 15 and a >= 1 }",
1242 "{ [a, b, c] : exists (e0 = floor((-1 + a)/16): a >= 1 and "
1243 "c <= 30 and 32e0 >= -62 + 2a + 2b - c and b >= 0) }",
1244 "{ [a, b, c] : a <= 15 }" },
1245 { "{ : }", "{ : 1 = 0 }", "{ : }" },
1246 { "{ : 1 = 0 }", "{ : 1 = 0 }", "{ : }" },
1247 { "[M] -> { [x] : exists (e0 = floor((-2 + x)/3): 3e0 = -2 + x) }",
1248 "[M] -> { [3M] }" , "[M] -> { [x] : 1 = 0 }" },
1249 { "{ [m, n, a, b] : a <= 2147 + n }",
1250 "{ [m, n, a, b] : (m >= 1 and n >= 1 and a <= 2148 - m and "
1251 "b <= 2148 - n and b >= 0 and b >= 2149 - n - a) or "
1252 "(n >= 1 and a >= 0 and b <= 2148 - n - a and "
1253 "b >= 0) }",
1254 "{ [m, n, ku, kl] }" },
1257 static int test_gist(struct isl_ctx *ctx)
1259 int i;
1260 const char *str;
1261 isl_basic_set *bset1, *bset2;
1262 isl_map *map1, *map2;
1263 int equal;
1265 for (i = 0; i < ARRAY_SIZE(gist_tests); ++i) {
1266 int equal_input;
1267 isl_set *set1, *set2, *copy;
1269 set1 = isl_set_read_from_str(ctx, gist_tests[i].set);
1270 set2 = isl_set_read_from_str(ctx, gist_tests[i].context);
1271 copy = isl_set_copy(set1);
1272 set1 = isl_set_gist(set1, set2);
1273 set2 = isl_set_read_from_str(ctx, gist_tests[i].gist);
1274 equal = isl_set_is_equal(set1, set2);
1275 isl_set_free(set1);
1276 isl_set_free(set2);
1277 set1 = isl_set_read_from_str(ctx, gist_tests[i].set);
1278 equal_input = isl_set_is_equal(set1, copy);
1279 isl_set_free(set1);
1280 isl_set_free(copy);
1281 if (equal < 0 || equal_input < 0)
1282 return -1;
1283 if (!equal)
1284 isl_die(ctx, isl_error_unknown,
1285 "incorrect gist result", return -1);
1286 if (!equal_input)
1287 isl_die(ctx, isl_error_unknown,
1288 "gist modified input", return -1);
1291 test_gist_case(ctx, "gist1");
1293 str = "[p0, p2, p3, p5, p6, p10] -> { [] : "
1294 "exists (e0 = [(15 + p0 + 15p6 + 15p10)/16], e1 = [(p5)/8], "
1295 "e2 = [(p6)/128], e3 = [(8p2 - p5)/128], "
1296 "e4 = [(128p3 - p6)/4096]: 8e1 = p5 and 128e2 = p6 and "
1297 "128e3 = 8p2 - p5 and 4096e4 = 128p3 - p6 and p2 >= 0 and "
1298 "16e0 >= 16 + 16p6 + 15p10 and p2 <= 15 and p3 >= 0 and "
1299 "p3 <= 31 and p6 >= 128p3 and p5 >= 8p2 and p10 >= 0 and "
1300 "16e0 <= 15 + p0 + 15p6 + 15p10 and 16e0 >= p0 + 15p6 + 15p10 and "
1301 "p10 <= 15 and p10 <= -1 + p0 - p6) }";
1302 bset1 = isl_basic_set_read_from_str(ctx, str);
1303 str = "[p0, p2, p3, p5, p6, p10] -> { [] : exists (e0 = [(p5)/8], "
1304 "e1 = [(p6)/128], e2 = [(8p2 - p5)/128], "
1305 "e3 = [(128p3 - p6)/4096]: 8e0 = p5 and 128e1 = p6 and "
1306 "128e2 = 8p2 - p5 and 4096e3 = 128p3 - p6 and p5 >= -7 and "
1307 "p2 >= 0 and 8p2 <= -1 + p0 and p2 <= 15 and p3 >= 0 and "
1308 "p3 <= 31 and 128p3 <= -1 + p0 and p6 >= -127 and "
1309 "p5 <= -1 + p0 and p6 <= -1 + p0 and p6 >= 128p3 and "
1310 "p0 >= 1 and p5 >= 8p2 and p10 >= 0 and p10 <= 15 ) }";
1311 bset2 = isl_basic_set_read_from_str(ctx, str);
1312 bset1 = isl_basic_set_gist(bset1, bset2);
1313 assert(bset1 && bset1->n_div == 0);
1314 isl_basic_set_free(bset1);
1316 /* Check that the integer divisions of the second disjunct
1317 * do not spread to the first disjunct.
1319 str = "[t1] -> { S_0[] -> A[o0] : (exists (e0 = [(-t1 + o0)/16]: "
1320 "16e0 = -t1 + o0 and o0 >= 0 and o0 <= 15 and t1 >= 0)) or "
1321 "(exists (e0 = [(-1 + t1)/16], "
1322 "e1 = [(-16 + t1 - 16e0)/4294967296]: "
1323 "4294967296e1 = -16 + t1 - o0 - 16e0 and "
1324 "16e0 <= -1 + t1 and 16e0 >= -16 + t1 and o0 >= 0 and "
1325 "o0 <= 4294967295 and t1 <= -1)) }";
1326 map1 = isl_map_read_from_str(ctx, str);
1327 str = "[t1] -> { S_0[] -> A[o0] : t1 >= 0 and t1 <= 4294967295 }";
1328 map2 = isl_map_read_from_str(ctx, str);
1329 map1 = isl_map_gist(map1, map2);
1330 if (!map1)
1331 return -1;
1332 if (map1->n != 1)
1333 isl_die(ctx, isl_error_unknown, "expecting single disjunct",
1334 isl_map_free(map1); return -1);
1335 if (isl_basic_map_dim(map1->p[0], isl_dim_div) != 1)
1336 isl_die(ctx, isl_error_unknown, "expecting single div",
1337 isl_map_free(map1); return -1);
1338 isl_map_free(map1);
1340 return 0;
1343 int test_coalesce_set(isl_ctx *ctx, const char *str, int check_one)
1345 isl_set *set, *set2;
1346 int equal;
1347 int one;
1349 set = isl_set_read_from_str(ctx, str);
1350 set = isl_set_coalesce(set);
1351 set2 = isl_set_read_from_str(ctx, str);
1352 equal = isl_set_is_equal(set, set2);
1353 one = set && set->n == 1;
1354 isl_set_free(set);
1355 isl_set_free(set2);
1357 if (equal < 0)
1358 return -1;
1359 if (!equal)
1360 isl_die(ctx, isl_error_unknown,
1361 "coalesced set not equal to input", return -1);
1362 if (check_one && !one)
1363 isl_die(ctx, isl_error_unknown,
1364 "coalesced set should not be a union", return -1);
1366 return 0;
1369 /* Inputs for coalescing tests with unbounded wrapping.
1370 * "str" is a string representation of the input set.
1371 * "single_disjunct" is set if we expect the result to consist of
1372 * a single disjunct.
1374 struct {
1375 int single_disjunct;
1376 const char *str;
1377 } coalesce_unbounded_tests[] = {
1378 { 1, "{ [x,y,z] : y + 2 >= 0 and x - y + 1 >= 0 and "
1379 "-x - y + 1 >= 0 and -3 <= z <= 3;"
1380 "[x,y,z] : -x+z + 20 >= 0 and -x-z + 20 >= 0 and "
1381 "x-z + 20 >= 0 and x+z + 20 >= 0 and "
1382 "-10 <= y <= 0}" },
1383 { 1, "{ [x,y] : 0 <= x,y <= 10; [5,y]: 4 <= y <= 11 }" },
1384 { 1, "{ [x,0,0] : -5 <= x <= 5; [0,y,1] : -5 <= y <= 5 }" },
1385 { 1, "{ [x,y] : 0 <= x <= 10 and 0 >= y >= -1 and x+y >= 0; [0,1] }" },
1386 { 1, "{ [x,y] : (0 <= x,y <= 4) or (2 <= x,y <= 5 and x + y <= 9) }" },
1389 /* Test the functionality of isl_set_coalesce with the bounded wrapping
1390 * option turned off.
1392 int test_coalesce_unbounded_wrapping(isl_ctx *ctx)
1394 int i;
1395 int r = 0;
1396 int bounded;
1398 bounded = isl_options_get_coalesce_bounded_wrapping(ctx);
1399 isl_options_set_coalesce_bounded_wrapping(ctx, 0);
1401 for (i = 0; i < ARRAY_SIZE(coalesce_unbounded_tests); ++i) {
1402 const char *str = coalesce_unbounded_tests[i].str;
1403 int check_one = coalesce_unbounded_tests[i].single_disjunct;
1404 if (test_coalesce_set(ctx, str, check_one) >= 0)
1405 continue;
1406 r = -1;
1407 break;
1410 isl_options_set_coalesce_bounded_wrapping(ctx, bounded);
1412 return r;
1415 /* Inputs for coalescing tests.
1416 * "str" is a string representation of the input set.
1417 * "single_disjunct" is set if we expect the result to consist of
1418 * a single disjunct.
1420 struct {
1421 int single_disjunct;
1422 const char *str;
1423 } coalesce_tests[] = {
1424 { 1, "{[x,y]: x >= 0 & x <= 10 & y >= 0 & y <= 10 or "
1425 "y >= x & x >= 2 & 5 >= y }" },
1426 { 1, "{[x,y]: y >= 0 & 2x + y <= 30 & y <= 10 & x >= 0 or "
1427 "x + y >= 10 & y <= x & x + y <= 20 & y >= 0}" },
1428 { 0, "{[x,y]: y >= 0 & 2x + y <= 30 & y <= 10 & x >= 0 or "
1429 "x + y >= 10 & y <= x & x + y <= 19 & y >= 0}" },
1430 { 1, "{[x,y]: y >= 0 & x <= 5 & y <= x or "
1431 "y >= 0 & x >= 6 & x <= 10 & y <= x}" },
1432 { 0, "{[x,y]: y >= 0 & x <= 5 & y <= x or "
1433 "y >= 0 & x >= 7 & x <= 10 & y <= x}" },
1434 { 0, "{[x,y]: y >= 0 & x <= 5 & y <= x or "
1435 "y >= 0 & x >= 6 & x <= 10 & y + 1 <= x}" },
1436 { 1, "{[x,y]: y >= 0 & x <= 5 & y <= x or y >= 0 & x = 6 & y <= 6}" },
1437 { 0, "{[x,y]: y >= 0 & x <= 5 & y <= x or y >= 0 & x = 7 & y <= 6}" },
1438 { 1, "{[x,y]: y >= 0 & x <= 5 & y <= x or y >= 0 & x = 6 & y <= 5}" },
1439 { 0, "{[x,y]: y >= 0 & x <= 5 & y <= x or y >= 0 & x = 6 & y <= 7}" },
1440 { 1, "[n] -> { [i] : i = 1 and n >= 2 or 2 <= i and i <= n }" },
1441 { 0, "{[x,y] : x >= 0 and y >= 0 or 0 <= y and y <= 5 and x = -1}" },
1442 { 1, "[n] -> { [i] : 1 <= i and i <= n - 1 or 2 <= i and i <= n }" },
1443 { 0, "[n] -> { [[i0] -> [o0]] : exists (e0 = [(i0)/4], e1 = [(o0)/4], "
1444 "e2 = [(n)/2], e3 = [(-2 + i0)/4], e4 = [(-2 + o0)/4], "
1445 "e5 = [(-2n + i0)/4]: 2e2 = n and 4e3 = -2 + i0 and "
1446 "4e4 = -2 + o0 and i0 >= 8 + 2n and o0 >= 2 + i0 and "
1447 "o0 <= 56 + 2n and o0 <= -12 + 4n and i0 <= 57 + 2n and "
1448 "i0 <= -11 + 4n and o0 >= 6 + 2n and 4e0 <= i0 and "
1449 "4e0 >= -3 + i0 and 4e1 <= o0 and 4e1 >= -3 + o0 and "
1450 "4e5 <= -2n + i0 and 4e5 >= -3 - 2n + i0);"
1451 "[[i0] -> [o0]] : exists (e0 = [(i0)/4], e1 = [(o0)/4], "
1452 "e2 = [(n)/2], e3 = [(-2 + i0)/4], e4 = [(-2 + o0)/4], "
1453 "e5 = [(-2n + i0)/4]: 2e2 = n and 4e3 = -2 + i0 and "
1454 "4e4 = -2 + o0 and 2e0 >= 3 + n and e0 <= -4 + n and "
1455 "2e0 <= 27 + n and e1 <= -4 + n and 2e1 <= 27 + n and "
1456 "2e1 >= 2 + n and e1 >= 1 + e0 and i0 >= 7 + 2n and "
1457 "i0 <= -11 + 4n and i0 <= 57 + 2n and 4e0 <= -2 + i0 and "
1458 "4e0 >= -3 + i0 and o0 >= 6 + 2n and o0 <= -11 + 4n and "
1459 "o0 <= 57 + 2n and 4e1 <= -2 + o0 and 4e1 >= -3 + o0 and "
1460 "4e5 <= -2n + i0 and 4e5 >= -3 - 2n + i0 ) }" },
1461 { 0, "[n, m] -> { [o0, o2, o3] : (o3 = 1 and o0 >= 1 + m and "
1462 "o0 <= n + m and o2 <= m and o0 >= 2 + n and o2 >= 3) or "
1463 "(o0 >= 2 + n and o0 >= 1 + m and o0 <= n + m and n >= 1 and "
1464 "o3 <= -1 + o2 and o3 >= 1 - m + o2 and o3 >= 2 and o3 <= n) }" },
1465 { 0, "[M, N] -> { [[i0, i1, i2, i3, i4, i5, i6] -> "
1466 "[o0, o1, o2, o3, o4, o5, o6]] : "
1467 "(o6 <= -4 + 2M - 2N + i0 + i1 - i2 + i6 - o0 - o1 + o2 and "
1468 "o3 <= -2 + i3 and o6 >= 2 + i0 + i3 + i6 - o0 - o3 and "
1469 "o6 >= 2 - M + N + i3 + i4 + i6 - o3 - o4 and o0 <= -1 + i0 and "
1470 "o4 >= 4 - 3M + 3N - i0 - i1 + i2 + 2i3 + i4 + o0 + o1 - o2 - 2o3 "
1471 "and o6 <= -3 + 2M - 2N + i3 + i4 - i5 + i6 - o3 - o4 + o5 and "
1472 "2o6 <= -5 + 5M - 5N + 2i0 + i1 - i2 - i5 + 2i6 - 2o0 - o1 + o2 + o5 "
1473 "and o6 >= 2i0 + i1 + i6 - 2o0 - o1 and "
1474 "3o6 <= -5 + 4M - 4N + 2i0 + i1 - i2 + 2i3 + i4 - i5 + 3i6 "
1475 "- 2o0 - o1 + o2 - 2o3 - o4 + o5) or "
1476 "(N >= 2 and o3 <= -1 + i3 and o0 <= -1 + i0 and "
1477 "o6 >= i3 + i6 - o3 and M >= 0 and "
1478 "2o6 >= 1 + i0 + i3 + 2i6 - o0 - o3 and "
1479 "o6 >= 1 - M + i0 + i6 - o0 and N >= 2M and o6 >= i0 + i6 - o0) }" },
1480 { 0, "[M, N] -> { [o0] : (o0 = 0 and M >= 1 and N >= 2) or "
1481 "(o0 = 0 and M >= 1 and N >= 2M and N >= 2 + M) or "
1482 "(o0 = 0 and M >= 2 and N >= 3) or "
1483 "(M = 0 and o0 = 0 and N >= 3) }" },
1484 { 0, "{ [i0, i1, i2, i3] : (i1 = 10i0 and i0 >= 1 and 10i0 <= 100 and "
1485 "i3 <= 9 + 10 i2 and i3 >= 1 + 10i2 and i3 >= 0) or "
1486 "(i1 <= 9 + 10i0 and i1 >= 1 + 10i0 and i2 >= 0 and "
1487 "i0 >= 0 and i1 <= 100 and i3 <= 9 + 10i2 and i3 >= 1 + 10i2) }" },
1488 { 0, "[M] -> { [i1] : (i1 >= 2 and i1 <= M) or (i1 = M and M >= 1) }" },
1489 { 0, "{[x,y] : x,y >= 0; [x,y] : 10 <= x <= 20 and y >= -1 }" },
1490 { 1, "{ [x, y] : (x >= 1 and y >= 1 and x <= 2 and y <= 2) or "
1491 "(y = 3 and x = 1) }" },
1492 { 1, "[M] -> { [i0, i1, i2, i3, i4] : (i1 >= 3 and i4 >= 2 + i2 and "
1493 "i2 >= 2 and i0 >= 2 and i3 >= 1 + i2 and i0 <= M and "
1494 "i1 <= M and i3 <= M and i4 <= M) or "
1495 "(i1 >= 2 and i4 >= 1 + i2 and i2 >= 2 and i0 >= 2 and "
1496 "i3 >= 1 + i2 and i0 <= M and i1 <= -1 + M and i3 <= M and "
1497 "i4 <= -1 + M) }" },
1498 { 1, "{ [x, y] : (x >= 0 and y >= 0 and x <= 10 and y <= 10) or "
1499 "(x >= 1 and y >= 1 and x <= 11 and y <= 11) }" },
1500 { 0, "{[x,0] : x >= 0; [x,1] : x <= 20}" },
1501 { 1, "{ [x, 1 - x] : 0 <= x <= 1; [0,0] }" },
1502 { 1, "{ [0,0]; [i,i] : 1 <= i <= 10 }" },
1503 { 0, "{ [0,0]; [i,j] : 1 <= i,j <= 10 }" },
1504 { 1, "{ [0,0]; [i,2i] : 1 <= i <= 10 }" },
1505 { 0, "{ [0,0]; [i,2i] : 2 <= i <= 10 }" },
1506 { 0, "{ [1,0]; [i,2i] : 1 <= i <= 10 }" },
1507 { 0, "{ [0,1]; [i,2i] : 1 <= i <= 10 }" },
1508 { 0, "{ [a, b] : exists e : 2e = a and "
1509 "a >= 0 and (a <= 3 or (b <= 0 and b >= -4 + a)) }" },
1510 { 0, "{ [i, j, i', j'] : i <= 2 and j <= 2 and "
1511 "j' >= -1 + 2i + j - 2i' and i' <= -1 + i and "
1512 "j >= 1 and j' <= i + j - i' and i >= 1; "
1513 "[1, 1, 1, 1] }" },
1514 { 1, "{ [i,j] : exists a,b : i = 2a and j = 3b; "
1515 "[i,j] : exists a : j = 3a }" },
1516 { 1, "{ [a, b, c] : (c <= 7 - b and b <= 1 and b >= 0 and "
1517 "c >= 3 + b and b <= 3 + 8a and b >= -26 + 8a and "
1518 "a >= 3) or "
1519 "(b <= 1 and c <= 7 and b >= 0 and c >= 4 + b and "
1520 "b <= 3 + 8a and b >= -26 + 8a and a >= 3) }" },
1521 { 1, "{ [a, 0, c] : c >= 1 and c <= 29 and c >= -1 + 8a and "
1522 "c <= 6 + 8a and a >= 3; "
1523 "[a, -1, c] : c >= 1 and c <= 30 and c >= 8a and "
1524 "c <= 7 + 8a and a >= 3 and a <= 4 }" },
1525 { 1, "{ [x,y] : 0 <= x <= 2 and y >= 0 and x + 2y <= 4; "
1526 "[x,0] : 3 <= x <= 4 }" },
1527 { 1, "{ [x,y] : 0 <= x <= 3 and y >= 0 and x + 3y <= 6; "
1528 "[x,0] : 4 <= x <= 5 }" },
1529 { 0, "{ [x,y] : 0 <= x <= 2 and y >= 0 and x + 2y <= 4; "
1530 "[x,0] : 3 <= x <= 5 }" },
1531 { 0, "{ [x,y] : 0 <= x <= 2 and y >= 0 and x + y <= 4; "
1532 "[x,0] : 3 <= x <= 4 }" },
1533 { 1, "{ [i0, i1] : i0 <= 122 and i0 >= 1 and 128i1 >= -249 + i0 and "
1534 "i1 <= 0; "
1535 "[i0, 0] : i0 >= 123 and i0 <= 124 }" },
1536 { 1, "{ [0,0]; [1,1] }" },
1537 { 1, "[n] -> { [k] : 16k <= -1 + n and k >= 1; [0] : n >= 2 }" },
1538 { 1, "{ [k, ii, k - ii] : ii >= -6 + k and ii <= 6 and ii >= 1 and "
1539 "ii <= k;"
1540 "[k, 0, k] : k <= 6 and k >= 1 }" },
1541 { 1, "{ [i,j] : i = 4 j and 0 <= i <= 100;"
1542 "[i,j] : 1 <= i <= 100 and i >= 4j + 1 and i <= 4j + 2 }" },
1543 { 1, "{ [x,y] : x % 2 = 0 and y % 2 = 0; [x,x] : x % 2 = 0 }" },
1544 { 1, "[n] -> { [1] : n >= 0;"
1545 "[x] : exists (e0 = floor((x)/2): x >= 2 and "
1546 "2e0 >= -1 + x and 2e0 <= x and 2e0 <= n) }" },
1547 { 1, "[n] -> { [x, y] : exists (e0 = floor((x)/2), e1 = floor((y)/3): "
1548 "3e1 = y and x >= 2 and 2e0 >= -1 + x and "
1549 "2e0 <= x and 2e0 <= n);"
1550 "[1, y] : exists (e0 = floor((y)/3): 3e0 = y and "
1551 "n >= 0) }" },
1552 { 1, "[t1] -> { [i0] : (exists (e0 = floor((63t1)/64): "
1553 "128e0 >= -134 + 127t1 and t1 >= 2 and "
1554 "64e0 <= 63t1 and 64e0 >= -63 + 63t1)) or "
1555 "t1 = 1 }" },
1556 { 1, "{ [i, i] : exists (e0 = floor((1 + 2i)/3): 3e0 <= 2i and "
1557 "3e0 >= -1 + 2i and i <= 9 and i >= 1);"
1558 "[0, 0] }" },
1559 { 1, "{ [t1] : exists (e0 = floor((-11 + t1)/2): 2e0 = -11 + t1 and "
1560 "t1 >= 13 and t1 <= 16);"
1561 "[t1] : t1 <= 15 and t1 >= 12 }" },
1562 { 1, "{ [x,y] : x = 3y and 0 <= y <= 2; [-3,-1] }" },
1563 { 1, "{ [x,y] : 2x = 3y and 0 <= y <= 4; [-3,-2] }" },
1564 { 0, "{ [x,y] : 2x = 3y and 0 <= y <= 4; [-2,-2] }" },
1565 { 0, "{ [x,y] : 2x = 3y and 0 <= y <= 4; [-3,-1] }" },
1566 { 1, "{ [i] : exists j : i = 4 j and 0 <= i <= 100;"
1567 "[i] : exists j : 1 <= i <= 100 and i >= 4j + 1 and "
1568 "i <= 4j + 2 }" },
1569 { 1, "{ [c0] : (exists (e0 : c0 - 1 <= 3e0 <= c0)) or "
1570 "(exists (e0 : 3e0 = -2 + c0)) }" },
1571 { 0, "[n, b0, t0] -> "
1572 "{ [i0, i1, i2, i3, i4, i5, i6, i7, i8, i9, i10, i11, i12] : "
1573 "(exists (e0 = floor((-32b0 + i4)/1048576), "
1574 "e1 = floor((i8)/32): 1048576e0 = -32b0 + i4 and 32e1 = i8 and "
1575 "n <= 2147483647 and b0 <= 32767 and b0 >= 0 and "
1576 "32b0 <= -2 + n and t0 <= 31 and t0 >= 0 and i0 >= 8 + n and "
1577 "3i4 <= -96 + 3t0 + i0 and 3i4 >= -95 - n + 3t0 + i0 and "
1578 "i8 >= -157 + i0 - 4i4 and i8 >= 0 and "
1579 "i8 <= -33 + i0 - 4i4 and 3i8 <= -91 + 4n - i0)) or "
1580 "(exists (e0 = floor((-32b0 + i4)/1048576), "
1581 "e1 = floor((i8)/32): 1048576e0 = -32b0 + i4 and 32e1 = i8 and "
1582 "n <= 2147483647 and b0 <= 32767 and b0 >= 0 and "
1583 "32b0 <= -2 + n and t0 <= 31 and t0 >= 0 and i0 <= 7 + n and "
1584 "4i4 <= -3 + i0 and 3i4 <= -96 + 3t0 + i0 and "
1585 "3i4 >= -95 - n + 3t0 + i0 and i8 >= -157 + i0 - 4i4 and "
1586 "i8 >= 0 and i8 <= -4 + i0 - 3i4 and i8 <= -41 + i0));"
1587 "[i0, i1, i2, i3, 0, i5, i6, i7, i8, i9, i10, i11, i12] : "
1588 "(exists (e0 = floor((i8)/32): b0 = 0 and 32e0 = i8 and "
1589 "n <= 2147483647 and t0 <= 31 and t0 >= 0 and i0 >= 11 and "
1590 "i0 >= 96 - 3t0 and i0 <= 95 + n - 3t0 and i0 <= 7 + n and "
1591 "i8 >= -40 + i0 and i8 <= -10 + i0)) }" },
1592 { 0, "{ [i0, i1, i2] : "
1593 "(exists (e0, e1 = floor((i0)/32), e2 = floor((i1)/32): "
1594 "32e1 = i0 and 32e2 = i1 and i1 >= -31 + i0 and "
1595 "i1 <= 31 + i0 and i2 >= -30 + i0 and i2 >= -30 + i1 and "
1596 "32e0 >= -30 + i0 and 32e0 >= -30 + i1 and "
1597 "32e0 >= -31 + i2 and 32e0 <= 30 + i2 and 32e0 <= 31 + i1 and "
1598 "32e0 <= 31 + i0)) or "
1599 "i0 >= 0 }" },
1602 /* A specialized coalescing test case that would result
1603 * in a segmentation fault or a failed assertion in earlier versions of isl.
1605 static int test_coalesce_special(struct isl_ctx *ctx)
1607 const char *str;
1608 isl_map *map1, *map2;
1610 str = "[y] -> { [S_L220_OUT[] -> T7[]] -> "
1611 "[[S_L309_IN[] -> T11[]] -> ce_imag2[1, o1]] : "
1612 "(y = 201 and o1 <= 239 and o1 >= 212) or "
1613 "(exists (e0 = [(y)/3]: 3e0 = y and y <= 198 and y >= 3 and "
1614 "o1 <= 239 and o1 >= 212)) or "
1615 "(exists (e0 = [(y)/3]: 3e0 = y and y <= 201 and y >= 3 and "
1616 "o1 <= 241 and o1 >= 240));"
1617 "[S_L220_OUT[] -> T7[]] -> "
1618 "[[S_L309_IN[] -> T11[]] -> ce_imag2[0, o1]] : "
1619 "(y = 2 and o1 <= 241 and o1 >= 212) or "
1620 "(exists (e0 = [(-2 + y)/3]: 3e0 = -2 + y and y <= 200 and "
1621 "y >= 5 and o1 <= 241 and o1 >= 212)) }";
1622 map1 = isl_map_read_from_str(ctx, str);
1623 map1 = isl_map_align_divs(map1);
1624 map1 = isl_map_coalesce(map1);
1625 str = "[y] -> { [S_L220_OUT[] -> T7[]] -> "
1626 "[[S_L309_IN[] -> T11[]] -> ce_imag2[o0, o1]] : "
1627 "exists (e0 = [(-1 - y + o0)/3]: 3e0 = -1 - y + o0 and "
1628 "y <= 201 and o0 <= 2 and o1 >= 212 and o1 <= 241 and "
1629 "o0 >= 3 - y and o0 <= -2 + y and o0 >= 0) }";
1630 map2 = isl_map_read_from_str(ctx, str);
1631 map2 = isl_map_union(map2, map1);
1632 map2 = isl_map_align_divs(map2);
1633 map2 = isl_map_coalesce(map2);
1634 isl_map_free(map2);
1635 if (!map2)
1636 return -1;
1638 return 0;
1641 /* Test the functionality of isl_set_coalesce.
1642 * That is, check that the output is always equal to the input
1643 * and in some cases that the result consists of a single disjunct.
1645 static int test_coalesce(struct isl_ctx *ctx)
1647 int i;
1649 for (i = 0; i < ARRAY_SIZE(coalesce_tests); ++i) {
1650 const char *str = coalesce_tests[i].str;
1651 int check_one = coalesce_tests[i].single_disjunct;
1652 if (test_coalesce_set(ctx, str, check_one) < 0)
1653 return -1;
1656 if (test_coalesce_unbounded_wrapping(ctx) < 0)
1657 return -1;
1658 if (test_coalesce_special(ctx) < 0)
1659 return -1;
1661 return 0;
1664 static int test_closure(isl_ctx *ctx)
1666 const char *str;
1667 isl_set *dom;
1668 isl_map *up, *right;
1669 isl_map *map, *map2;
1670 int exact;
1672 /* COCOA example 1 */
1673 map = isl_map_read_from_str(ctx,
1674 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 1 and j2 = j + 1 and "
1675 "1 <= i and i < n and 1 <= j and j < n or "
1676 "i2 = i + 1 and j2 = j - 1 and "
1677 "1 <= i and i < n and 2 <= j and j <= n }");
1678 map = isl_map_power(map, &exact);
1679 assert(exact);
1680 isl_map_free(map);
1682 /* COCOA example 1 */
1683 map = isl_map_read_from_str(ctx,
1684 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 1 and j2 = j + 1 and "
1685 "1 <= i and i < n and 1 <= j and j < n or "
1686 "i2 = i + 1 and j2 = j - 1 and "
1687 "1 <= i and i < n and 2 <= j and j <= n }");
1688 map = isl_map_transitive_closure(map, &exact);
1689 assert(exact);
1690 map2 = isl_map_read_from_str(ctx,
1691 "[n] -> { [i,j] -> [i2,j2] : exists (k1,k2,k : "
1692 "1 <= i and i < n and 1 <= j and j <= n and "
1693 "2 <= i2 and i2 <= n and 1 <= j2 and j2 <= n and "
1694 "i2 = i + k1 + k2 and j2 = j + k1 - k2 and "
1695 "k1 >= 0 and k2 >= 0 and k1 + k2 = k and k >= 1 )}");
1696 assert(isl_map_is_equal(map, map2));
1697 isl_map_free(map2);
1698 isl_map_free(map);
1700 map = isl_map_read_from_str(ctx,
1701 "[n] -> { [x] -> [y] : y = x + 1 and 0 <= x and x <= n and "
1702 " 0 <= y and y <= n }");
1703 map = isl_map_transitive_closure(map, &exact);
1704 map2 = isl_map_read_from_str(ctx,
1705 "[n] -> { [x] -> [y] : y > x and 0 <= x and x <= n and "
1706 " 0 <= y and y <= n }");
1707 assert(isl_map_is_equal(map, map2));
1708 isl_map_free(map2);
1709 isl_map_free(map);
1711 /* COCOA example 2 */
1712 map = isl_map_read_from_str(ctx,
1713 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 2 and j2 = j + 2 and "
1714 "1 <= i and i < n - 1 and 1 <= j and j < n - 1 or "
1715 "i2 = i + 2 and j2 = j - 2 and "
1716 "1 <= i and i < n - 1 and 3 <= j and j <= n }");
1717 map = isl_map_transitive_closure(map, &exact);
1718 assert(exact);
1719 map2 = isl_map_read_from_str(ctx,
1720 "[n] -> { [i,j] -> [i2,j2] : exists (k1,k2,k : "
1721 "1 <= i and i < n - 1 and 1 <= j and j <= n and "
1722 "3 <= i2 and i2 <= n and 1 <= j2 and j2 <= n and "
1723 "i2 = i + 2 k1 + 2 k2 and j2 = j + 2 k1 - 2 k2 and "
1724 "k1 >= 0 and k2 >= 0 and k1 + k2 = k and k >= 1) }");
1725 assert(isl_map_is_equal(map, map2));
1726 isl_map_free(map);
1727 isl_map_free(map2);
1729 /* COCOA Fig.2 left */
1730 map = isl_map_read_from_str(ctx,
1731 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 2 and j2 = j and "
1732 "i <= 2 j - 3 and i <= n - 2 and j <= 2 i - 1 and "
1733 "j <= n or "
1734 "i2 = i and j2 = j + 2 and i <= 2 j - 1 and i <= n and "
1735 "j <= 2 i - 3 and j <= n - 2 or "
1736 "i2 = i + 1 and j2 = j + 1 and i <= 2 j - 1 and "
1737 "i <= n - 1 and j <= 2 i - 1 and j <= n - 1 }");
1738 map = isl_map_transitive_closure(map, &exact);
1739 assert(exact);
1740 isl_map_free(map);
1742 /* COCOA Fig.2 right */
1743 map = isl_map_read_from_str(ctx,
1744 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 3 and j2 = j and "
1745 "i <= 2 j - 4 and i <= n - 3 and j <= 2 i - 1 and "
1746 "j <= n or "
1747 "i2 = i and j2 = j + 3 and i <= 2 j - 1 and i <= n and "
1748 "j <= 2 i - 4 and j <= n - 3 or "
1749 "i2 = i + 1 and j2 = j + 1 and i <= 2 j - 1 and "
1750 "i <= n - 1 and j <= 2 i - 1 and j <= n - 1 }");
1751 map = isl_map_power(map, &exact);
1752 assert(exact);
1753 isl_map_free(map);
1755 /* COCOA Fig.2 right */
1756 map = isl_map_read_from_str(ctx,
1757 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 3 and j2 = j and "
1758 "i <= 2 j - 4 and i <= n - 3 and j <= 2 i - 1 and "
1759 "j <= n or "
1760 "i2 = i and j2 = j + 3 and i <= 2 j - 1 and i <= n and "
1761 "j <= 2 i - 4 and j <= n - 3 or "
1762 "i2 = i + 1 and j2 = j + 1 and i <= 2 j - 1 and "
1763 "i <= n - 1 and j <= 2 i - 1 and j <= n - 1 }");
1764 map = isl_map_transitive_closure(map, &exact);
1765 assert(exact);
1766 map2 = isl_map_read_from_str(ctx,
1767 "[n] -> { [i,j] -> [i2,j2] : exists (k1,k2,k3,k : "
1768 "i <= 2 j - 1 and i <= n and j <= 2 i - 1 and "
1769 "j <= n and 3 + i + 2 j <= 3 n and "
1770 "3 + 2 i + j <= 3n and i2 <= 2 j2 -1 and i2 <= n and "
1771 "i2 <= 3 j2 - 4 and j2 <= 2 i2 -1 and j2 <= n and "
1772 "13 + 4 j2 <= 11 i2 and i2 = i + 3 k1 + k3 and "
1773 "j2 = j + 3 k2 + k3 and k1 >= 0 and k2 >= 0 and "
1774 "k3 >= 0 and k1 + k2 + k3 = k and k > 0) }");
1775 assert(isl_map_is_equal(map, map2));
1776 isl_map_free(map2);
1777 isl_map_free(map);
1779 /* COCOA Fig.1 right */
1780 dom = isl_set_read_from_str(ctx,
1781 "{ [x,y] : x >= 0 and -2 x + 3 y >= 0 and x <= 3 and "
1782 "2 x - 3 y + 3 >= 0 }");
1783 right = isl_map_read_from_str(ctx,
1784 "{ [x,y] -> [x2,y2] : x2 = x + 1 and y2 = y }");
1785 up = isl_map_read_from_str(ctx,
1786 "{ [x,y] -> [x2,y2] : x2 = x and y2 = y + 1 }");
1787 right = isl_map_intersect_domain(right, isl_set_copy(dom));
1788 right = isl_map_intersect_range(right, isl_set_copy(dom));
1789 up = isl_map_intersect_domain(up, isl_set_copy(dom));
1790 up = isl_map_intersect_range(up, dom);
1791 map = isl_map_union(up, right);
1792 map = isl_map_transitive_closure(map, &exact);
1793 assert(exact);
1794 map2 = isl_map_read_from_str(ctx,
1795 "{ [0,0] -> [0,1]; [0,0] -> [1,1]; [0,1] -> [1,1]; "
1796 " [2,2] -> [3,2]; [2,2] -> [3,3]; [3,2] -> [3,3] }");
1797 assert(isl_map_is_equal(map, map2));
1798 isl_map_free(map2);
1799 isl_map_free(map);
1801 /* COCOA Theorem 1 counter example */
1802 map = isl_map_read_from_str(ctx,
1803 "{ [i,j] -> [i2,j2] : i = 0 and 0 <= j and j <= 1 and "
1804 "i2 = 1 and j2 = j or "
1805 "i = 0 and j = 0 and i2 = 0 and j2 = 1 }");
1806 map = isl_map_transitive_closure(map, &exact);
1807 assert(exact);
1808 isl_map_free(map);
1810 map = isl_map_read_from_str(ctx,
1811 "[m,n] -> { [i,j] -> [i2,j2] : i2 = i and j2 = j + 2 and "
1812 "1 <= i,i2 <= n and 1 <= j,j2 <= m or "
1813 "i2 = i + 1 and 3 <= j2 - j <= 4 and "
1814 "1 <= i,i2 <= n and 1 <= j,j2 <= m }");
1815 map = isl_map_transitive_closure(map, &exact);
1816 assert(exact);
1817 isl_map_free(map);
1819 /* Kelly et al 1996, fig 12 */
1820 map = isl_map_read_from_str(ctx,
1821 "[n] -> { [i,j] -> [i2,j2] : i2 = i and j2 = j + 1 and "
1822 "1 <= i,j,j+1 <= n or "
1823 "j = n and j2 = 1 and i2 = i + 1 and "
1824 "1 <= i,i+1 <= n }");
1825 map = isl_map_transitive_closure(map, &exact);
1826 assert(exact);
1827 map2 = isl_map_read_from_str(ctx,
1828 "[n] -> { [i,j] -> [i2,j2] : 1 <= j < j2 <= n and "
1829 "1 <= i <= n and i = i2 or "
1830 "1 <= i < i2 <= n and 1 <= j <= n and "
1831 "1 <= j2 <= n }");
1832 assert(isl_map_is_equal(map, map2));
1833 isl_map_free(map2);
1834 isl_map_free(map);
1836 /* Omega's closure4 */
1837 map = isl_map_read_from_str(ctx,
1838 "[m,n] -> { [x,y] -> [x2,y2] : x2 = x and y2 = y + 1 and "
1839 "1 <= x,y <= 10 or "
1840 "x2 = x + 1 and y2 = y and "
1841 "1 <= x <= 20 && 5 <= y <= 15 }");
1842 map = isl_map_transitive_closure(map, &exact);
1843 assert(exact);
1844 isl_map_free(map);
1846 map = isl_map_read_from_str(ctx,
1847 "[n] -> { [x] -> [y]: 1 <= n <= y - x <= 10 }");
1848 map = isl_map_transitive_closure(map, &exact);
1849 assert(!exact);
1850 map2 = isl_map_read_from_str(ctx,
1851 "[n] -> { [x] -> [y] : 1 <= n <= 10 and y >= n + x }");
1852 assert(isl_map_is_equal(map, map2));
1853 isl_map_free(map);
1854 isl_map_free(map2);
1856 str = "[n, m] -> { [i0, i1, i2, i3] -> [o0, o1, o2, o3] : "
1857 "i3 = 1 and o0 = i0 and o1 = -1 + i1 and o2 = -1 + i2 and "
1858 "o3 = -2 + i2 and i1 <= -1 + i0 and i1 >= 1 - m + i0 and "
1859 "i1 >= 2 and i1 <= n and i2 >= 3 and i2 <= 1 + n and i2 <= m }";
1860 map = isl_map_read_from_str(ctx, str);
1861 map = isl_map_transitive_closure(map, &exact);
1862 assert(exact);
1863 map2 = isl_map_read_from_str(ctx, str);
1864 assert(isl_map_is_equal(map, map2));
1865 isl_map_free(map);
1866 isl_map_free(map2);
1868 str = "{[0] -> [1]; [2] -> [3]}";
1869 map = isl_map_read_from_str(ctx, str);
1870 map = isl_map_transitive_closure(map, &exact);
1871 assert(exact);
1872 map2 = isl_map_read_from_str(ctx, str);
1873 assert(isl_map_is_equal(map, map2));
1874 isl_map_free(map);
1875 isl_map_free(map2);
1877 str = "[n] -> { [[i0, i1, 1, 0, i0] -> [i5, 1]] -> "
1878 "[[i0, -1 + i1, 2, 0, i0] -> [-1 + i5, 2]] : "
1879 "exists (e0 = [(3 - n)/3]: i5 >= 2 and i1 >= 2 and "
1880 "3i0 <= -1 + n and i1 <= -1 + n and i5 <= -1 + n and "
1881 "3e0 >= 1 - n and 3e0 <= 2 - n and 3i0 >= -2 + n); "
1882 "[[i0, i1, 2, 0, i0] -> [i5, 1]] -> "
1883 "[[i0, i1, 1, 0, i0] -> [-1 + i5, 2]] : "
1884 "exists (e0 = [(3 - n)/3]: i5 >= 2 and i1 >= 1 and "
1885 "3i0 <= -1 + n and i1 <= -1 + n and i5 <= -1 + n and "
1886 "3e0 >= 1 - n and 3e0 <= 2 - n and 3i0 >= -2 + n); "
1887 "[[i0, i1, 1, 0, i0] -> [i5, 2]] -> "
1888 "[[i0, -1 + i1, 2, 0, i0] -> [i5, 1]] : "
1889 "exists (e0 = [(3 - n)/3]: i1 >= 2 and i5 >= 1 and "
1890 "3i0 <= -1 + n and i1 <= -1 + n and i5 <= -1 + n and "
1891 "3e0 >= 1 - n and 3e0 <= 2 - n and 3i0 >= -2 + n); "
1892 "[[i0, i1, 2, 0, i0] -> [i5, 2]] -> "
1893 "[[i0, i1, 1, 0, i0] -> [i5, 1]] : "
1894 "exists (e0 = [(3 - n)/3]: i5 >= 1 and i1 >= 1 and "
1895 "3i0 <= -1 + n and i1 <= -1 + n and i5 <= -1 + n and "
1896 "3e0 >= 1 - n and 3e0 <= 2 - n and 3i0 >= -2 + n) }";
1897 map = isl_map_read_from_str(ctx, str);
1898 map = isl_map_transitive_closure(map, NULL);
1899 assert(map);
1900 isl_map_free(map);
1902 return 0;
1905 static int test_lex(struct isl_ctx *ctx)
1907 isl_space *dim;
1908 isl_map *map;
1909 int empty;
1911 dim = isl_space_set_alloc(ctx, 0, 0);
1912 map = isl_map_lex_le(dim);
1913 empty = isl_map_is_empty(map);
1914 isl_map_free(map);
1916 if (empty < 0)
1917 return -1;
1918 if (empty)
1919 isl_die(ctx, isl_error_unknown,
1920 "expecting non-empty result", return -1);
1922 return 0;
1925 static int test_lexmin(struct isl_ctx *ctx)
1927 int equal;
1928 const char *str;
1929 isl_basic_map *bmap;
1930 isl_map *map, *map2;
1931 isl_set *set;
1932 isl_set *set2;
1933 isl_pw_multi_aff *pma;
1935 str = "[p0, p1] -> { [] -> [] : "
1936 "exists (e0 = [(2p1)/3], e1, e2, e3 = [(3 - p1 + 3e0)/3], "
1937 "e4 = [(p1)/3], e5 = [(p1 + 3e4)/3]: "
1938 "3e0 >= -2 + 2p1 and 3e0 >= p1 and 3e3 >= 1 - p1 + 3e0 and "
1939 "3e0 <= 2p1 and 3e3 >= -2 + p1 and 3e3 <= -1 + p1 and p1 >= 3 and "
1940 "3e5 >= -2 + 2p1 and 3e5 >= p1 and 3e5 <= -1 + p1 + 3e4 and "
1941 "3e4 <= p1 and 3e4 >= -2 + p1 and e3 <= -1 + e0 and "
1942 "3e4 >= 6 - p1 + 3e1 and 3e1 >= p1 and 3e5 >= -2 + p1 + 3e4 and "
1943 "2e4 >= 3 - p1 + 2e1 and e4 <= e1 and 3e3 <= 2 - p1 + 3e0 and "
1944 "e5 >= 1 + e1 and 3e4 >= 6 - 2p1 + 3e1 and "
1945 "p0 >= 2 and p1 >= p0 and 3e2 >= p1 and 3e4 >= 6 - p1 + 3e2 and "
1946 "e2 <= e1 and e3 >= 1 and e4 <= e2) }";
1947 map = isl_map_read_from_str(ctx, str);
1948 map = isl_map_lexmin(map);
1949 isl_map_free(map);
1951 str = "[C] -> { [obj,a,b,c] : obj <= 38 a + 7 b + 10 c and "
1952 "a + b <= 1 and c <= 10 b and c <= C and a,b,c,C >= 0 }";
1953 set = isl_set_read_from_str(ctx, str);
1954 set = isl_set_lexmax(set);
1955 str = "[C] -> { [obj,a,b,c] : C = 8 }";
1956 set2 = isl_set_read_from_str(ctx, str);
1957 set = isl_set_intersect(set, set2);
1958 assert(!isl_set_is_empty(set));
1959 isl_set_free(set);
1961 str = "{ [x] -> [y] : x <= y <= 10; [x] -> [5] : -8 <= x <= 8 }";
1962 map = isl_map_read_from_str(ctx, str);
1963 map = isl_map_lexmin(map);
1964 str = "{ [x] -> [5] : 6 <= x <= 8; "
1965 "[x] -> [x] : x <= 5 or (9 <= x <= 10) }";
1966 map2 = isl_map_read_from_str(ctx, str);
1967 assert(isl_map_is_equal(map, map2));
1968 isl_map_free(map);
1969 isl_map_free(map2);
1971 str = "{ [x] -> [y] : 4y = x or 4y = -1 + x or 4y = -2 + x }";
1972 map = isl_map_read_from_str(ctx, str);
1973 map2 = isl_map_copy(map);
1974 map = isl_map_lexmin(map);
1975 assert(isl_map_is_equal(map, map2));
1976 isl_map_free(map);
1977 isl_map_free(map2);
1979 str = "{ [x] -> [y] : x = 4y; [x] -> [y] : x = 2y }";
1980 map = isl_map_read_from_str(ctx, str);
1981 map = isl_map_lexmin(map);
1982 str = "{ [x] -> [y] : (4y = x and x >= 0) or "
1983 "(exists (e0 = [(x)/4], e1 = [(-2 + x)/4]: 2y = x and "
1984 "4e1 = -2 + x and 4e0 <= -1 + x and 4e0 >= -3 + x)) or "
1985 "(exists (e0 = [(x)/4]: 2y = x and 4e0 = x and x <= -4)) }";
1986 map2 = isl_map_read_from_str(ctx, str);
1987 assert(isl_map_is_equal(map, map2));
1988 isl_map_free(map);
1989 isl_map_free(map2);
1991 str = "{ [i] -> [i', j] : j = i - 8i' and i' >= 0 and i' <= 7 and "
1992 " 8i' <= i and 8i' >= -7 + i }";
1993 bmap = isl_basic_map_read_from_str(ctx, str);
1994 pma = isl_basic_map_lexmin_pw_multi_aff(isl_basic_map_copy(bmap));
1995 map2 = isl_map_from_pw_multi_aff(pma);
1996 map = isl_map_from_basic_map(bmap);
1997 assert(isl_map_is_equal(map, map2));
1998 isl_map_free(map);
1999 isl_map_free(map2);
2001 str = "{ T[a] -> S[b, c] : a = 4b-2c and c >= b }";
2002 map = isl_map_read_from_str(ctx, str);
2003 map = isl_map_lexmin(map);
2004 str = "{ T[a] -> S[b, c] : 2b = a and 2c = a }";
2005 map2 = isl_map_read_from_str(ctx, str);
2006 assert(isl_map_is_equal(map, map2));
2007 isl_map_free(map);
2008 isl_map_free(map2);
2010 /* Check that empty pieces are properly combined. */
2011 str = "[K, N] -> { [x, y] -> [a, b] : K+2<=N<=K+4 and x>=4 and "
2012 "2N-6<=x<K+N and N-1<=a<=K+N-1 and N+b-6<=a<=2N-4 and "
2013 "b<=2N-3K+a and 3b<=4N-K+1 and b>=N and a>=x+1 }";
2014 map = isl_map_read_from_str(ctx, str);
2015 map = isl_map_lexmin(map);
2016 str = "[K, N] -> { [x, y] -> [1 + x, N] : x >= -6 + 2N and "
2017 "x <= -5 + 2N and x >= -1 + 3K - N and x <= -2 + K + N and "
2018 "x >= 4 }";
2019 map2 = isl_map_read_from_str(ctx, str);
2020 assert(isl_map_is_equal(map, map2));
2021 isl_map_free(map);
2022 isl_map_free(map2);
2024 str = "[i] -> { [i', j] : j = i - 8i' and i' >= 0 and i' <= 7 and "
2025 " 8i' <= i and 8i' >= -7 + i }";
2026 set = isl_set_read_from_str(ctx, str);
2027 pma = isl_set_lexmin_pw_multi_aff(isl_set_copy(set));
2028 set2 = isl_set_from_pw_multi_aff(pma);
2029 equal = isl_set_is_equal(set, set2);
2030 isl_set_free(set);
2031 isl_set_free(set2);
2032 if (equal < 0)
2033 return -1;
2034 if (!equal)
2035 isl_die(ctx, isl_error_unknown,
2036 "unexpected difference between set and "
2037 "piecewise affine expression", return -1);
2039 return 0;
2042 /* Check that isl_set_min_val and isl_set_max_val compute the correct
2043 * result on non-convex inputs.
2045 static int test_min(struct isl_ctx *ctx)
2047 isl_set *set;
2048 isl_aff *aff;
2049 isl_val *val;
2050 int min_ok, max_ok;
2052 set = isl_set_read_from_str(ctx, "{ [-1]; [1] }");
2053 aff = isl_aff_read_from_str(ctx, "{ [x] -> [x] }");
2054 val = isl_set_min_val(set, aff);
2055 min_ok = isl_val_is_negone(val);
2056 isl_val_free(val);
2057 val = isl_set_max_val(set, aff);
2058 max_ok = isl_val_is_one(val);
2059 isl_val_free(val);
2060 isl_aff_free(aff);
2061 isl_set_free(set);
2063 if (min_ok < 0 || max_ok < 0)
2064 return -1;
2065 if (!min_ok)
2066 isl_die(ctx, isl_error_unknown,
2067 "unexpected minimum", return -1);
2068 if (!max_ok)
2069 isl_die(ctx, isl_error_unknown,
2070 "unexpected maximum", return -1);
2072 return 0;
2075 struct must_may {
2076 isl_map *must;
2077 isl_map *may;
2080 static int collect_must_may(__isl_take isl_map *dep, int must,
2081 void *dep_user, void *user)
2083 struct must_may *mm = (struct must_may *)user;
2085 if (must)
2086 mm->must = isl_map_union(mm->must, dep);
2087 else
2088 mm->may = isl_map_union(mm->may, dep);
2090 return 0;
2093 static int common_space(void *first, void *second)
2095 int depth = *(int *)first;
2096 return 2 * depth;
2099 static int map_is_equal(__isl_keep isl_map *map, const char *str)
2101 isl_map *map2;
2102 int equal;
2104 if (!map)
2105 return -1;
2107 map2 = isl_map_read_from_str(map->ctx, str);
2108 equal = isl_map_is_equal(map, map2);
2109 isl_map_free(map2);
2111 return equal;
2114 static int map_check_equal(__isl_keep isl_map *map, const char *str)
2116 int equal;
2118 equal = map_is_equal(map, str);
2119 if (equal < 0)
2120 return -1;
2121 if (!equal)
2122 isl_die(isl_map_get_ctx(map), isl_error_unknown,
2123 "result not as expected", return -1);
2124 return 0;
2127 static int test_dep(struct isl_ctx *ctx)
2129 const char *str;
2130 isl_space *dim;
2131 isl_map *map;
2132 isl_access_info *ai;
2133 isl_flow *flow;
2134 int depth;
2135 struct must_may mm;
2137 depth = 3;
2139 str = "{ [2,i,0] -> [i] : 0 <= i <= 10 }";
2140 map = isl_map_read_from_str(ctx, str);
2141 ai = isl_access_info_alloc(map, &depth, &common_space, 2);
2143 str = "{ [0,i,0] -> [i] : 0 <= i <= 10 }";
2144 map = isl_map_read_from_str(ctx, str);
2145 ai = isl_access_info_add_source(ai, map, 1, &depth);
2147 str = "{ [1,i,0] -> [5] : 0 <= i <= 10 }";
2148 map = isl_map_read_from_str(ctx, str);
2149 ai = isl_access_info_add_source(ai, map, 1, &depth);
2151 flow = isl_access_info_compute_flow(ai);
2152 dim = isl_space_alloc(ctx, 0, 3, 3);
2153 mm.must = isl_map_empty(isl_space_copy(dim));
2154 mm.may = isl_map_empty(dim);
2156 isl_flow_foreach(flow, collect_must_may, &mm);
2158 str = "{ [0,i,0] -> [2,i,0] : (0 <= i <= 4) or (6 <= i <= 10); "
2159 " [1,10,0] -> [2,5,0] }";
2160 assert(map_is_equal(mm.must, str));
2161 str = "{ [i,j,k] -> [l,m,n] : 1 = 0 }";
2162 assert(map_is_equal(mm.may, str));
2164 isl_map_free(mm.must);
2165 isl_map_free(mm.may);
2166 isl_flow_free(flow);
2169 str = "{ [2,i,0] -> [i] : 0 <= i <= 10 }";
2170 map = isl_map_read_from_str(ctx, str);
2171 ai = isl_access_info_alloc(map, &depth, &common_space, 2);
2173 str = "{ [0,i,0] -> [i] : 0 <= i <= 10 }";
2174 map = isl_map_read_from_str(ctx, str);
2175 ai = isl_access_info_add_source(ai, map, 1, &depth);
2177 str = "{ [1,i,0] -> [5] : 0 <= i <= 10 }";
2178 map = isl_map_read_from_str(ctx, str);
2179 ai = isl_access_info_add_source(ai, map, 0, &depth);
2181 flow = isl_access_info_compute_flow(ai);
2182 dim = isl_space_alloc(ctx, 0, 3, 3);
2183 mm.must = isl_map_empty(isl_space_copy(dim));
2184 mm.may = isl_map_empty(dim);
2186 isl_flow_foreach(flow, collect_must_may, &mm);
2188 str = "{ [0,i,0] -> [2,i,0] : (0 <= i <= 4) or (6 <= i <= 10) }";
2189 assert(map_is_equal(mm.must, str));
2190 str = "{ [0,5,0] -> [2,5,0]; [1,i,0] -> [2,5,0] : 0 <= i <= 10 }";
2191 assert(map_is_equal(mm.may, str));
2193 isl_map_free(mm.must);
2194 isl_map_free(mm.may);
2195 isl_flow_free(flow);
2198 str = "{ [2,i,0] -> [i] : 0 <= i <= 10 }";
2199 map = isl_map_read_from_str(ctx, str);
2200 ai = isl_access_info_alloc(map, &depth, &common_space, 2);
2202 str = "{ [0,i,0] -> [i] : 0 <= i <= 10 }";
2203 map = isl_map_read_from_str(ctx, str);
2204 ai = isl_access_info_add_source(ai, map, 0, &depth);
2206 str = "{ [1,i,0] -> [5] : 0 <= i <= 10 }";
2207 map = isl_map_read_from_str(ctx, str);
2208 ai = isl_access_info_add_source(ai, map, 0, &depth);
2210 flow = isl_access_info_compute_flow(ai);
2211 dim = isl_space_alloc(ctx, 0, 3, 3);
2212 mm.must = isl_map_empty(isl_space_copy(dim));
2213 mm.may = isl_map_empty(dim);
2215 isl_flow_foreach(flow, collect_must_may, &mm);
2217 str = "{ [0,i,0] -> [2,i,0] : 0 <= i <= 10; "
2218 " [1,i,0] -> [2,5,0] : 0 <= i <= 10 }";
2219 assert(map_is_equal(mm.may, str));
2220 str = "{ [i,j,k] -> [l,m,n] : 1 = 0 }";
2221 assert(map_is_equal(mm.must, str));
2223 isl_map_free(mm.must);
2224 isl_map_free(mm.may);
2225 isl_flow_free(flow);
2228 str = "{ [0,i,2] -> [i] : 0 <= i <= 10 }";
2229 map = isl_map_read_from_str(ctx, str);
2230 ai = isl_access_info_alloc(map, &depth, &common_space, 2);
2232 str = "{ [0,i,0] -> [i] : 0 <= i <= 10 }";
2233 map = isl_map_read_from_str(ctx, str);
2234 ai = isl_access_info_add_source(ai, map, 0, &depth);
2236 str = "{ [0,i,1] -> [5] : 0 <= i <= 10 }";
2237 map = isl_map_read_from_str(ctx, str);
2238 ai = isl_access_info_add_source(ai, map, 0, &depth);
2240 flow = isl_access_info_compute_flow(ai);
2241 dim = isl_space_alloc(ctx, 0, 3, 3);
2242 mm.must = isl_map_empty(isl_space_copy(dim));
2243 mm.may = isl_map_empty(dim);
2245 isl_flow_foreach(flow, collect_must_may, &mm);
2247 str = "{ [0,i,0] -> [0,i,2] : 0 <= i <= 10; "
2248 " [0,i,1] -> [0,5,2] : 0 <= i <= 5 }";
2249 assert(map_is_equal(mm.may, str));
2250 str = "{ [i,j,k] -> [l,m,n] : 1 = 0 }";
2251 assert(map_is_equal(mm.must, str));
2253 isl_map_free(mm.must);
2254 isl_map_free(mm.may);
2255 isl_flow_free(flow);
2258 str = "{ [0,i,1] -> [i] : 0 <= i <= 10 }";
2259 map = isl_map_read_from_str(ctx, str);
2260 ai = isl_access_info_alloc(map, &depth, &common_space, 2);
2262 str = "{ [0,i,0] -> [i] : 0 <= i <= 10 }";
2263 map = isl_map_read_from_str(ctx, str);
2264 ai = isl_access_info_add_source(ai, map, 0, &depth);
2266 str = "{ [0,i,2] -> [5] : 0 <= i <= 10 }";
2267 map = isl_map_read_from_str(ctx, str);
2268 ai = isl_access_info_add_source(ai, map, 0, &depth);
2270 flow = isl_access_info_compute_flow(ai);
2271 dim = isl_space_alloc(ctx, 0, 3, 3);
2272 mm.must = isl_map_empty(isl_space_copy(dim));
2273 mm.may = isl_map_empty(dim);
2275 isl_flow_foreach(flow, collect_must_may, &mm);
2277 str = "{ [0,i,0] -> [0,i,1] : 0 <= i <= 10; "
2278 " [0,i,2] -> [0,5,1] : 0 <= i <= 4 }";
2279 assert(map_is_equal(mm.may, str));
2280 str = "{ [i,j,k] -> [l,m,n] : 1 = 0 }";
2281 assert(map_is_equal(mm.must, str));
2283 isl_map_free(mm.must);
2284 isl_map_free(mm.may);
2285 isl_flow_free(flow);
2288 depth = 5;
2290 str = "{ [1,i,0,0,0] -> [i,j] : 0 <= i <= 10 and 0 <= j <= 10 }";
2291 map = isl_map_read_from_str(ctx, str);
2292 ai = isl_access_info_alloc(map, &depth, &common_space, 1);
2294 str = "{ [0,i,0,j,0] -> [i,j] : 0 <= i <= 10 and 0 <= j <= 10 }";
2295 map = isl_map_read_from_str(ctx, str);
2296 ai = isl_access_info_add_source(ai, map, 1, &depth);
2298 flow = isl_access_info_compute_flow(ai);
2299 dim = isl_space_alloc(ctx, 0, 5, 5);
2300 mm.must = isl_map_empty(isl_space_copy(dim));
2301 mm.may = isl_map_empty(dim);
2303 isl_flow_foreach(flow, collect_must_may, &mm);
2305 str = "{ [0,i,0,j,0] -> [1,i,0,0,0] : 0 <= i,j <= 10 }";
2306 assert(map_is_equal(mm.must, str));
2307 str = "{ [0,0,0,0,0] -> [0,0,0,0,0] : 1 = 0 }";
2308 assert(map_is_equal(mm.may, str));
2310 isl_map_free(mm.must);
2311 isl_map_free(mm.may);
2312 isl_flow_free(flow);
2314 return 0;
2317 /* Check that the dependence analysis proceeds without errors.
2318 * Earlier versions of isl would break down during the analysis
2319 * due to the use of the wrong spaces.
2321 static int test_flow(isl_ctx *ctx)
2323 const char *str;
2324 isl_union_map *access, *schedule;
2325 isl_union_map *must_dep, *may_dep;
2326 int r;
2328 str = "{ S0[j] -> i[]; S1[j,i] -> i[]; S2[] -> i[]; S3[] -> i[] }";
2329 access = isl_union_map_read_from_str(ctx, str);
2330 str = "{ S0[j] -> [0,j,0,0] : 0 <= j < 10; "
2331 "S1[j,i] -> [0,j,1,i] : 0 <= j < i < 10; "
2332 "S2[] -> [1,0,0,0]; "
2333 "S3[] -> [-1,0,0,0] }";
2334 schedule = isl_union_map_read_from_str(ctx, str);
2335 r = isl_union_map_compute_flow(access, isl_union_map_copy(access),
2336 isl_union_map_copy(access), schedule,
2337 &must_dep, &may_dep, NULL, NULL);
2338 isl_union_map_free(may_dep);
2339 isl_union_map_free(must_dep);
2341 return r;
2344 struct {
2345 const char *map;
2346 int sv;
2347 } sv_tests[] = {
2348 { "[N] -> { [i] -> [f] : 0 <= i <= N and 0 <= i - 10 f <= 9 }", 1 },
2349 { "[N] -> { [i] -> [f] : 0 <= i <= N and 0 <= i - 10 f <= 10 }", 0 },
2350 { "{ [i] -> [3*floor(i/2) + 5*floor(i/3)] }", 1 },
2351 { "{ S1[i] -> [i] : 0 <= i <= 9; S2[i] -> [i] : 0 <= i <= 9 }", 1 },
2352 { "{ [i] -> S1[i] : 0 <= i <= 9; [i] -> S2[i] : 0 <= i <= 9 }", 0 },
2353 { "{ A[i] -> [i]; B[i] -> [i]; B[i] -> [i + 1] }", 0 },
2354 { "{ A[i] -> [i]; B[i] -> [i] : i < 0; B[i] -> [i + 1] : i > 0 }", 1 },
2355 { "{ A[i] -> [i]; B[i] -> A[i] : i < 0; B[i] -> [i + 1] : i > 0 }", 1 },
2356 { "{ A[i] -> [i]; B[i] -> [j] : i - 1 <= j <= i }", 0 },
2359 int test_sv(isl_ctx *ctx)
2361 isl_union_map *umap;
2362 int i;
2363 int sv;
2365 for (i = 0; i < ARRAY_SIZE(sv_tests); ++i) {
2366 umap = isl_union_map_read_from_str(ctx, sv_tests[i].map);
2367 sv = isl_union_map_is_single_valued(umap);
2368 isl_union_map_free(umap);
2369 if (sv < 0)
2370 return -1;
2371 if (sv_tests[i].sv && !sv)
2372 isl_die(ctx, isl_error_internal,
2373 "map not detected as single valued", return -1);
2374 if (!sv_tests[i].sv && sv)
2375 isl_die(ctx, isl_error_internal,
2376 "map detected as single valued", return -1);
2379 return 0;
2382 struct {
2383 const char *str;
2384 int bijective;
2385 } bijective_tests[] = {
2386 { "[N,M]->{[i,j] -> [i]}", 0 },
2387 { "[N,M]->{[i,j] -> [i] : j=i}", 1 },
2388 { "[N,M]->{[i,j] -> [i] : j=0}", 1 },
2389 { "[N,M]->{[i,j] -> [i] : j=N}", 1 },
2390 { "[N,M]->{[i,j] -> [j,i]}", 1 },
2391 { "[N,M]->{[i,j] -> [i+j]}", 0 },
2392 { "[N,M]->{[i,j] -> []}", 0 },
2393 { "[N,M]->{[i,j] -> [i,j,N]}", 1 },
2394 { "[N,M]->{[i,j] -> [2i]}", 0 },
2395 { "[N,M]->{[i,j] -> [i,i]}", 0 },
2396 { "[N,M]->{[i,j] -> [2i,i]}", 0 },
2397 { "[N,M]->{[i,j] -> [2i,j]}", 1 },
2398 { "[N,M]->{[i,j] -> [x,y] : 2x=i & y =j}", 1 },
2401 static int test_bijective(struct isl_ctx *ctx)
2403 isl_map *map;
2404 int i;
2405 int bijective;
2407 for (i = 0; i < ARRAY_SIZE(bijective_tests); ++i) {
2408 map = isl_map_read_from_str(ctx, bijective_tests[i].str);
2409 bijective = isl_map_is_bijective(map);
2410 isl_map_free(map);
2411 if (bijective < 0)
2412 return -1;
2413 if (bijective_tests[i].bijective && !bijective)
2414 isl_die(ctx, isl_error_internal,
2415 "map not detected as bijective", return -1);
2416 if (!bijective_tests[i].bijective && bijective)
2417 isl_die(ctx, isl_error_internal,
2418 "map detected as bijective", return -1);
2421 return 0;
2424 /* Inputs for isl_pw_qpolynomial_gist tests.
2425 * "pwqp" is the input, "set" is the context and "gist" is the expected result.
2427 struct {
2428 const char *pwqp;
2429 const char *set;
2430 const char *gist;
2431 } pwqp_gist_tests[] = {
2432 { "{ [i] -> i }", "{ [k] : exists a : k = 2a }", "{ [i] -> i }" },
2433 { "{ [i] -> i + [ (i + [i/3])/2 ] }", "{ [10] }", "{ [i] -> 16 }" },
2434 { "{ [i] -> ([(i)/2]) }", "{ [k] : exists a : k = 2a+1 }",
2435 "{ [i] -> -1/2 + 1/2 * i }" },
2436 { "{ [i] -> i^2 : i != 0 }", "{ [i] : i != 0 }", "{ [i] -> i^2 }" },
2439 static int test_pwqp(struct isl_ctx *ctx)
2441 int i;
2442 const char *str;
2443 isl_set *set;
2444 isl_pw_qpolynomial *pwqp1, *pwqp2;
2445 int equal;
2447 str = "{ [i,j,k] -> 1 + 9 * [i/5] + 7 * [j/11] + 4 * [k/13] }";
2448 pwqp1 = isl_pw_qpolynomial_read_from_str(ctx, str);
2450 pwqp1 = isl_pw_qpolynomial_move_dims(pwqp1, isl_dim_param, 0,
2451 isl_dim_in, 1, 1);
2453 str = "[j] -> { [i,k] -> 1 + 9 * [i/5] + 7 * [j/11] + 4 * [k/13] }";
2454 pwqp2 = isl_pw_qpolynomial_read_from_str(ctx, str);
2456 pwqp1 = isl_pw_qpolynomial_sub(pwqp1, pwqp2);
2458 assert(isl_pw_qpolynomial_is_zero(pwqp1));
2460 isl_pw_qpolynomial_free(pwqp1);
2462 for (i = 0; i < ARRAY_SIZE(pwqp_gist_tests); ++i) {
2463 str = pwqp_gist_tests[i].pwqp;
2464 pwqp1 = isl_pw_qpolynomial_read_from_str(ctx, str);
2465 str = pwqp_gist_tests[i].set;
2466 set = isl_set_read_from_str(ctx, str);
2467 pwqp1 = isl_pw_qpolynomial_gist(pwqp1, set);
2468 str = pwqp_gist_tests[i].gist;
2469 pwqp2 = isl_pw_qpolynomial_read_from_str(ctx, str);
2470 pwqp1 = isl_pw_qpolynomial_sub(pwqp1, pwqp2);
2471 equal = isl_pw_qpolynomial_is_zero(pwqp1);
2472 isl_pw_qpolynomial_free(pwqp1);
2474 if (equal < 0)
2475 return -1;
2476 if (!equal)
2477 isl_die(ctx, isl_error_unknown,
2478 "unexpected result", return -1);
2481 str = "{ [i] -> ([([i/2] + [i/2])/5]) }";
2482 pwqp1 = isl_pw_qpolynomial_read_from_str(ctx, str);
2483 str = "{ [i] -> ([(2 * [i/2])/5]) }";
2484 pwqp2 = isl_pw_qpolynomial_read_from_str(ctx, str);
2486 pwqp1 = isl_pw_qpolynomial_sub(pwqp1, pwqp2);
2488 assert(isl_pw_qpolynomial_is_zero(pwqp1));
2490 isl_pw_qpolynomial_free(pwqp1);
2492 str = "{ [x] -> ([x/2] + [(x+1)/2]) }";
2493 pwqp1 = isl_pw_qpolynomial_read_from_str(ctx, str);
2494 str = "{ [x] -> x }";
2495 pwqp2 = isl_pw_qpolynomial_read_from_str(ctx, str);
2497 pwqp1 = isl_pw_qpolynomial_sub(pwqp1, pwqp2);
2499 assert(isl_pw_qpolynomial_is_zero(pwqp1));
2501 isl_pw_qpolynomial_free(pwqp1);
2503 str = "{ [i] -> ([i/2]) : i >= 0; [i] -> ([i/3]) : i < 0 }";
2504 pwqp1 = isl_pw_qpolynomial_read_from_str(ctx, str);
2505 pwqp2 = isl_pw_qpolynomial_read_from_str(ctx, str);
2506 pwqp1 = isl_pw_qpolynomial_coalesce(pwqp1);
2507 pwqp1 = isl_pw_qpolynomial_sub(pwqp1, pwqp2);
2508 assert(isl_pw_qpolynomial_is_zero(pwqp1));
2509 isl_pw_qpolynomial_free(pwqp1);
2511 str = "{ [a,b,a] -> (([(2*[a/3]+b)/5]) * ([(2*[a/3]+b)/5])) }";
2512 pwqp2 = isl_pw_qpolynomial_read_from_str(ctx, str);
2513 str = "{ [a,b,c] -> (([(2*[a/3]+b)/5]) * ([(2*[c/3]+b)/5])) }";
2514 pwqp1 = isl_pw_qpolynomial_read_from_str(ctx, str);
2515 set = isl_set_read_from_str(ctx, "{ [a,b,a] }");
2516 pwqp1 = isl_pw_qpolynomial_intersect_domain(pwqp1, set);
2517 equal = isl_pw_qpolynomial_plain_is_equal(pwqp1, pwqp2);
2518 isl_pw_qpolynomial_free(pwqp1);
2519 isl_pw_qpolynomial_free(pwqp2);
2520 if (equal < 0)
2521 return -1;
2522 if (!equal)
2523 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
2525 str = "{ [a,b,c] -> (([(2*[a/3]+1)/5]) * ([(2*[c/3]+1)/5])) : b = 1 }";
2526 pwqp2 = isl_pw_qpolynomial_read_from_str(ctx, str);
2527 str = "{ [a,b,c] -> (([(2*[a/3]+b)/5]) * ([(2*[c/3]+b)/5])) }";
2528 pwqp1 = isl_pw_qpolynomial_read_from_str(ctx, str);
2529 pwqp1 = isl_pw_qpolynomial_fix_val(pwqp1, isl_dim_set, 1,
2530 isl_val_one(ctx));
2531 equal = isl_pw_qpolynomial_plain_is_equal(pwqp1, pwqp2);
2532 isl_pw_qpolynomial_free(pwqp1);
2533 isl_pw_qpolynomial_free(pwqp2);
2534 if (equal < 0)
2535 return -1;
2536 if (!equal)
2537 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
2539 return 0;
2542 static int test_split_periods(isl_ctx *ctx)
2544 const char *str;
2545 isl_pw_qpolynomial *pwqp;
2547 str = "{ [U,V] -> 1/3 * U + 2/3 * V - [(U + 2V)/3] + [U/2] : "
2548 "U + 2V + 3 >= 0 and - U -2V >= 0 and - U + 10 >= 0 and "
2549 "U >= 0; [U,V] -> U^2 : U >= 100 }";
2550 pwqp = isl_pw_qpolynomial_read_from_str(ctx, str);
2552 pwqp = isl_pw_qpolynomial_split_periods(pwqp, 2);
2554 isl_pw_qpolynomial_free(pwqp);
2556 if (!pwqp)
2557 return -1;
2559 return 0;
2562 static int test_union(isl_ctx *ctx)
2564 const char *str;
2565 isl_union_set *uset1, *uset2;
2566 isl_union_map *umap1, *umap2;
2567 int equal;
2569 str = "{ [i] : 0 <= i <= 1 }";
2570 uset1 = isl_union_set_read_from_str(ctx, str);
2571 str = "{ [1] -> [0] }";
2572 umap1 = isl_union_map_read_from_str(ctx, str);
2574 umap2 = isl_union_set_lex_gt_union_set(isl_union_set_copy(uset1), uset1);
2575 equal = isl_union_map_is_equal(umap1, umap2);
2577 isl_union_map_free(umap1);
2578 isl_union_map_free(umap2);
2580 if (equal < 0)
2581 return -1;
2582 if (!equal)
2583 isl_die(ctx, isl_error_unknown, "union maps not equal",
2584 return -1);
2586 str = "{ A[i] -> B[i]; B[i] -> C[i]; A[0] -> C[1] }";
2587 umap1 = isl_union_map_read_from_str(ctx, str);
2588 str = "{ A[i]; B[i] }";
2589 uset1 = isl_union_set_read_from_str(ctx, str);
2591 uset2 = isl_union_map_domain(umap1);
2593 equal = isl_union_set_is_equal(uset1, uset2);
2595 isl_union_set_free(uset1);
2596 isl_union_set_free(uset2);
2598 if (equal < 0)
2599 return -1;
2600 if (!equal)
2601 isl_die(ctx, isl_error_unknown, "union sets not equal",
2602 return -1);
2604 return 0;
2607 /* Check that computing a bound of a non-zero polynomial over an unbounded
2608 * domain does not produce a rational value.
2609 * Ideally, we want the value to be infinity, but we accept NaN for now.
2610 * We certainly do not want to obtain the value zero.
2612 static int test_bound_unbounded_domain(isl_ctx *ctx)
2614 const char *str;
2615 isl_set *dom;
2616 isl_point *pnt;
2617 isl_pw_qpolynomial *pwqp;
2618 isl_pw_qpolynomial_fold *pwf;
2619 isl_val *v;
2620 int is_rat;
2622 str = "{ [m,n] -> -m * n }";
2623 pwqp = isl_pw_qpolynomial_read_from_str(ctx, str);
2624 pwf = isl_pw_qpolynomial_bound(pwqp, isl_fold_max, NULL);
2625 dom = isl_pw_qpolynomial_fold_domain(isl_pw_qpolynomial_fold_copy(pwf));
2626 pnt = isl_set_sample_point(dom);
2627 v = isl_pw_qpolynomial_fold_eval(pwf, pnt);
2628 is_rat = isl_val_is_rat(v);
2629 isl_val_free(v);
2631 if (is_rat < 0)
2632 return -1;
2633 if (is_rat)
2634 isl_die(ctx, isl_error_unknown,
2635 "unexpected rational value", return -1);
2637 return 0;
2640 static int test_bound(isl_ctx *ctx)
2642 const char *str;
2643 unsigned dim;
2644 isl_pw_qpolynomial *pwqp;
2645 isl_pw_qpolynomial_fold *pwf;
2647 if (test_bound_unbounded_domain(ctx) < 0)
2648 return -1;
2650 str = "{ [[a, b, c, d] -> [e]] -> 0 }";
2651 pwqp = isl_pw_qpolynomial_read_from_str(ctx, str);
2652 pwf = isl_pw_qpolynomial_bound(pwqp, isl_fold_max, NULL);
2653 dim = isl_pw_qpolynomial_fold_dim(pwf, isl_dim_in);
2654 isl_pw_qpolynomial_fold_free(pwf);
2655 if (dim != 4)
2656 isl_die(ctx, isl_error_unknown, "unexpected input dimension",
2657 return -1);
2659 str = "{ [[x]->[x]] -> 1 : exists a : x = 2 a }";
2660 pwqp = isl_pw_qpolynomial_read_from_str(ctx, str);
2661 pwf = isl_pw_qpolynomial_bound(pwqp, isl_fold_max, NULL);
2662 dim = isl_pw_qpolynomial_fold_dim(pwf, isl_dim_in);
2663 isl_pw_qpolynomial_fold_free(pwf);
2664 if (dim != 1)
2665 isl_die(ctx, isl_error_unknown, "unexpected input dimension",
2666 return -1);
2668 return 0;
2671 static int test_lift(isl_ctx *ctx)
2673 const char *str;
2674 isl_basic_map *bmap;
2675 isl_basic_set *bset;
2677 str = "{ [i0] : exists e0 : i0 = 4e0 }";
2678 bset = isl_basic_set_read_from_str(ctx, str);
2679 bset = isl_basic_set_lift(bset);
2680 bmap = isl_basic_map_from_range(bset);
2681 bset = isl_basic_map_domain(bmap);
2682 isl_basic_set_free(bset);
2684 return 0;
2687 struct {
2688 const char *set1;
2689 const char *set2;
2690 int subset;
2691 } subset_tests[] = {
2692 { "{ [112, 0] }",
2693 "{ [i0, i1] : exists (e0 = [(i0 - i1)/16], e1: "
2694 "16e0 <= i0 - i1 and 16e0 >= -15 + i0 - i1 and "
2695 "16e1 <= i1 and 16e0 >= -i1 and 16e1 >= -i0 + i1) }", 1 },
2696 { "{ [65] }",
2697 "{ [i] : exists (e0 = [(255i)/256], e1 = [(127i + 65e0)/191], "
2698 "e2 = [(3i + 61e1)/65], e3 = [(52i + 12e2)/61], "
2699 "e4 = [(2i + e3)/3], e5 = [(4i + e3)/4], e6 = [(8i + e3)/12]: "
2700 "3e4 = 2i + e3 and 4e5 = 4i + e3 and 12e6 = 8i + e3 and "
2701 "i <= 255 and 64e3 >= -45 + 67i and i >= 0 and "
2702 "256e0 <= 255i and 256e0 >= -255 + 255i and "
2703 "191e1 <= 127i + 65e0 and 191e1 >= -190 + 127i + 65e0 and "
2704 "65e2 <= 3i + 61e1 and 65e2 >= -64 + 3i + 61e1 and "
2705 "61e3 <= 52i + 12e2 and 61e3 >= -60 + 52i + 12e2) }", 1 },
2706 { "{ [i] : 0 <= i <= 10 }", "{ rat: [i] : 0 <= i <= 10 }", 1 },
2707 { "{ rat: [i] : 0 <= i <= 10 }", "{ [i] : 0 <= i <= 10 }", 0 },
2708 { "{ rat: [0] }", "{ [i] : 0 <= i <= 10 }", 1 },
2709 { "{ rat: [(1)/2] }", "{ [i] : 0 <= i <= 10 }", 0 },
2710 { "{ [t, i] : (exists (e0 = [(2 + t)/4]: 4e0 <= 2 + t and "
2711 "4e0 >= -1 + t and i >= 57 and i <= 62 and "
2712 "4e0 <= 62 + t - i and 4e0 >= -61 + t + i and "
2713 "t >= 0 and t <= 511 and 4e0 <= -57 + t + i and "
2714 "4e0 >= 58 + t - i and i >= 58 + t and i >= 62 - t)) }",
2715 "{ [i0, i1] : (exists (e0 = [(4 + i0)/4]: 4e0 <= 62 + i0 - i1 and "
2716 "4e0 >= 1 + i0 and i0 >= 0 and i0 <= 511 and "
2717 "4e0 <= -57 + i0 + i1)) or "
2718 "(exists (e0 = [(2 + i0)/4]: 4e0 <= i0 and "
2719 "4e0 >= 58 + i0 - i1 and i0 >= 2 and i0 <= 511 and "
2720 "4e0 >= -61 + i0 + i1)) or "
2721 "(i1 <= 66 - i0 and i0 >= 2 and i1 >= 59 + i0) }", 1 },
2724 static int test_subset(isl_ctx *ctx)
2726 int i;
2727 isl_set *set1, *set2;
2728 int subset;
2730 for (i = 0; i < ARRAY_SIZE(subset_tests); ++i) {
2731 set1 = isl_set_read_from_str(ctx, subset_tests[i].set1);
2732 set2 = isl_set_read_from_str(ctx, subset_tests[i].set2);
2733 subset = isl_set_is_subset(set1, set2);
2734 isl_set_free(set1);
2735 isl_set_free(set2);
2736 if (subset < 0)
2737 return -1;
2738 if (subset != subset_tests[i].subset)
2739 isl_die(ctx, isl_error_unknown,
2740 "incorrect subset result", return -1);
2743 return 0;
2746 struct {
2747 const char *minuend;
2748 const char *subtrahend;
2749 const char *difference;
2750 } subtract_domain_tests[] = {
2751 { "{ A[i] -> B[i] }", "{ A[i] }", "{ }" },
2752 { "{ A[i] -> B[i] }", "{ B[i] }", "{ A[i] -> B[i] }" },
2753 { "{ A[i] -> B[i] }", "{ A[i] : i > 0 }", "{ A[i] -> B[i] : i <= 0 }" },
2756 static int test_subtract(isl_ctx *ctx)
2758 int i;
2759 isl_union_map *umap1, *umap2;
2760 isl_union_pw_multi_aff *upma1, *upma2;
2761 isl_union_set *uset;
2762 int equal;
2764 for (i = 0; i < ARRAY_SIZE(subtract_domain_tests); ++i) {
2765 umap1 = isl_union_map_read_from_str(ctx,
2766 subtract_domain_tests[i].minuend);
2767 uset = isl_union_set_read_from_str(ctx,
2768 subtract_domain_tests[i].subtrahend);
2769 umap2 = isl_union_map_read_from_str(ctx,
2770 subtract_domain_tests[i].difference);
2771 umap1 = isl_union_map_subtract_domain(umap1, uset);
2772 equal = isl_union_map_is_equal(umap1, umap2);
2773 isl_union_map_free(umap1);
2774 isl_union_map_free(umap2);
2775 if (equal < 0)
2776 return -1;
2777 if (!equal)
2778 isl_die(ctx, isl_error_unknown,
2779 "incorrect subtract domain result", return -1);
2782 for (i = 0; i < ARRAY_SIZE(subtract_domain_tests); ++i) {
2783 upma1 = isl_union_pw_multi_aff_read_from_str(ctx,
2784 subtract_domain_tests[i].minuend);
2785 uset = isl_union_set_read_from_str(ctx,
2786 subtract_domain_tests[i].subtrahend);
2787 upma2 = isl_union_pw_multi_aff_read_from_str(ctx,
2788 subtract_domain_tests[i].difference);
2789 upma1 = isl_union_pw_multi_aff_subtract_domain(upma1, uset);
2790 equal = isl_union_pw_multi_aff_plain_is_equal(upma1, upma2);
2791 isl_union_pw_multi_aff_free(upma1);
2792 isl_union_pw_multi_aff_free(upma2);
2793 if (equal < 0)
2794 return -1;
2795 if (!equal)
2796 isl_die(ctx, isl_error_unknown,
2797 "incorrect subtract domain result", return -1);
2800 return 0;
2803 int test_factorize(isl_ctx *ctx)
2805 const char *str;
2806 isl_basic_set *bset;
2807 isl_factorizer *f;
2809 str = "{ [i0, i1, i2, i3, i4, i5, i6, i7] : 3i5 <= 2 - 2i0 and "
2810 "i0 >= -2 and i6 >= 1 + i3 and i7 >= 0 and 3i5 >= -2i0 and "
2811 "2i4 <= i2 and i6 >= 1 + 2i0 + 3i1 and i4 <= -1 and "
2812 "i6 >= 1 + 2i0 + 3i5 and i6 <= 2 + 2i0 + 3i5 and "
2813 "3i5 <= 2 - 2i0 - i2 + 3i4 and i6 <= 2 + 2i0 + 3i1 and "
2814 "i0 <= -1 and i7 <= i2 + i3 - 3i4 - i6 and "
2815 "3i5 >= -2i0 - i2 + 3i4 }";
2816 bset = isl_basic_set_read_from_str(ctx, str);
2817 f = isl_basic_set_factorizer(bset);
2818 isl_basic_set_free(bset);
2819 isl_factorizer_free(f);
2820 if (!f)
2821 isl_die(ctx, isl_error_unknown,
2822 "failed to construct factorizer", return -1);
2824 str = "{ [i0, i1, i2, i3, i4, i5, i6, i7, i8, i9, i10, i11, i12] : "
2825 "i12 <= 2 + i0 - i11 and 2i8 >= -i4 and i11 >= i1 and "
2826 "3i5 <= -i2 and 2i11 >= -i4 - 2i7 and i11 <= 3 + i0 + 3i9 and "
2827 "i11 <= -i4 - 2i7 and i12 >= -i10 and i2 >= -2 and "
2828 "i11 >= i1 + 3i10 and i11 >= 1 + i0 + 3i9 and "
2829 "i11 <= 1 - i4 - 2i8 and 6i6 <= 6 - i2 and 3i6 >= 1 - i2 and "
2830 "i11 <= 2 + i1 and i12 <= i4 + i11 and i12 >= i0 - i11 and "
2831 "3i5 >= -2 - i2 and i12 >= -1 + i4 + i11 and 3i3 <= 3 - i2 and "
2832 "9i6 <= 11 - i2 + 6i5 and 3i3 >= 1 - i2 and "
2833 "9i6 <= 5 - i2 + 6i3 and i12 <= -1 and i2 <= 0 }";
2834 bset = isl_basic_set_read_from_str(ctx, str);
2835 f = isl_basic_set_factorizer(bset);
2836 isl_basic_set_free(bset);
2837 isl_factorizer_free(f);
2838 if (!f)
2839 isl_die(ctx, isl_error_unknown,
2840 "failed to construct factorizer", return -1);
2842 return 0;
2845 static int check_injective(__isl_take isl_map *map, void *user)
2847 int *injective = user;
2849 *injective = isl_map_is_injective(map);
2850 isl_map_free(map);
2852 if (*injective < 0 || !*injective)
2853 return -1;
2855 return 0;
2858 int test_one_schedule(isl_ctx *ctx, const char *d, const char *w,
2859 const char *r, const char *s, int tilable, int parallel)
2861 int i;
2862 isl_union_set *D;
2863 isl_union_map *W, *R, *S;
2864 isl_union_map *empty;
2865 isl_union_map *dep_raw, *dep_war, *dep_waw, *dep;
2866 isl_union_map *validity, *proximity, *coincidence;
2867 isl_union_map *schedule;
2868 isl_union_map *test;
2869 isl_union_set *delta;
2870 isl_union_set *domain;
2871 isl_set *delta_set;
2872 isl_set *slice;
2873 isl_set *origin;
2874 isl_schedule_constraints *sc;
2875 isl_schedule *sched;
2876 int is_nonneg, is_parallel, is_tilable, is_injection, is_complete;
2878 D = isl_union_set_read_from_str(ctx, d);
2879 W = isl_union_map_read_from_str(ctx, w);
2880 R = isl_union_map_read_from_str(ctx, r);
2881 S = isl_union_map_read_from_str(ctx, s);
2883 W = isl_union_map_intersect_domain(W, isl_union_set_copy(D));
2884 R = isl_union_map_intersect_domain(R, isl_union_set_copy(D));
2886 empty = isl_union_map_empty(isl_union_map_get_space(S));
2887 isl_union_map_compute_flow(isl_union_map_copy(R),
2888 isl_union_map_copy(W), empty,
2889 isl_union_map_copy(S),
2890 &dep_raw, NULL, NULL, NULL);
2891 isl_union_map_compute_flow(isl_union_map_copy(W),
2892 isl_union_map_copy(W),
2893 isl_union_map_copy(R),
2894 isl_union_map_copy(S),
2895 &dep_waw, &dep_war, NULL, NULL);
2897 dep = isl_union_map_union(dep_waw, dep_war);
2898 dep = isl_union_map_union(dep, dep_raw);
2899 validity = isl_union_map_copy(dep);
2900 coincidence = isl_union_map_copy(dep);
2901 proximity = isl_union_map_copy(dep);
2903 sc = isl_schedule_constraints_on_domain(isl_union_set_copy(D));
2904 sc = isl_schedule_constraints_set_validity(sc, validity);
2905 sc = isl_schedule_constraints_set_coincidence(sc, coincidence);
2906 sc = isl_schedule_constraints_set_proximity(sc, proximity);
2907 sched = isl_schedule_constraints_compute_schedule(sc);
2908 schedule = isl_schedule_get_map(sched);
2909 isl_schedule_free(sched);
2910 isl_union_map_free(W);
2911 isl_union_map_free(R);
2912 isl_union_map_free(S);
2914 is_injection = 1;
2915 isl_union_map_foreach_map(schedule, &check_injective, &is_injection);
2917 domain = isl_union_map_domain(isl_union_map_copy(schedule));
2918 is_complete = isl_union_set_is_subset(D, domain);
2919 isl_union_set_free(D);
2920 isl_union_set_free(domain);
2922 test = isl_union_map_reverse(isl_union_map_copy(schedule));
2923 test = isl_union_map_apply_range(test, dep);
2924 test = isl_union_map_apply_range(test, schedule);
2926 delta = isl_union_map_deltas(test);
2927 if (isl_union_set_n_set(delta) == 0) {
2928 is_tilable = 1;
2929 is_parallel = 1;
2930 is_nonneg = 1;
2931 isl_union_set_free(delta);
2932 } else {
2933 delta_set = isl_set_from_union_set(delta);
2935 slice = isl_set_universe(isl_set_get_space(delta_set));
2936 for (i = 0; i < tilable; ++i)
2937 slice = isl_set_lower_bound_si(slice, isl_dim_set, i, 0);
2938 is_tilable = isl_set_is_subset(delta_set, slice);
2939 isl_set_free(slice);
2941 slice = isl_set_universe(isl_set_get_space(delta_set));
2942 for (i = 0; i < parallel; ++i)
2943 slice = isl_set_fix_si(slice, isl_dim_set, i, 0);
2944 is_parallel = isl_set_is_subset(delta_set, slice);
2945 isl_set_free(slice);
2947 origin = isl_set_universe(isl_set_get_space(delta_set));
2948 for (i = 0; i < isl_set_dim(origin, isl_dim_set); ++i)
2949 origin = isl_set_fix_si(origin, isl_dim_set, i, 0);
2951 delta_set = isl_set_union(delta_set, isl_set_copy(origin));
2952 delta_set = isl_set_lexmin(delta_set);
2954 is_nonneg = isl_set_is_equal(delta_set, origin);
2956 isl_set_free(origin);
2957 isl_set_free(delta_set);
2960 if (is_nonneg < 0 || is_parallel < 0 || is_tilable < 0 ||
2961 is_injection < 0 || is_complete < 0)
2962 return -1;
2963 if (!is_complete)
2964 isl_die(ctx, isl_error_unknown,
2965 "generated schedule incomplete", return -1);
2966 if (!is_injection)
2967 isl_die(ctx, isl_error_unknown,
2968 "generated schedule not injective on each statement",
2969 return -1);
2970 if (!is_nonneg)
2971 isl_die(ctx, isl_error_unknown,
2972 "negative dependences in generated schedule",
2973 return -1);
2974 if (!is_tilable)
2975 isl_die(ctx, isl_error_unknown,
2976 "generated schedule not as tilable as expected",
2977 return -1);
2978 if (!is_parallel)
2979 isl_die(ctx, isl_error_unknown,
2980 "generated schedule not as parallel as expected",
2981 return -1);
2983 return 0;
2986 static __isl_give isl_union_map *compute_schedule(isl_ctx *ctx,
2987 const char *domain, const char *validity, const char *proximity)
2989 isl_union_set *dom;
2990 isl_union_map *dep;
2991 isl_union_map *prox;
2992 isl_schedule_constraints *sc;
2993 isl_schedule *schedule;
2994 isl_union_map *sched;
2996 dom = isl_union_set_read_from_str(ctx, domain);
2997 dep = isl_union_map_read_from_str(ctx, validity);
2998 prox = isl_union_map_read_from_str(ctx, proximity);
2999 sc = isl_schedule_constraints_on_domain(dom);
3000 sc = isl_schedule_constraints_set_validity(sc, dep);
3001 sc = isl_schedule_constraints_set_proximity(sc, prox);
3002 schedule = isl_schedule_constraints_compute_schedule(sc);
3003 sched = isl_schedule_get_map(schedule);
3004 isl_schedule_free(schedule);
3006 return sched;
3009 /* Check that a schedule can be constructed on the given domain
3010 * with the given validity and proximity constraints.
3012 static int test_has_schedule(isl_ctx *ctx, const char *domain,
3013 const char *validity, const char *proximity)
3015 isl_union_map *sched;
3017 sched = compute_schedule(ctx, domain, validity, proximity);
3018 if (!sched)
3019 return -1;
3021 isl_union_map_free(sched);
3022 return 0;
3025 int test_special_schedule(isl_ctx *ctx, const char *domain,
3026 const char *validity, const char *proximity, const char *expected_sched)
3028 isl_union_map *sched1, *sched2;
3029 int equal;
3031 sched1 = compute_schedule(ctx, domain, validity, proximity);
3032 sched2 = isl_union_map_read_from_str(ctx, expected_sched);
3034 equal = isl_union_map_is_equal(sched1, sched2);
3035 isl_union_map_free(sched1);
3036 isl_union_map_free(sched2);
3038 if (equal < 0)
3039 return -1;
3040 if (!equal)
3041 isl_die(ctx, isl_error_unknown, "unexpected schedule",
3042 return -1);
3044 return 0;
3047 /* Check that the schedule map is properly padded, even after being
3048 * reconstructed from the band forest.
3050 static int test_padded_schedule(isl_ctx *ctx)
3052 const char *str;
3053 isl_union_set *D;
3054 isl_union_map *validity, *proximity;
3055 isl_schedule_constraints *sc;
3056 isl_schedule *sched;
3057 isl_union_map *map1, *map2;
3058 isl_band_list *list;
3059 int equal;
3061 str = "[N] -> { S0[i] : 0 <= i <= N; S1[i, j] : 0 <= i, j <= N }";
3062 D = isl_union_set_read_from_str(ctx, str);
3063 validity = isl_union_map_empty(isl_union_set_get_space(D));
3064 proximity = isl_union_map_copy(validity);
3065 sc = isl_schedule_constraints_on_domain(D);
3066 sc = isl_schedule_constraints_set_validity(sc, validity);
3067 sc = isl_schedule_constraints_set_proximity(sc, proximity);
3068 sched = isl_schedule_constraints_compute_schedule(sc);
3069 map1 = isl_schedule_get_map(sched);
3070 list = isl_schedule_get_band_forest(sched);
3071 isl_band_list_free(list);
3072 map2 = isl_schedule_get_map(sched);
3073 isl_schedule_free(sched);
3074 equal = isl_union_map_is_equal(map1, map2);
3075 isl_union_map_free(map1);
3076 isl_union_map_free(map2);
3078 if (equal < 0)
3079 return -1;
3080 if (!equal)
3081 isl_die(ctx, isl_error_unknown,
3082 "reconstructed schedule map not the same as original",
3083 return -1);
3085 return 0;
3088 /* Check that conditional validity constraints are also taken into
3089 * account across bands.
3090 * In particular, try to make sure that live ranges D[1,0]->C[2,1] and
3091 * D[2,0]->C[3,0] are not local in the outer band of the generated schedule
3092 * and then check that the adjacent order constraint C[2,1]->D[2,0]
3093 * is enforced by the rest of the schedule.
3095 static int test_special_conditional_schedule_constraints(isl_ctx *ctx)
3097 const char *str;
3098 isl_union_set *domain;
3099 isl_union_map *validity, *proximity, *condition;
3100 isl_union_map *sink, *source, *dep;
3101 isl_schedule_constraints *sc;
3102 isl_schedule *schedule;
3103 isl_union_access_info *access;
3104 isl_union_flow *flow;
3105 int empty;
3107 str = "[n] -> { C[k, i] : k <= -1 + n and i >= 0 and i <= -1 + k; "
3108 "A[k] : k >= 1 and k <= -1 + n; "
3109 "B[k, i] : k <= -1 + n and i >= 0 and i <= -1 + k; "
3110 "D[k, i] : k <= -1 + n and i >= 0 and i <= -1 + k }";
3111 domain = isl_union_set_read_from_str(ctx, str);
3112 sc = isl_schedule_constraints_on_domain(domain);
3113 str = "[n] -> { D[k, i] -> C[1 + k, k - i] : "
3114 "k <= -2 + n and i >= 1 and i <= -1 + k; "
3115 "D[k, i] -> C[1 + k, i] : "
3116 "k <= -2 + n and i >= 1 and i <= -1 + k; "
3117 "D[k, 0] -> C[1 + k, k] : k >= 1 and k <= -2 + n; "
3118 "D[k, 0] -> C[1 + k, 0] : k >= 1 and k <= -2 + n }";
3119 validity = isl_union_map_read_from_str(ctx, str);
3120 sc = isl_schedule_constraints_set_validity(sc, validity);
3121 str = "[n] -> { C[k, i] -> D[k, i] : "
3122 "0 <= i <= -1 + k and k <= -1 + n }";
3123 proximity = isl_union_map_read_from_str(ctx, str);
3124 sc = isl_schedule_constraints_set_proximity(sc, proximity);
3125 str = "[n] -> { [D[k, i] -> a[]] -> [C[1 + k, k - i] -> b[]] : "
3126 "i <= -1 + k and i >= 1 and k <= -2 + n; "
3127 "[B[k, i] -> c[]] -> [B[k, 1 + i] -> c[]] : "
3128 "k <= -1 + n and i >= 0 and i <= -2 + k }";
3129 condition = isl_union_map_read_from_str(ctx, str);
3130 str = "[n] -> { [B[k, i] -> e[]] -> [D[k, i] -> a[]] : "
3131 "i >= 0 and i <= -1 + k and k <= -1 + n; "
3132 "[C[k, i] -> b[]] -> [D[k', -1 + k - i] -> a[]] : "
3133 "i >= 0 and i <= -1 + k and k <= -1 + n and "
3134 "k' <= -1 + n and k' >= k - i and k' >= 1 + k; "
3135 "[C[k, i] -> b[]] -> [D[k, -1 + k - i] -> a[]] : "
3136 "i >= 0 and i <= -1 + k and k <= -1 + n; "
3137 "[B[k, i] -> c[]] -> [A[k'] -> d[]] : "
3138 "k <= -1 + n and i >= 0 and i <= -1 + k and "
3139 "k' >= 1 and k' <= -1 + n and k' >= 1 + k }";
3140 validity = isl_union_map_read_from_str(ctx, str);
3141 sc = isl_schedule_constraints_set_conditional_validity(sc, condition,
3142 validity);
3143 schedule = isl_schedule_constraints_compute_schedule(sc);
3144 str = "{ D[2,0] -> [] }";
3145 sink = isl_union_map_read_from_str(ctx, str);
3146 access = isl_union_access_info_from_sink(sink);
3147 str = "{ C[2,1] -> [] }";
3148 source = isl_union_map_read_from_str(ctx, str);
3149 access = isl_union_access_info_set_must_source(access, source);
3150 access = isl_union_access_info_set_schedule(access, schedule);
3151 flow = isl_union_access_info_compute_flow(access);
3152 dep = isl_union_flow_get_must_dependence(flow);
3153 isl_union_flow_free(flow);
3154 empty = isl_union_map_is_empty(dep);
3155 isl_union_map_free(dep);
3157 if (empty < 0)
3158 return -1;
3159 if (empty)
3160 isl_die(ctx, isl_error_unknown,
3161 "conditional validity not respected", return -1);
3163 return 0;
3166 /* Input for testing of schedule construction based on
3167 * conditional constraints.
3169 * domain is the iteration domain
3170 * flow are the flow dependences, which determine the validity and
3171 * proximity constraints
3172 * condition are the conditions on the conditional validity constraints
3173 * conditional_validity are the conditional validity constraints
3174 * outer_band_n is the expected number of members in the outer band
3176 struct {
3177 const char *domain;
3178 const char *flow;
3179 const char *condition;
3180 const char *conditional_validity;
3181 int outer_band_n;
3182 } live_range_tests[] = {
3183 /* Contrived example that illustrates that we need to keep
3184 * track of tagged condition dependences and
3185 * tagged conditional validity dependences
3186 * in isl_sched_edge separately.
3187 * In particular, the conditional validity constraints on A
3188 * cannot be satisfied,
3189 * but they can be ignored because there are no corresponding
3190 * condition constraints. However, we do have an additional
3191 * conditional validity constraint that maps to the same
3192 * dependence relation
3193 * as the condition constraint on B. If we did not make a distinction
3194 * between tagged condition and tagged conditional validity
3195 * dependences, then we
3196 * could end up treating this shared dependence as an condition
3197 * constraint on A, forcing a localization of the conditions,
3198 * which is impossible.
3200 { "{ S[i] : 0 <= 1 < 100; T[i] : 0 <= 1 < 100 }",
3201 "{ S[i] -> S[i+1] : 0 <= i < 99 }",
3202 "{ [S[i] -> B[]] -> [S[i+1] -> B[]] : 0 <= i < 99 }",
3203 "{ [S[i] -> A[]] -> [T[i'] -> A[]] : 0 <= i', i < 100 and i != i';"
3204 "[T[i] -> A[]] -> [S[i'] -> A[]] : 0 <= i', i < 100 and i != i';"
3205 "[S[i] -> A[]] -> [S[i+1] -> A[]] : 0 <= i < 99 }",
3208 /* TACO 2013 Fig. 7 */
3209 { "[n] -> { S1[i,j] : 0 <= i,j < n; S2[i,j] : 0 <= i,j < n }",
3210 "[n] -> { S1[i,j] -> S2[i,j] : 0 <= i,j < n;"
3211 "S2[i,j] -> S2[i,j+1] : 0 <= i < n and 0 <= j < n - 1 }",
3212 "[n] -> { [S1[i,j] -> t[]] -> [S2[i,j] -> t[]] : 0 <= i,j < n;"
3213 "[S2[i,j] -> x1[]] -> [S2[i,j+1] -> x1[]] : "
3214 "0 <= i < n and 0 <= j < n - 1 }",
3215 "[n] -> { [S2[i,j] -> t[]] -> [S1[i,j'] -> t[]] : "
3216 "0 <= i < n and 0 <= j < j' < n;"
3217 "[S2[i,j] -> t[]] -> [S1[i',j'] -> t[]] : "
3218 "0 <= i < i' < n and 0 <= j,j' < n;"
3219 "[S2[i,j] -> x1[]] -> [S2[i,j'] -> x1[]] : "
3220 "0 <= i,j,j' < n and j < j' }",
3223 /* TACO 2013 Fig. 7, without tags */
3224 { "[n] -> { S1[i,j] : 0 <= i,j < n; S2[i,j] : 0 <= i,j < n }",
3225 "[n] -> { S1[i,j] -> S2[i,j] : 0 <= i,j < n;"
3226 "S2[i,j] -> S2[i,j+1] : 0 <= i < n and 0 <= j < n - 1 }",
3227 "[n] -> { S1[i,j] -> S2[i,j] : 0 <= i,j < n;"
3228 "S2[i,j] -> S2[i,j+1] : 0 <= i < n and 0 <= j < n - 1 }",
3229 "[n] -> { S2[i,j] -> S1[i,j'] : 0 <= i < n and 0 <= j < j' < n;"
3230 "S2[i,j] -> S1[i',j'] : 0 <= i < i' < n and 0 <= j,j' < n;"
3231 "S2[i,j] -> S2[i,j'] : 0 <= i,j,j' < n and j < j' }",
3234 /* TACO 2013 Fig. 12 */
3235 { "{ S1[i,0] : 0 <= i <= 1; S2[i,j] : 0 <= i <= 1 and 1 <= j <= 2;"
3236 "S3[i,3] : 0 <= i <= 1 }",
3237 "{ S1[i,0] -> S2[i,1] : 0 <= i <= 1;"
3238 "S2[i,1] -> S2[i,2] : 0 <= i <= 1;"
3239 "S2[i,2] -> S3[i,3] : 0 <= i <= 1 }",
3240 "{ [S1[i,0]->t[]] -> [S2[i,1]->t[]] : 0 <= i <= 1;"
3241 "[S2[i,1]->t[]] -> [S2[i,2]->t[]] : 0 <= i <= 1;"
3242 "[S2[i,2]->t[]] -> [S3[i,3]->t[]] : 0 <= i <= 1 }",
3243 "{ [S2[i,1]->t[]] -> [S2[i,2]->t[]] : 0 <= i <= 1;"
3244 "[S2[0,j]->t[]] -> [S2[1,j']->t[]] : 1 <= j,j' <= 2;"
3245 "[S2[0,j]->t[]] -> [S1[1,0]->t[]] : 1 <= j <= 2;"
3246 "[S3[0,3]->t[]] -> [S2[1,j]->t[]] : 1 <= j <= 2;"
3247 "[S3[0,3]->t[]] -> [S1[1,0]->t[]] }",
3252 /* Test schedule construction based on conditional constraints.
3253 * In particular, check the number of members in the outer band node
3254 * as an indication of whether tiling is possible or not.
3256 static int test_conditional_schedule_constraints(isl_ctx *ctx)
3258 int i;
3259 isl_union_set *domain;
3260 isl_union_map *condition;
3261 isl_union_map *flow;
3262 isl_union_map *validity;
3263 isl_schedule_constraints *sc;
3264 isl_schedule *schedule;
3265 isl_schedule_node *node;
3266 int n_member;
3268 if (test_special_conditional_schedule_constraints(ctx) < 0)
3269 return -1;
3271 for (i = 0; i < ARRAY_SIZE(live_range_tests); ++i) {
3272 domain = isl_union_set_read_from_str(ctx,
3273 live_range_tests[i].domain);
3274 flow = isl_union_map_read_from_str(ctx,
3275 live_range_tests[i].flow);
3276 condition = isl_union_map_read_from_str(ctx,
3277 live_range_tests[i].condition);
3278 validity = isl_union_map_read_from_str(ctx,
3279 live_range_tests[i].conditional_validity);
3280 sc = isl_schedule_constraints_on_domain(domain);
3281 sc = isl_schedule_constraints_set_validity(sc,
3282 isl_union_map_copy(flow));
3283 sc = isl_schedule_constraints_set_proximity(sc, flow);
3284 sc = isl_schedule_constraints_set_conditional_validity(sc,
3285 condition, validity);
3286 schedule = isl_schedule_constraints_compute_schedule(sc);
3287 node = isl_schedule_get_root(schedule);
3288 while (node &&
3289 isl_schedule_node_get_type(node) != isl_schedule_node_band)
3290 node = isl_schedule_node_first_child(node);
3291 n_member = isl_schedule_node_band_n_member(node);
3292 isl_schedule_node_free(node);
3293 isl_schedule_free(schedule);
3295 if (!schedule)
3296 return -1;
3297 if (n_member != live_range_tests[i].outer_band_n)
3298 isl_die(ctx, isl_error_unknown,
3299 "unexpected number of members in outer band",
3300 return -1);
3302 return 0;
3305 /* Check that the schedule computed for the given instance set and
3306 * dependence relation strongly satisfies the dependences.
3307 * In particular, check that no instance is scheduled before
3308 * or together with an instance on which it depends.
3309 * Earlier versions of isl would produce a schedule that
3310 * only weakly satisfies the dependences.
3312 static int test_strongly_satisfying_schedule(isl_ctx *ctx)
3314 const char *domain, *dep;
3315 isl_union_map *D, *schedule;
3316 isl_map *map, *ge;
3317 int empty;
3319 domain = "{ B[i0, i1] : 0 <= i0 <= 1 and 0 <= i1 <= 11; "
3320 "A[i0] : 0 <= i0 <= 1 }";
3321 dep = "{ B[i0, i1] -> B[i0, 1 + i1] : 0 <= i0 <= 1 and 0 <= i1 <= 10; "
3322 "B[0, 11] -> A[1]; A[i0] -> B[i0, 0] : 0 <= i0 <= 1 }";
3323 schedule = compute_schedule(ctx, domain, dep, dep);
3324 D = isl_union_map_read_from_str(ctx, dep);
3325 D = isl_union_map_apply_domain(D, isl_union_map_copy(schedule));
3326 D = isl_union_map_apply_range(D, schedule);
3327 map = isl_map_from_union_map(D);
3328 ge = isl_map_lex_ge(isl_space_domain(isl_map_get_space(map)));
3329 map = isl_map_intersect(map, ge);
3330 empty = isl_map_is_empty(map);
3331 isl_map_free(map);
3333 if (empty < 0)
3334 return -1;
3335 if (!empty)
3336 isl_die(ctx, isl_error_unknown,
3337 "dependences not strongly satisfied", return -1);
3339 return 0;
3342 int test_schedule(isl_ctx *ctx)
3344 const char *D, *W, *R, *V, *P, *S;
3346 /* Handle resulting schedule with zero bands. */
3347 if (test_one_schedule(ctx, "{[]}", "{}", "{}", "{[] -> []}", 0, 0) < 0)
3348 return -1;
3350 /* Jacobi */
3351 D = "[T,N] -> { S1[t,i] : 1 <= t <= T and 2 <= i <= N - 1 }";
3352 W = "{ S1[t,i] -> a[t,i] }";
3353 R = "{ S1[t,i] -> a[t-1,i]; S1[t,i] -> a[t-1,i-1]; "
3354 "S1[t,i] -> a[t-1,i+1] }";
3355 S = "{ S1[t,i] -> [t,i] }";
3356 if (test_one_schedule(ctx, D, W, R, S, 2, 0) < 0)
3357 return -1;
3359 /* Fig. 5 of CC2008 */
3360 D = "[N] -> { S_0[i, j] : i >= 0 and i <= -1 + N and j >= 2 and "
3361 "j <= -1 + N }";
3362 W = "[N] -> { S_0[i, j] -> a[i, j] : i >= 0 and i <= -1 + N and "
3363 "j >= 2 and j <= -1 + N }";
3364 R = "[N] -> { S_0[i, j] -> a[j, i] : i >= 0 and i <= -1 + N and "
3365 "j >= 2 and j <= -1 + N; "
3366 "S_0[i, j] -> a[i, -1 + j] : i >= 0 and i <= -1 + N and "
3367 "j >= 2 and j <= -1 + N }";
3368 S = "[N] -> { S_0[i, j] -> [0, i, 0, j, 0] }";
3369 if (test_one_schedule(ctx, D, W, R, S, 2, 0) < 0)
3370 return -1;
3372 D = "{ S1[i] : 0 <= i <= 10; S2[i] : 0 <= i <= 9 }";
3373 W = "{ S1[i] -> a[i] }";
3374 R = "{ S2[i] -> a[i+1] }";
3375 S = "{ S1[i] -> [0,i]; S2[i] -> [1,i] }";
3376 if (test_one_schedule(ctx, D, W, R, S, 1, 1) < 0)
3377 return -1;
3379 D = "{ S1[i] : 0 <= i < 10; S2[i] : 0 <= i < 10 }";
3380 W = "{ S1[i] -> a[i] }";
3381 R = "{ S2[i] -> a[9-i] }";
3382 S = "{ S1[i] -> [0,i]; S2[i] -> [1,i] }";
3383 if (test_one_schedule(ctx, D, W, R, S, 1, 1) < 0)
3384 return -1;
3386 D = "[N] -> { S1[i] : 0 <= i < N; S2[i] : 0 <= i < N }";
3387 W = "{ S1[i] -> a[i] }";
3388 R = "[N] -> { S2[i] -> a[N-1-i] }";
3389 S = "{ S1[i] -> [0,i]; S2[i] -> [1,i] }";
3390 if (test_one_schedule(ctx, D, W, R, S, 1, 1) < 0)
3391 return -1;
3393 D = "{ S1[i] : 0 < i < 10; S2[i] : 0 <= i < 10 }";
3394 W = "{ S1[i] -> a[i]; S2[i] -> b[i] }";
3395 R = "{ S2[i] -> a[i]; S1[i] -> b[i-1] }";
3396 S = "{ S1[i] -> [i,0]; S2[i] -> [i,1] }";
3397 if (test_one_schedule(ctx, D, W, R, S, 0, 0) < 0)
3398 return -1;
3400 D = "[N] -> { S1[i] : 1 <= i <= N; S2[i,j] : 1 <= i,j <= N }";
3401 W = "{ S1[i] -> a[0,i]; S2[i,j] -> a[i,j] }";
3402 R = "{ S2[i,j] -> a[i-1,j] }";
3403 S = "{ S1[i] -> [0,i,0]; S2[i,j] -> [1,i,j] }";
3404 if (test_one_schedule(ctx, D, W, R, S, 2, 1) < 0)
3405 return -1;
3407 D = "[N] -> { S1[i] : 1 <= i <= N; S2[i,j] : 1 <= i,j <= N }";
3408 W = "{ S1[i] -> a[i,0]; S2[i,j] -> a[i,j] }";
3409 R = "{ S2[i,j] -> a[i,j-1] }";
3410 S = "{ S1[i] -> [0,i,0]; S2[i,j] -> [1,i,j] }";
3411 if (test_one_schedule(ctx, D, W, R, S, 2, 1) < 0)
3412 return -1;
3414 D = "[N] -> { S_0[]; S_1[i] : i >= 0 and i <= -1 + N; S_2[] }";
3415 W = "[N] -> { S_0[] -> a[0]; S_2[] -> b[0]; "
3416 "S_1[i] -> a[1 + i] : i >= 0 and i <= -1 + N }";
3417 R = "[N] -> { S_2[] -> a[N]; S_1[i] -> a[i] : i >= 0 and i <= -1 + N }";
3418 S = "[N] -> { S_1[i] -> [1, i, 0]; S_2[] -> [2, 0, 1]; "
3419 "S_0[] -> [0, 0, 0] }";
3420 if (test_one_schedule(ctx, D, W, R, S, 1, 0) < 0)
3421 return -1;
3422 ctx->opt->schedule_parametric = 0;
3423 if (test_one_schedule(ctx, D, W, R, S, 0, 0) < 0)
3424 return -1;
3425 ctx->opt->schedule_parametric = 1;
3427 D = "[N] -> { S1[i] : 1 <= i <= N; S2[i] : 1 <= i <= N; "
3428 "S3[i,j] : 1 <= i,j <= N; S4[i] : 1 <= i <= N }";
3429 W = "{ S1[i] -> a[i,0]; S2[i] -> a[0,i]; S3[i,j] -> a[i,j] }";
3430 R = "[N] -> { S3[i,j] -> a[i-1,j]; S3[i,j] -> a[i,j-1]; "
3431 "S4[i] -> a[i,N] }";
3432 S = "{ S1[i] -> [0,i,0]; S2[i] -> [1,i,0]; S3[i,j] -> [2,i,j]; "
3433 "S4[i] -> [4,i,0] }";
3434 if (test_one_schedule(ctx, D, W, R, S, 2, 0) < 0)
3435 return -1;
3437 D = "[N] -> { S_0[i, j] : i >= 1 and i <= N and j >= 1 and j <= N }";
3438 W = "[N] -> { S_0[i, j] -> s[0] : i >= 1 and i <= N and j >= 1 and "
3439 "j <= N }";
3440 R = "[N] -> { S_0[i, j] -> s[0] : i >= 1 and i <= N and j >= 1 and "
3441 "j <= N; "
3442 "S_0[i, j] -> a[i, j] : i >= 1 and i <= N and j >= 1 and "
3443 "j <= N }";
3444 S = "[N] -> { S_0[i, j] -> [0, i, 0, j, 0] }";
3445 if (test_one_schedule(ctx, D, W, R, S, 0, 0) < 0)
3446 return -1;
3448 D = "[N] -> { S_0[t] : t >= 0 and t <= -1 + N; "
3449 " S_2[t] : t >= 0 and t <= -1 + N; "
3450 " S_1[t, i] : t >= 0 and t <= -1 + N and i >= 0 and "
3451 "i <= -1 + N }";
3452 W = "[N] -> { S_0[t] -> a[t, 0] : t >= 0 and t <= -1 + N; "
3453 " S_2[t] -> b[t] : t >= 0 and t <= -1 + N; "
3454 " S_1[t, i] -> a[t, 1 + i] : t >= 0 and t <= -1 + N and "
3455 "i >= 0 and i <= -1 + N }";
3456 R = "[N] -> { S_1[t, i] -> a[t, i] : t >= 0 and t <= -1 + N and "
3457 "i >= 0 and i <= -1 + N; "
3458 " S_2[t] -> a[t, N] : t >= 0 and t <= -1 + N }";
3459 S = "[N] -> { S_2[t] -> [0, t, 2]; S_1[t, i] -> [0, t, 1, i, 0]; "
3460 " S_0[t] -> [0, t, 0] }";
3462 if (test_one_schedule(ctx, D, W, R, S, 2, 1) < 0)
3463 return -1;
3464 ctx->opt->schedule_parametric = 0;
3465 if (test_one_schedule(ctx, D, W, R, S, 0, 0) < 0)
3466 return -1;
3467 ctx->opt->schedule_parametric = 1;
3469 D = "[N] -> { S1[i,j] : 0 <= i,j < N; S2[i,j] : 0 <= i,j < N }";
3470 S = "{ S1[i,j] -> [0,i,j]; S2[i,j] -> [1,i,j] }";
3471 if (test_one_schedule(ctx, D, "{}", "{}", S, 2, 2) < 0)
3472 return -1;
3474 D = "[M, N] -> { S_1[i] : i >= 0 and i <= -1 + M; "
3475 "S_0[i, j] : i >= 0 and i <= -1 + M and j >= 0 and j <= -1 + N }";
3476 W = "[M, N] -> { S_0[i, j] -> a[j] : i >= 0 and i <= -1 + M and "
3477 "j >= 0 and j <= -1 + N; "
3478 "S_1[i] -> b[0] : i >= 0 and i <= -1 + M }";
3479 R = "[M, N] -> { S_0[i, j] -> a[0] : i >= 0 and i <= -1 + M and "
3480 "j >= 0 and j <= -1 + N; "
3481 "S_1[i] -> b[0] : i >= 0 and i <= -1 + M }";
3482 S = "[M, N] -> { S_1[i] -> [1, i, 0]; S_0[i, j] -> [0, i, 0, j, 0] }";
3483 if (test_one_schedule(ctx, D, W, R, S, 0, 0) < 0)
3484 return -1;
3486 D = "{ S_0[i] : i >= 0 }";
3487 W = "{ S_0[i] -> a[i] : i >= 0 }";
3488 R = "{ S_0[i] -> a[0] : i >= 0 }";
3489 S = "{ S_0[i] -> [0, i, 0] }";
3490 if (test_one_schedule(ctx, D, W, R, S, 0, 0) < 0)
3491 return -1;
3493 D = "{ S_0[i] : i >= 0; S_1[i] : i >= 0 }";
3494 W = "{ S_0[i] -> a[i] : i >= 0; S_1[i] -> b[i] : i >= 0 }";
3495 R = "{ S_0[i] -> b[0] : i >= 0; S_1[i] -> a[i] : i >= 0 }";
3496 S = "{ S_1[i] -> [0, i, 1]; S_0[i] -> [0, i, 0] }";
3497 if (test_one_schedule(ctx, D, W, R, S, 0, 0) < 0)
3498 return -1;
3500 D = "[n] -> { S_0[j, k] : j <= -1 + n and j >= 0 and "
3501 "k <= -1 + n and k >= 0 }";
3502 W = "[n] -> { S_0[j, k] -> B[j] : j <= -1 + n and j >= 0 and " "k <= -1 + n and k >= 0 }";
3503 R = "[n] -> { S_0[j, k] -> B[j] : j <= -1 + n and j >= 0 and "
3504 "k <= -1 + n and k >= 0; "
3505 "S_0[j, k] -> B[k] : j <= -1 + n and j >= 0 and "
3506 "k <= -1 + n and k >= 0; "
3507 "S_0[j, k] -> A[k] : j <= -1 + n and j >= 0 and "
3508 "k <= -1 + n and k >= 0 }";
3509 S = "[n] -> { S_0[j, k] -> [2, j, k] }";
3510 ctx->opt->schedule_outer_coincidence = 1;
3511 if (test_one_schedule(ctx, D, W, R, S, 0, 0) < 0)
3512 return -1;
3513 ctx->opt->schedule_outer_coincidence = 0;
3515 D = "{Stmt_for_body24[i0, i1, i2, i3]:"
3516 "i0 >= 0 and i0 <= 1 and i1 >= 0 and i1 <= 6 and i2 >= 2 and "
3517 "i2 <= 6 - i1 and i3 >= 0 and i3 <= -1 + i2;"
3518 "Stmt_for_body24[i0, i1, 1, 0]:"
3519 "i0 >= 0 and i0 <= 1 and i1 >= 0 and i1 <= 5;"
3520 "Stmt_for_body7[i0, i1, i2]:"
3521 "i0 >= 0 and i0 <= 1 and i1 >= 0 and i1 <= 7 and i2 >= 0 and "
3522 "i2 <= 7 }";
3524 V = "{Stmt_for_body24[0, i1, i2, i3] -> "
3525 "Stmt_for_body24[1, i1, i2, i3]:"
3526 "i3 >= 0 and i3 <= -1 + i2 and i1 >= 0 and i2 <= 6 - i1 and "
3527 "i2 >= 1;"
3528 "Stmt_for_body24[0, i1, i2, i3] -> "
3529 "Stmt_for_body7[1, 1 + i1 + i3, 1 + i1 + i2]:"
3530 "i3 <= -1 + i2 and i2 <= 6 - i1 and i2 >= 1 and i1 >= 0 and "
3531 "i3 >= 0;"
3532 "Stmt_for_body24[0, i1, i2, i3] ->"
3533 "Stmt_for_body7[1, i1, 1 + i1 + i3]:"
3534 "i3 >= 0 and i2 <= 6 - i1 and i1 >= 0 and i3 <= -1 + i2;"
3535 "Stmt_for_body7[0, i1, i2] -> Stmt_for_body7[1, i1, i2]:"
3536 "(i2 >= 1 + i1 and i2 <= 6 and i1 >= 0 and i1 <= 4) or "
3537 "(i2 >= 3 and i2 <= 7 and i1 >= 1 and i2 >= 1 + i1) or "
3538 "(i2 >= 0 and i2 <= i1 and i2 >= -7 + i1 and i1 <= 7);"
3539 "Stmt_for_body7[0, i1, 1 + i1] -> Stmt_for_body7[1, i1, 1 + i1]:"
3540 "i1 <= 6 and i1 >= 0;"
3541 "Stmt_for_body7[0, 0, 7] -> Stmt_for_body7[1, 0, 7];"
3542 "Stmt_for_body7[i0, i1, i2] -> "
3543 "Stmt_for_body24[i0, o1, -1 + i2 - o1, -1 + i1 - o1]:"
3544 "i0 >= 0 and i0 <= 1 and o1 >= 0 and i2 >= 1 + i1 and "
3545 "o1 <= -2 + i2 and i2 <= 7 and o1 <= -1 + i1;"
3546 "Stmt_for_body7[i0, i1, i2] -> "
3547 "Stmt_for_body24[i0, i1, o2, -1 - i1 + i2]:"
3548 "i0 >= 0 and i0 <= 1 and i1 >= 0 and o2 >= -i1 + i2 and "
3549 "o2 >= 1 and o2 <= 6 - i1 and i2 >= 1 + i1 }";
3550 P = V;
3551 S = "{ Stmt_for_body24[i0, i1, i2, i3] -> "
3552 "[i0, 5i0 + i1, 6i0 + i1 + i2, 1 + 6i0 + i1 + i2 + i3, 1];"
3553 "Stmt_for_body7[i0, i1, i2] -> [0, 5i0, 6i0 + i1, 6i0 + i2, 0] }";
3555 if (test_special_schedule(ctx, D, V, P, S) < 0)
3556 return -1;
3558 D = "{ S_0[i, j] : i >= 1 and i <= 10 and j >= 1 and j <= 8 }";
3559 V = "{ S_0[i, j] -> S_0[i, 1 + j] : i >= 1 and i <= 10 and "
3560 "j >= 1 and j <= 7;"
3561 "S_0[i, j] -> S_0[1 + i, j] : i >= 1 and i <= 9 and "
3562 "j >= 1 and j <= 8 }";
3563 P = "{ }";
3564 S = "{ S_0[i, j] -> [i + j, j] }";
3565 ctx->opt->schedule_algorithm = ISL_SCHEDULE_ALGORITHM_FEAUTRIER;
3566 if (test_special_schedule(ctx, D, V, P, S) < 0)
3567 return -1;
3568 ctx->opt->schedule_algorithm = ISL_SCHEDULE_ALGORITHM_ISL;
3570 /* Fig. 1 from Feautrier's "Some Efficient Solutions..." pt. 2, 1992 */
3571 D = "[N] -> { S_0[i, j] : i >= 0 and i <= -1 + N and "
3572 "j >= 0 and j <= -1 + i }";
3573 V = "[N] -> { S_0[i, j] -> S_0[i, 1 + j] : j <= -2 + i and "
3574 "i <= -1 + N and j >= 0;"
3575 "S_0[i, -1 + i] -> S_0[1 + i, 0] : i >= 1 and "
3576 "i <= -2 + N }";
3577 P = "{ }";
3578 S = "{ S_0[i, j] -> [i, j] }";
3579 ctx->opt->schedule_algorithm = ISL_SCHEDULE_ALGORITHM_FEAUTRIER;
3580 if (test_special_schedule(ctx, D, V, P, S) < 0)
3581 return -1;
3582 ctx->opt->schedule_algorithm = ISL_SCHEDULE_ALGORITHM_ISL;
3584 /* Test both algorithms on a case with only proximity dependences. */
3585 D = "{ S[i,j] : 0 <= i <= 10 }";
3586 V = "{ }";
3587 P = "{ S[i,j] -> S[i+1,j] : 0 <= i,j <= 10 }";
3588 S = "{ S[i, j] -> [j, i] }";
3589 ctx->opt->schedule_algorithm = ISL_SCHEDULE_ALGORITHM_FEAUTRIER;
3590 if (test_special_schedule(ctx, D, V, P, S) < 0)
3591 return -1;
3592 ctx->opt->schedule_algorithm = ISL_SCHEDULE_ALGORITHM_ISL;
3593 if (test_special_schedule(ctx, D, V, P, S) < 0)
3594 return -1;
3596 D = "{ A[a]; B[] }";
3597 V = "{}";
3598 P = "{ A[a] -> B[] }";
3599 if (test_has_schedule(ctx, D, V, P) < 0)
3600 return -1;
3602 if (test_padded_schedule(ctx) < 0)
3603 return -1;
3605 /* Check that check for progress is not confused by rational
3606 * solution.
3608 D = "[N] -> { S0[i, j] : i >= 0 and i <= N and j >= 0 and j <= N }";
3609 V = "[N] -> { S0[i0, -1 + N] -> S0[2 + i0, 0] : i0 >= 0 and "
3610 "i0 <= -2 + N; "
3611 "S0[i0, i1] -> S0[i0, 1 + i1] : i0 >= 0 and "
3612 "i0 <= N and i1 >= 0 and i1 <= -1 + N }";
3613 P = "{}";
3614 ctx->opt->schedule_algorithm = ISL_SCHEDULE_ALGORITHM_FEAUTRIER;
3615 if (test_has_schedule(ctx, D, V, P) < 0)
3616 return -1;
3617 ctx->opt->schedule_algorithm = ISL_SCHEDULE_ALGORITHM_ISL;
3619 /* Check that we allow schedule rows that are only non-trivial
3620 * on some full-dimensional domains.
3622 D = "{ S1[j] : 0 <= j <= 1; S0[]; S2[k] : 0 <= k <= 1 }";
3623 V = "{ S0[] -> S1[j] : 0 <= j <= 1; S2[0] -> S0[];"
3624 "S1[j] -> S2[1] : 0 <= j <= 1 }";
3625 P = "{}";
3626 ctx->opt->schedule_algorithm = ISL_SCHEDULE_ALGORITHM_FEAUTRIER;
3627 if (test_has_schedule(ctx, D, V, P) < 0)
3628 return -1;
3629 ctx->opt->schedule_algorithm = ISL_SCHEDULE_ALGORITHM_ISL;
3631 if (test_conditional_schedule_constraints(ctx) < 0)
3632 return -1;
3634 if (test_strongly_satisfying_schedule(ctx) < 0)
3635 return -1;
3637 return 0;
3640 int test_plain_injective(isl_ctx *ctx, const char *str, int injective)
3642 isl_union_map *umap;
3643 int test;
3645 umap = isl_union_map_read_from_str(ctx, str);
3646 test = isl_union_map_plain_is_injective(umap);
3647 isl_union_map_free(umap);
3648 if (test < 0)
3649 return -1;
3650 if (test == injective)
3651 return 0;
3652 if (injective)
3653 isl_die(ctx, isl_error_unknown,
3654 "map not detected as injective", return -1);
3655 else
3656 isl_die(ctx, isl_error_unknown,
3657 "map detected as injective", return -1);
3660 int test_injective(isl_ctx *ctx)
3662 const char *str;
3664 if (test_plain_injective(ctx, "{S[i,j] -> A[0]; T[i,j] -> B[1]}", 0))
3665 return -1;
3666 if (test_plain_injective(ctx, "{S[] -> A[0]; T[] -> B[0]}", 1))
3667 return -1;
3668 if (test_plain_injective(ctx, "{S[] -> A[0]; T[] -> A[1]}", 1))
3669 return -1;
3670 if (test_plain_injective(ctx, "{S[] -> A[0]; T[] -> A[0]}", 0))
3671 return -1;
3672 if (test_plain_injective(ctx, "{S[i] -> A[i,0]; T[i] -> A[i,1]}", 1))
3673 return -1;
3674 if (test_plain_injective(ctx, "{S[i] -> A[i]; T[i] -> A[i]}", 0))
3675 return -1;
3676 if (test_plain_injective(ctx, "{S[] -> A[0,0]; T[] -> A[0,1]}", 1))
3677 return -1;
3678 if (test_plain_injective(ctx, "{S[] -> A[0,0]; T[] -> A[1,0]}", 1))
3679 return -1;
3681 str = "{S[] -> A[0,0]; T[] -> A[0,1]; U[] -> A[1,0]}";
3682 if (test_plain_injective(ctx, str, 1))
3683 return -1;
3684 str = "{S[] -> A[0,0]; T[] -> A[0,1]; U[] -> A[0,0]}";
3685 if (test_plain_injective(ctx, str, 0))
3686 return -1;
3688 return 0;
3691 static int aff_plain_is_equal(__isl_keep isl_aff *aff, const char *str)
3693 isl_aff *aff2;
3694 int equal;
3696 if (!aff)
3697 return -1;
3699 aff2 = isl_aff_read_from_str(isl_aff_get_ctx(aff), str);
3700 equal = isl_aff_plain_is_equal(aff, aff2);
3701 isl_aff_free(aff2);
3703 return equal;
3706 static int aff_check_plain_equal(__isl_keep isl_aff *aff, const char *str)
3708 int equal;
3710 equal = aff_plain_is_equal(aff, str);
3711 if (equal < 0)
3712 return -1;
3713 if (!equal)
3714 isl_die(isl_aff_get_ctx(aff), isl_error_unknown,
3715 "result not as expected", return -1);
3716 return 0;
3719 struct {
3720 __isl_give isl_aff *(*fn)(__isl_take isl_aff *aff1,
3721 __isl_take isl_aff *aff2);
3722 } aff_bin_op[] = {
3723 ['+'] = { &isl_aff_add },
3724 ['-'] = { &isl_aff_sub },
3725 ['*'] = { &isl_aff_mul },
3726 ['/'] = { &isl_aff_div },
3729 struct {
3730 const char *arg1;
3731 unsigned char op;
3732 const char *arg2;
3733 const char *res;
3734 } aff_bin_tests[] = {
3735 { "{ [i] -> [i] }", '+', "{ [i] -> [i] }",
3736 "{ [i] -> [2i] }" },
3737 { "{ [i] -> [i] }", '-', "{ [i] -> [i] }",
3738 "{ [i] -> [0] }" },
3739 { "{ [i] -> [i] }", '*', "{ [i] -> [2] }",
3740 "{ [i] -> [2i] }" },
3741 { "{ [i] -> [2] }", '*', "{ [i] -> [i] }",
3742 "{ [i] -> [2i] }" },
3743 { "{ [i] -> [i] }", '/', "{ [i] -> [2] }",
3744 "{ [i] -> [i/2] }" },
3745 { "{ [i] -> [2i] }", '/', "{ [i] -> [2] }",
3746 "{ [i] -> [i] }" },
3747 { "{ [i] -> [i] }", '+', "{ [i] -> [NaN] }",
3748 "{ [i] -> [NaN] }" },
3749 { "{ [i] -> [i] }", '-', "{ [i] -> [NaN] }",
3750 "{ [i] -> [NaN] }" },
3751 { "{ [i] -> [i] }", '*', "{ [i] -> [NaN] }",
3752 "{ [i] -> [NaN] }" },
3753 { "{ [i] -> [2] }", '*', "{ [i] -> [NaN] }",
3754 "{ [i] -> [NaN] }" },
3755 { "{ [i] -> [i] }", '/', "{ [i] -> [NaN] }",
3756 "{ [i] -> [NaN] }" },
3757 { "{ [i] -> [2] }", '/', "{ [i] -> [NaN] }",
3758 "{ [i] -> [NaN] }" },
3759 { "{ [i] -> [NaN] }", '+', "{ [i] -> [i] }",
3760 "{ [i] -> [NaN] }" },
3761 { "{ [i] -> [NaN] }", '-', "{ [i] -> [i] }",
3762 "{ [i] -> [NaN] }" },
3763 { "{ [i] -> [NaN] }", '*', "{ [i] -> [2] }",
3764 "{ [i] -> [NaN] }" },
3765 { "{ [i] -> [NaN] }", '*', "{ [i] -> [i] }",
3766 "{ [i] -> [NaN] }" },
3767 { "{ [i] -> [NaN] }", '/', "{ [i] -> [2] }",
3768 "{ [i] -> [NaN] }" },
3769 { "{ [i] -> [NaN] }", '/', "{ [i] -> [i] }",
3770 "{ [i] -> [NaN] }" },
3773 /* Perform some basic tests of binary operations on isl_aff objects.
3775 static int test_bin_aff(isl_ctx *ctx)
3777 int i;
3778 isl_aff *aff1, *aff2, *res;
3779 __isl_give isl_aff *(*fn)(__isl_take isl_aff *aff1,
3780 __isl_take isl_aff *aff2);
3781 int ok;
3783 for (i = 0; i < ARRAY_SIZE(aff_bin_tests); ++i) {
3784 aff1 = isl_aff_read_from_str(ctx, aff_bin_tests[i].arg1);
3785 aff2 = isl_aff_read_from_str(ctx, aff_bin_tests[i].arg2);
3786 res = isl_aff_read_from_str(ctx, aff_bin_tests[i].res);
3787 fn = aff_bin_op[aff_bin_tests[i].op].fn;
3788 aff1 = fn(aff1, aff2);
3789 if (isl_aff_is_nan(res))
3790 ok = isl_aff_is_nan(aff1);
3791 else
3792 ok = isl_aff_plain_is_equal(aff1, res);
3793 isl_aff_free(aff1);
3794 isl_aff_free(res);
3795 if (ok < 0)
3796 return -1;
3797 if (!ok)
3798 isl_die(ctx, isl_error_unknown,
3799 "unexpected result", return -1);
3802 return 0;
3805 struct {
3806 __isl_give isl_union_pw_multi_aff *(*fn)(
3807 __isl_take isl_union_pw_multi_aff *upma1,
3808 __isl_take isl_union_pw_multi_aff *upma2);
3809 const char *arg1;
3810 const char *arg2;
3811 const char *res;
3812 } upma_bin_tests[] = {
3813 { &isl_union_pw_multi_aff_add, "{ A[] -> [0]; B[0] -> [1] }",
3814 "{ B[x] -> [2] : x >= 0 }", "{ B[0] -> [3] }" },
3815 { &isl_union_pw_multi_aff_union_add, "{ A[] -> [0]; B[0] -> [1] }",
3816 "{ B[x] -> [2] : x >= 0 }",
3817 "{ A[] -> [0]; B[0] -> [3]; B[x] -> [2] : x >= 1 }" },
3820 /* Perform some basic tests of binary operations on
3821 * isl_union_pw_multi_aff objects.
3823 static int test_bin_upma(isl_ctx *ctx)
3825 int i;
3826 isl_union_pw_multi_aff *upma1, *upma2, *res;
3827 int ok;
3829 for (i = 0; i < ARRAY_SIZE(upma_bin_tests); ++i) {
3830 upma1 = isl_union_pw_multi_aff_read_from_str(ctx,
3831 upma_bin_tests[i].arg1);
3832 upma2 = isl_union_pw_multi_aff_read_from_str(ctx,
3833 upma_bin_tests[i].arg2);
3834 res = isl_union_pw_multi_aff_read_from_str(ctx,
3835 upma_bin_tests[i].res);
3836 upma1 = upma_bin_tests[i].fn(upma1, upma2);
3837 ok = isl_union_pw_multi_aff_plain_is_equal(upma1, res);
3838 isl_union_pw_multi_aff_free(upma1);
3839 isl_union_pw_multi_aff_free(res);
3840 if (ok < 0)
3841 return -1;
3842 if (!ok)
3843 isl_die(ctx, isl_error_unknown,
3844 "unexpected result", return -1);
3847 return 0;
3850 int test_aff(isl_ctx *ctx)
3852 const char *str;
3853 isl_set *set;
3854 isl_space *space;
3855 isl_local_space *ls;
3856 isl_aff *aff;
3857 int zero, equal;
3859 if (test_bin_aff(ctx) < 0)
3860 return -1;
3861 if (test_bin_upma(ctx) < 0)
3862 return -1;
3864 space = isl_space_set_alloc(ctx, 0, 1);
3865 ls = isl_local_space_from_space(space);
3866 aff = isl_aff_zero_on_domain(ls);
3868 aff = isl_aff_add_coefficient_si(aff, isl_dim_in, 0, 1);
3869 aff = isl_aff_scale_down_ui(aff, 3);
3870 aff = isl_aff_floor(aff);
3871 aff = isl_aff_add_coefficient_si(aff, isl_dim_in, 0, 1);
3872 aff = isl_aff_scale_down_ui(aff, 2);
3873 aff = isl_aff_floor(aff);
3874 aff = isl_aff_add_coefficient_si(aff, isl_dim_in, 0, 1);
3876 str = "{ [10] }";
3877 set = isl_set_read_from_str(ctx, str);
3878 aff = isl_aff_gist(aff, set);
3880 aff = isl_aff_add_constant_si(aff, -16);
3881 zero = isl_aff_plain_is_zero(aff);
3882 isl_aff_free(aff);
3884 if (zero < 0)
3885 return -1;
3886 if (!zero)
3887 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
3889 aff = isl_aff_read_from_str(ctx, "{ [-1] }");
3890 aff = isl_aff_scale_down_ui(aff, 64);
3891 aff = isl_aff_floor(aff);
3892 equal = aff_check_plain_equal(aff, "{ [-1] }");
3893 isl_aff_free(aff);
3894 if (equal < 0)
3895 return -1;
3897 return 0;
3900 int test_dim_max(isl_ctx *ctx)
3902 int equal;
3903 const char *str;
3904 isl_set *set1, *set2;
3905 isl_set *set;
3906 isl_map *map;
3907 isl_pw_aff *pwaff;
3909 str = "[N] -> { [i] : 0 <= i <= min(N,10) }";
3910 set = isl_set_read_from_str(ctx, str);
3911 pwaff = isl_set_dim_max(set, 0);
3912 set1 = isl_set_from_pw_aff(pwaff);
3913 str = "[N] -> { [10] : N >= 10; [N] : N <= 9 and N >= 0 }";
3914 set2 = isl_set_read_from_str(ctx, str);
3915 equal = isl_set_is_equal(set1, set2);
3916 isl_set_free(set1);
3917 isl_set_free(set2);
3918 if (equal < 0)
3919 return -1;
3920 if (!equal)
3921 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
3923 str = "[N] -> { [i] : 0 <= i <= max(2N,N+6) }";
3924 set = isl_set_read_from_str(ctx, str);
3925 pwaff = isl_set_dim_max(set, 0);
3926 set1 = isl_set_from_pw_aff(pwaff);
3927 str = "[N] -> { [6 + N] : -6 <= N <= 5; [2N] : N >= 6 }";
3928 set2 = isl_set_read_from_str(ctx, str);
3929 equal = isl_set_is_equal(set1, set2);
3930 isl_set_free(set1);
3931 isl_set_free(set2);
3932 if (equal < 0)
3933 return -1;
3934 if (!equal)
3935 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
3937 str = "[N] -> { [i] : 0 <= i <= 2N or 0 <= i <= N+6 }";
3938 set = isl_set_read_from_str(ctx, str);
3939 pwaff = isl_set_dim_max(set, 0);
3940 set1 = isl_set_from_pw_aff(pwaff);
3941 str = "[N] -> { [6 + N] : -6 <= N <= 5; [2N] : N >= 6 }";
3942 set2 = isl_set_read_from_str(ctx, str);
3943 equal = isl_set_is_equal(set1, set2);
3944 isl_set_free(set1);
3945 isl_set_free(set2);
3946 if (equal < 0)
3947 return -1;
3948 if (!equal)
3949 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
3951 str = "[N,M] -> { [i,j] -> [([i/16]), i%16, ([j/16]), j%16] : "
3952 "0 <= i < N and 0 <= j < M }";
3953 map = isl_map_read_from_str(ctx, str);
3954 set = isl_map_range(map);
3956 pwaff = isl_set_dim_max(isl_set_copy(set), 0);
3957 set1 = isl_set_from_pw_aff(pwaff);
3958 str = "[N,M] -> { [([(N-1)/16])] : M,N > 0 }";
3959 set2 = isl_set_read_from_str(ctx, str);
3960 equal = isl_set_is_equal(set1, set2);
3961 isl_set_free(set1);
3962 isl_set_free(set2);
3964 pwaff = isl_set_dim_max(isl_set_copy(set), 3);
3965 set1 = isl_set_from_pw_aff(pwaff);
3966 str = "[N,M] -> { [t] : t = min(M-1,15) and M,N > 0 }";
3967 set2 = isl_set_read_from_str(ctx, str);
3968 if (equal >= 0 && equal)
3969 equal = isl_set_is_equal(set1, set2);
3970 isl_set_free(set1);
3971 isl_set_free(set2);
3973 isl_set_free(set);
3975 if (equal < 0)
3976 return -1;
3977 if (!equal)
3978 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
3980 /* Check that solutions are properly merged. */
3981 str = "[n] -> { [a, b, c] : c >= -4a - 2b and "
3982 "c <= -1 + n - 4a - 2b and c >= -2b and "
3983 "4a >= -4 + n and c >= 0 }";
3984 set = isl_set_read_from_str(ctx, str);
3985 pwaff = isl_set_dim_min(set, 2);
3986 set1 = isl_set_from_pw_aff(pwaff);
3987 str = "[n] -> { [(0)] : n >= 1 }";
3988 set2 = isl_set_read_from_str(ctx, str);
3989 equal = isl_set_is_equal(set1, set2);
3990 isl_set_free(set1);
3991 isl_set_free(set2);
3993 if (equal < 0)
3994 return -1;
3995 if (!equal)
3996 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
3998 /* Check that empty solution lie in the right space. */
3999 str = "[n] -> { [t,a] : 1 = 0 }";
4000 set = isl_set_read_from_str(ctx, str);
4001 pwaff = isl_set_dim_max(set, 0);
4002 set1 = isl_set_from_pw_aff(pwaff);
4003 str = "[n] -> { [t] : 1 = 0 }";
4004 set2 = isl_set_read_from_str(ctx, str);
4005 equal = isl_set_is_equal(set1, set2);
4006 isl_set_free(set1);
4007 isl_set_free(set2);
4009 if (equal < 0)
4010 return -1;
4011 if (!equal)
4012 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
4014 return 0;
4017 /* Is "pma" obviously equal to the isl_pw_multi_aff represented by "str"?
4019 static int pw_multi_aff_plain_is_equal(__isl_keep isl_pw_multi_aff *pma,
4020 const char *str)
4022 isl_ctx *ctx;
4023 isl_pw_multi_aff *pma2;
4024 int equal;
4026 if (!pma)
4027 return -1;
4029 ctx = isl_pw_multi_aff_get_ctx(pma);
4030 pma2 = isl_pw_multi_aff_read_from_str(ctx, str);
4031 equal = isl_pw_multi_aff_plain_is_equal(pma, pma2);
4032 isl_pw_multi_aff_free(pma2);
4034 return equal;
4037 /* Check that "pma" is obviously equal to the isl_pw_multi_aff
4038 * represented by "str".
4040 static int pw_multi_aff_check_plain_equal(__isl_keep isl_pw_multi_aff *pma,
4041 const char *str)
4043 int equal;
4045 equal = pw_multi_aff_plain_is_equal(pma, str);
4046 if (equal < 0)
4047 return -1;
4048 if (!equal)
4049 isl_die(isl_pw_multi_aff_get_ctx(pma), isl_error_unknown,
4050 "result not as expected", return -1);
4051 return 0;
4054 /* Basic test for isl_pw_multi_aff_product.
4056 * Check that multiple pieces are properly handled.
4058 static int test_product_pma(isl_ctx *ctx)
4060 int equal;
4061 const char *str;
4062 isl_pw_multi_aff *pma1, *pma2;
4064 str = "{ A[i] -> B[1] : i < 0; A[i] -> B[2] : i >= 0 }";
4065 pma1 = isl_pw_multi_aff_read_from_str(ctx, str);
4066 str = "{ C[] -> D[] }";
4067 pma2 = isl_pw_multi_aff_read_from_str(ctx, str);
4068 pma1 = isl_pw_multi_aff_product(pma1, pma2);
4069 str = "{ [A[i] -> C[]] -> [B[(1)] -> D[]] : i < 0;"
4070 "[A[i] -> C[]] -> [B[(2)] -> D[]] : i >= 0 }";
4071 equal = pw_multi_aff_check_plain_equal(pma1, str);
4072 isl_pw_multi_aff_free(pma1);
4073 if (equal < 0)
4074 return -1;
4076 return 0;
4079 int test_product(isl_ctx *ctx)
4081 const char *str;
4082 isl_set *set;
4083 isl_union_set *uset1, *uset2;
4084 int ok;
4086 str = "{ A[i] }";
4087 set = isl_set_read_from_str(ctx, str);
4088 set = isl_set_product(set, isl_set_copy(set));
4089 ok = isl_set_is_wrapping(set);
4090 isl_set_free(set);
4091 if (ok < 0)
4092 return -1;
4093 if (!ok)
4094 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
4096 str = "{ [] }";
4097 uset1 = isl_union_set_read_from_str(ctx, str);
4098 uset1 = isl_union_set_product(uset1, isl_union_set_copy(uset1));
4099 str = "{ [[] -> []] }";
4100 uset2 = isl_union_set_read_from_str(ctx, str);
4101 ok = isl_union_set_is_equal(uset1, uset2);
4102 isl_union_set_free(uset1);
4103 isl_union_set_free(uset2);
4104 if (ok < 0)
4105 return -1;
4106 if (!ok)
4107 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
4109 if (test_product_pma(ctx) < 0)
4110 return -1;
4112 return 0;
4115 /* Check that two sets are not considered disjoint just because
4116 * they have a different set of (named) parameters.
4118 static int test_disjoint(isl_ctx *ctx)
4120 const char *str;
4121 isl_set *set, *set2;
4122 int disjoint;
4124 str = "[n] -> { [[]->[]] }";
4125 set = isl_set_read_from_str(ctx, str);
4126 str = "{ [[]->[]] }";
4127 set2 = isl_set_read_from_str(ctx, str);
4128 disjoint = isl_set_is_disjoint(set, set2);
4129 isl_set_free(set);
4130 isl_set_free(set2);
4131 if (disjoint < 0)
4132 return -1;
4133 if (disjoint)
4134 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
4136 return 0;
4139 int test_equal(isl_ctx *ctx)
4141 const char *str;
4142 isl_set *set, *set2;
4143 int equal;
4145 str = "{ S_6[i] }";
4146 set = isl_set_read_from_str(ctx, str);
4147 str = "{ S_7[i] }";
4148 set2 = isl_set_read_from_str(ctx, str);
4149 equal = isl_set_is_equal(set, set2);
4150 isl_set_free(set);
4151 isl_set_free(set2);
4152 if (equal < 0)
4153 return -1;
4154 if (equal)
4155 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
4157 return 0;
4160 static int test_plain_fixed(isl_ctx *ctx, __isl_take isl_map *map,
4161 enum isl_dim_type type, unsigned pos, int fixed)
4163 int test;
4165 test = isl_map_plain_is_fixed(map, type, pos, NULL);
4166 isl_map_free(map);
4167 if (test < 0)
4168 return -1;
4169 if (test == fixed)
4170 return 0;
4171 if (fixed)
4172 isl_die(ctx, isl_error_unknown,
4173 "map not detected as fixed", return -1);
4174 else
4175 isl_die(ctx, isl_error_unknown,
4176 "map detected as fixed", return -1);
4179 int test_fixed(isl_ctx *ctx)
4181 const char *str;
4182 isl_map *map;
4184 str = "{ [i] -> [i] }";
4185 map = isl_map_read_from_str(ctx, str);
4186 if (test_plain_fixed(ctx, map, isl_dim_out, 0, 0))
4187 return -1;
4188 str = "{ [i] -> [1] }";
4189 map = isl_map_read_from_str(ctx, str);
4190 if (test_plain_fixed(ctx, map, isl_dim_out, 0, 1))
4191 return -1;
4192 str = "{ S_1[p1] -> [o0] : o0 = -2 and p1 >= 1 and p1 <= 7 }";
4193 map = isl_map_read_from_str(ctx, str);
4194 if (test_plain_fixed(ctx, map, isl_dim_out, 0, 1))
4195 return -1;
4196 map = isl_map_read_from_str(ctx, str);
4197 map = isl_map_neg(map);
4198 if (test_plain_fixed(ctx, map, isl_dim_out, 0, 1))
4199 return -1;
4201 return 0;
4204 struct isl_vertices_test_data {
4205 const char *set;
4206 int n;
4207 const char *vertex[2];
4208 } vertices_tests[] = {
4209 { "{ A[t, i] : t = 12 and i >= 4 and i <= 12 }",
4210 2, { "{ A[12, 4] }", "{ A[12, 12] }" } },
4211 { "{ A[t, i] : t = 14 and i = 1 }",
4212 1, { "{ A[14, 1] }" } },
4215 /* Check that "vertex" corresponds to one of the vertices in data->vertex.
4217 static int find_vertex(__isl_take isl_vertex *vertex, void *user)
4219 struct isl_vertices_test_data *data = user;
4220 isl_ctx *ctx;
4221 isl_multi_aff *ma;
4222 isl_basic_set *bset;
4223 isl_pw_multi_aff *pma;
4224 int i;
4225 int equal;
4227 ctx = isl_vertex_get_ctx(vertex);
4228 bset = isl_vertex_get_domain(vertex);
4229 ma = isl_vertex_get_expr(vertex);
4230 pma = isl_pw_multi_aff_alloc(isl_set_from_basic_set(bset), ma);
4232 for (i = 0; i < data->n; ++i) {
4233 isl_pw_multi_aff *pma_i;
4235 pma_i = isl_pw_multi_aff_read_from_str(ctx, data->vertex[i]);
4236 equal = isl_pw_multi_aff_plain_is_equal(pma, pma_i);
4237 isl_pw_multi_aff_free(pma_i);
4239 if (equal < 0 || equal)
4240 break;
4243 isl_pw_multi_aff_free(pma);
4244 isl_vertex_free(vertex);
4246 if (equal < 0)
4247 return -1;
4249 return equal ? 0 : - 1;
4252 int test_vertices(isl_ctx *ctx)
4254 int i;
4256 for (i = 0; i < ARRAY_SIZE(vertices_tests); ++i) {
4257 isl_basic_set *bset;
4258 isl_vertices *vertices;
4259 int ok = 1;
4260 int n;
4262 bset = isl_basic_set_read_from_str(ctx, vertices_tests[i].set);
4263 vertices = isl_basic_set_compute_vertices(bset);
4264 n = isl_vertices_get_n_vertices(vertices);
4265 if (vertices_tests[i].n != n)
4266 ok = 0;
4267 if (isl_vertices_foreach_vertex(vertices, &find_vertex,
4268 &vertices_tests[i]) < 0)
4269 ok = 0;
4270 isl_vertices_free(vertices);
4271 isl_basic_set_free(bset);
4273 if (!vertices)
4274 return -1;
4275 if (!ok)
4276 isl_die(ctx, isl_error_unknown, "unexpected vertices",
4277 return -1);
4280 return 0;
4283 int test_union_pw(isl_ctx *ctx)
4285 int equal;
4286 const char *str;
4287 isl_union_set *uset;
4288 isl_union_pw_qpolynomial *upwqp1, *upwqp2;
4290 str = "{ [x] -> x^2 }";
4291 upwqp1 = isl_union_pw_qpolynomial_read_from_str(ctx, str);
4292 upwqp2 = isl_union_pw_qpolynomial_copy(upwqp1);
4293 uset = isl_union_pw_qpolynomial_domain(upwqp1);
4294 upwqp1 = isl_union_pw_qpolynomial_copy(upwqp2);
4295 upwqp1 = isl_union_pw_qpolynomial_intersect_domain(upwqp1, uset);
4296 equal = isl_union_pw_qpolynomial_plain_is_equal(upwqp1, upwqp2);
4297 isl_union_pw_qpolynomial_free(upwqp1);
4298 isl_union_pw_qpolynomial_free(upwqp2);
4299 if (equal < 0)
4300 return -1;
4301 if (!equal)
4302 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
4304 return 0;
4307 int test_output(isl_ctx *ctx)
4309 char *s;
4310 const char *str;
4311 isl_pw_aff *pa;
4312 isl_printer *p;
4313 int equal;
4315 str = "[x] -> { [1] : x % 4 <= 2; [2] : x = 3 }";
4316 pa = isl_pw_aff_read_from_str(ctx, str);
4318 p = isl_printer_to_str(ctx);
4319 p = isl_printer_set_output_format(p, ISL_FORMAT_C);
4320 p = isl_printer_print_pw_aff(p, pa);
4321 s = isl_printer_get_str(p);
4322 isl_printer_free(p);
4323 isl_pw_aff_free(pa);
4324 if (!s)
4325 equal = -1;
4326 else
4327 equal = !strcmp(s, "4 * floord(x, 4) + 2 >= x ? 1 : 2");
4328 free(s);
4329 if (equal < 0)
4330 return -1;
4331 if (!equal)
4332 isl_die(ctx, isl_error_unknown, "unexpected result", return -1);
4334 return 0;
4337 int test_sample(isl_ctx *ctx)
4339 const char *str;
4340 isl_basic_set *bset1, *bset2;
4341 int empty, subset;
4343 str = "{ [a, b, c, d, e, f, g, h, i, j, k] : "
4344 "3i >= 1073741823b - c - 1073741823e + f and c >= 0 and "
4345 "3i >= -1 + 3221225466b + c + d - 3221225466e - f and "
4346 "2e >= a - b and 3e <= 2a and 3k <= -a and f <= -1 + a and "
4347 "3i <= 4 - a + 4b + 2c - e - 2f and 3k <= -a + c - f and "
4348 "3h >= -2 + a and 3g >= -3 - a and 3k >= -2 - a and "
4349 "3i >= -2 - a - 2c + 3e + 2f and 3h <= a + c - f and "
4350 "3h >= a + 2147483646b + 2c - 2147483646e - 2f and "
4351 "3g <= -1 - a and 3i <= 1 + c + d - f and a <= 1073741823 and "
4352 "f >= 1 - a + 1073741822b + c + d - 1073741822e and "
4353 "3i >= 1 + 2b - 2c + e + 2f + 3g and "
4354 "1073741822f <= 1073741822 - a + 1073741821b + 1073741822c +"
4355 "d - 1073741821e and "
4356 "3j <= 3 - a + 3b and 3g <= -2 - 2b + c + d - e - f and "
4357 "3j >= 1 - a + b + 2e and "
4358 "3f >= -3 + a + 3221225462b + 3c + d - 3221225465e and "
4359 "3i <= 4 - a + 4b - e and "
4360 "f <= 1073741822 + 1073741822b - 1073741822e and 3h <= a and "
4361 "f >= 0 and 2e <= 4 - a + 5b - d and 2e <= a - b + d and "
4362 "c <= -1 + a and 3i >= -2 - a + 3e and "
4363 "1073741822e <= 1073741823 - a + 1073741822b + c and "
4364 "3g >= -4 + 3221225464b + 3c + d - 3221225467e - 3f and "
4365 "3i >= -1 + 3221225466b + 3c + d - 3221225466e - 3f and "
4366 "1073741823e >= 1 + 1073741823b - d and "
4367 "3i >= 1073741823b + c - 1073741823e - f and "
4368 "3i >= 1 + 2b + e + 3g }";
4369 bset1 = isl_basic_set_read_from_str(ctx, str);
4370 bset2 = isl_basic_set_sample(isl_basic_set_copy(bset1));
4371 empty = isl_basic_set_is_empty(bset2);
4372 subset = isl_basic_set_is_subset(bset2, bset1);
4373 isl_basic_set_free(bset1);
4374 isl_basic_set_free(bset2);
4375 if (empty < 0 || subset < 0)
4376 return -1;
4377 if (empty)
4378 isl_die(ctx, isl_error_unknown, "point not found", return -1);
4379 if (!subset)
4380 isl_die(ctx, isl_error_unknown, "bad point found", return -1);
4382 return 0;
4385 int test_fixed_power(isl_ctx *ctx)
4387 const char *str;
4388 isl_map *map;
4389 isl_int exp;
4390 int equal;
4392 isl_int_init(exp);
4393 str = "{ [i] -> [i + 1] }";
4394 map = isl_map_read_from_str(ctx, str);
4395 isl_int_set_si(exp, 23);
4396 map = isl_map_fixed_power(map, exp);
4397 equal = map_check_equal(map, "{ [i] -> [i + 23] }");
4398 isl_int_clear(exp);
4399 isl_map_free(map);
4400 if (equal < 0)
4401 return -1;
4403 return 0;
4406 int test_slice(isl_ctx *ctx)
4408 const char *str;
4409 isl_map *map;
4410 int equal;
4412 str = "{ [i] -> [j] }";
4413 map = isl_map_read_from_str(ctx, str);
4414 map = isl_map_equate(map, isl_dim_in, 0, isl_dim_out, 0);
4415 equal = map_check_equal(map, "{ [i] -> [i] }");
4416 isl_map_free(map);
4417 if (equal < 0)
4418 return -1;
4420 str = "{ [i] -> [j] }";
4421 map = isl_map_read_from_str(ctx, str);
4422 map = isl_map_equate(map, isl_dim_in, 0, isl_dim_in, 0);
4423 equal = map_check_equal(map, "{ [i] -> [j] }");
4424 isl_map_free(map);
4425 if (equal < 0)
4426 return -1;
4428 str = "{ [i] -> [j] }";
4429 map = isl_map_read_from_str(ctx, str);
4430 map = isl_map_oppose(map, isl_dim_in, 0, isl_dim_out, 0);
4431 equal = map_check_equal(map, "{ [i] -> [-i] }");
4432 isl_map_free(map);
4433 if (equal < 0)
4434 return -1;
4436 str = "{ [i] -> [j] }";
4437 map = isl_map_read_from_str(ctx, str);
4438 map = isl_map_oppose(map, isl_dim_in, 0, isl_dim_in, 0);
4439 equal = map_check_equal(map, "{ [0] -> [j] }");
4440 isl_map_free(map);
4441 if (equal < 0)
4442 return -1;
4444 str = "{ [i] -> [j] }";
4445 map = isl_map_read_from_str(ctx, str);
4446 map = isl_map_order_gt(map, isl_dim_in, 0, isl_dim_out, 0);
4447 equal = map_check_equal(map, "{ [i] -> [j] : i > j }");
4448 isl_map_free(map);
4449 if (equal < 0)
4450 return -1;
4452 str = "{ [i] -> [j] }";
4453 map = isl_map_read_from_str(ctx, str);
4454 map = isl_map_order_gt(map, isl_dim_in, 0, isl_dim_in, 0);
4455 equal = map_check_equal(map, "{ [i] -> [j] : false }");
4456 isl_map_free(map);
4457 if (equal < 0)
4458 return -1;
4460 return 0;
4463 int test_eliminate(isl_ctx *ctx)
4465 const char *str;
4466 isl_map *map;
4467 int equal;
4469 str = "{ [i] -> [j] : i = 2j }";
4470 map = isl_map_read_from_str(ctx, str);
4471 map = isl_map_eliminate(map, isl_dim_out, 0, 1);
4472 equal = map_check_equal(map, "{ [i] -> [j] : exists a : i = 2a }");
4473 isl_map_free(map);
4474 if (equal < 0)
4475 return -1;
4477 return 0;
4480 /* Check that isl_set_dim_residue_class detects that the values of j
4481 * in the set below are all odd and that it does not detect any spurious
4482 * strides.
4484 static int test_residue_class(isl_ctx *ctx)
4486 const char *str;
4487 isl_set *set;
4488 isl_int m, r;
4489 int res;
4491 str = "{ [i,j] : j = 4 i + 1 and 0 <= i <= 100; "
4492 "[i,j] : j = 4 i + 3 and 500 <= i <= 600 }";
4493 set = isl_set_read_from_str(ctx, str);
4494 isl_int_init(m);
4495 isl_int_init(r);
4496 res = isl_set_dim_residue_class(set, 1, &m, &r);
4497 if (res >= 0 &&
4498 (isl_int_cmp_si(m, 2) != 0 || isl_int_cmp_si(r, 1) != 0))
4499 isl_die(ctx, isl_error_unknown, "incorrect residue class",
4500 res = -1);
4501 isl_int_clear(r);
4502 isl_int_clear(m);
4503 isl_set_free(set);
4505 return res;
4508 int test_align_parameters(isl_ctx *ctx)
4510 const char *str;
4511 isl_space *space;
4512 isl_multi_aff *ma1, *ma2;
4513 int equal;
4515 str = "{ A[B[] -> C[]] -> D[E[] -> F[]] }";
4516 ma1 = isl_multi_aff_read_from_str(ctx, str);
4518 space = isl_space_params_alloc(ctx, 1);
4519 space = isl_space_set_dim_name(space, isl_dim_param, 0, "N");
4520 ma1 = isl_multi_aff_align_params(ma1, space);
4522 str = "[N] -> { A[B[] -> C[]] -> D[E[] -> F[]] }";
4523 ma2 = isl_multi_aff_read_from_str(ctx, str);
4525 equal = isl_multi_aff_plain_is_equal(ma1, ma2);
4527 isl_multi_aff_free(ma1);
4528 isl_multi_aff_free(ma2);
4530 if (equal < 0)
4531 return -1;
4532 if (!equal)
4533 isl_die(ctx, isl_error_unknown,
4534 "result not as expected", return -1);
4536 return 0;
4539 static int test_list(isl_ctx *ctx)
4541 isl_id *a, *b, *c, *d, *id;
4542 isl_id_list *list;
4543 int ok;
4545 a = isl_id_alloc(ctx, "a", NULL);
4546 b = isl_id_alloc(ctx, "b", NULL);
4547 c = isl_id_alloc(ctx, "c", NULL);
4548 d = isl_id_alloc(ctx, "d", NULL);
4550 list = isl_id_list_alloc(ctx, 4);
4551 list = isl_id_list_add(list, a);
4552 list = isl_id_list_add(list, b);
4553 list = isl_id_list_add(list, c);
4554 list = isl_id_list_add(list, d);
4555 list = isl_id_list_drop(list, 1, 1);
4557 if (isl_id_list_n_id(list) != 3) {
4558 isl_id_list_free(list);
4559 isl_die(ctx, isl_error_unknown,
4560 "unexpected number of elements in list", return -1);
4563 id = isl_id_list_get_id(list, 0);
4564 ok = id == a;
4565 isl_id_free(id);
4566 id = isl_id_list_get_id(list, 1);
4567 ok = ok && id == c;
4568 isl_id_free(id);
4569 id = isl_id_list_get_id(list, 2);
4570 ok = ok && id == d;
4571 isl_id_free(id);
4573 isl_id_list_free(list);
4575 if (!ok)
4576 isl_die(ctx, isl_error_unknown,
4577 "unexpected elements in list", return -1);
4579 return 0;
4582 const char *set_conversion_tests[] = {
4583 "[N] -> { [i] : N - 1 <= 2 i <= N }",
4584 "[N] -> { [i] : exists a : i = 4 a and N - 1 <= i <= N }",
4585 "[N] -> { [i,j] : exists a : i = 4 a and N - 1 <= i, 2j <= N }",
4586 "[N] -> { [[i]->[j]] : exists a : i = 4 a and N - 1 <= i, 2j <= N }",
4587 "[N] -> { [3*floor(N/2) + 5*floor(N/3)] }",
4590 /* Check that converting from isl_set to isl_pw_multi_aff and back
4591 * to isl_set produces the original isl_set.
4593 static int test_set_conversion(isl_ctx *ctx)
4595 int i;
4596 const char *str;
4597 isl_set *set1, *set2;
4598 isl_pw_multi_aff *pma;
4599 int equal;
4601 for (i = 0; i < ARRAY_SIZE(set_conversion_tests); ++i) {
4602 str = set_conversion_tests[i];
4603 set1 = isl_set_read_from_str(ctx, str);
4604 pma = isl_pw_multi_aff_from_set(isl_set_copy(set1));
4605 set2 = isl_set_from_pw_multi_aff(pma);
4606 equal = isl_set_is_equal(set1, set2);
4607 isl_set_free(set1);
4608 isl_set_free(set2);
4610 if (equal < 0)
4611 return -1;
4612 if (!equal)
4613 isl_die(ctx, isl_error_unknown, "bad conversion",
4614 return -1);
4617 return 0;
4620 /* Check that converting from isl_map to isl_pw_multi_aff and back
4621 * to isl_map produces the original isl_map.
4623 static int test_map_conversion(isl_ctx *ctx)
4625 const char *str;
4626 isl_map *map1, *map2;
4627 isl_pw_multi_aff *pma;
4628 int equal;
4630 str = "{ [a, b, c, d] -> s0[a, b, e, f] : "
4631 "exists (e0 = [(a - 2c)/3], e1 = [(-4 + b - 5d)/9], "
4632 "e2 = [(-d + f)/9]: 3e0 = a - 2c and 9e1 = -4 + b - 5d and "
4633 "9e2 = -d + f and f >= 0 and f <= 8 and 9e >= -5 - 2a and "
4634 "9e <= -2 - 2a) }";
4635 map1 = isl_map_read_from_str(ctx, str);
4636 pma = isl_pw_multi_aff_from_map(isl_map_copy(map1));
4637 map2 = isl_map_from_pw_multi_aff(pma);
4638 equal = isl_map_is_equal(map1, map2);
4639 isl_map_free(map1);
4640 isl_map_free(map2);
4642 if (equal < 0)
4643 return -1;
4644 if (!equal)
4645 isl_die(ctx, isl_error_unknown, "bad conversion", return -1);
4647 return 0;
4650 static int test_conversion(isl_ctx *ctx)
4652 if (test_set_conversion(ctx) < 0)
4653 return -1;
4654 if (test_map_conversion(ctx) < 0)
4655 return -1;
4656 return 0;
4659 /* Check that isl_basic_map_curry does not modify input.
4661 static int test_curry(isl_ctx *ctx)
4663 const char *str;
4664 isl_basic_map *bmap1, *bmap2;
4665 int equal;
4667 str = "{ [A[] -> B[]] -> C[] }";
4668 bmap1 = isl_basic_map_read_from_str(ctx, str);
4669 bmap2 = isl_basic_map_curry(isl_basic_map_copy(bmap1));
4670 equal = isl_basic_map_is_equal(bmap1, bmap2);
4671 isl_basic_map_free(bmap1);
4672 isl_basic_map_free(bmap2);
4674 if (equal < 0)
4675 return -1;
4676 if (equal)
4677 isl_die(ctx, isl_error_unknown,
4678 "curried map should not be equal to original",
4679 return -1);
4681 return 0;
4684 struct {
4685 const char *set;
4686 const char *ma;
4687 const char *res;
4688 } preimage_tests[] = {
4689 { "{ B[i,j] : 0 <= i < 10 and 0 <= j < 100 }",
4690 "{ A[j,i] -> B[i,j] }",
4691 "{ A[j,i] : 0 <= i < 10 and 0 <= j < 100 }" },
4692 { "{ rat: B[i,j] : 0 <= i, j and 3 i + 5 j <= 100 }",
4693 "{ A[a,b] -> B[a/2,b/6] }",
4694 "{ rat: A[a,b] : 0 <= a, b and 9 a + 5 b <= 600 }" },
4695 { "{ B[i,j] : 0 <= i, j and 3 i + 5 j <= 100 }",
4696 "{ A[a,b] -> B[a/2,b/6] }",
4697 "{ A[a,b] : 0 <= a, b and 9 a + 5 b <= 600 and "
4698 "exists i,j : a = 2 i and b = 6 j }" },
4699 { "[n] -> { S[i] : 0 <= i <= 100 }", "[n] -> { S[n] }",
4700 "[n] -> { : 0 <= n <= 100 }" },
4701 { "{ B[i] : 0 <= i < 100 and exists a : i = 4 a }",
4702 "{ A[a] -> B[2a] }",
4703 "{ A[a] : 0 <= a < 50 and exists b : a = 2 b }" },
4704 { "{ B[i] : 0 <= i < 100 and exists a : i = 4 a }",
4705 "{ A[a] -> B[([a/2])] }",
4706 "{ A[a] : 0 <= a < 200 and exists b : [a/2] = 4 b }" },
4707 { "{ B[i,j,k] : 0 <= i,j,k <= 100 }",
4708 "{ A[a] -> B[a,a,a/3] }",
4709 "{ A[a] : 0 <= a <= 100 and exists b : a = 3 b }" },
4710 { "{ B[i,j] : j = [(i)/2] } ", "{ A[i,j] -> B[i/3,j] }",
4711 "{ A[i,j] : j = [(i)/6] and exists a : i = 3 a }" },
4714 static int test_preimage_basic_set(isl_ctx *ctx)
4716 int i;
4717 isl_basic_set *bset1, *bset2;
4718 isl_multi_aff *ma;
4719 int equal;
4721 for (i = 0; i < ARRAY_SIZE(preimage_tests); ++i) {
4722 bset1 = isl_basic_set_read_from_str(ctx, preimage_tests[i].set);
4723 ma = isl_multi_aff_read_from_str(ctx, preimage_tests[i].ma);
4724 bset2 = isl_basic_set_read_from_str(ctx, preimage_tests[i].res);
4725 bset1 = isl_basic_set_preimage_multi_aff(bset1, ma);
4726 equal = isl_basic_set_is_equal(bset1, bset2);
4727 isl_basic_set_free(bset1);
4728 isl_basic_set_free(bset2);
4729 if (equal < 0)
4730 return -1;
4731 if (!equal)
4732 isl_die(ctx, isl_error_unknown, "bad preimage",
4733 return -1);
4736 return 0;
4739 struct {
4740 const char *map;
4741 const char *ma;
4742 const char *res;
4743 } preimage_domain_tests[] = {
4744 { "{ B[i,j] -> C[2i + 3j] : 0 <= i < 10 and 0 <= j < 100 }",
4745 "{ A[j,i] -> B[i,j] }",
4746 "{ A[j,i] -> C[2i + 3j] : 0 <= i < 10 and 0 <= j < 100 }" },
4747 { "{ B[i] -> C[i]; D[i] -> E[i] }",
4748 "{ A[i] -> B[i + 1] }",
4749 "{ A[i] -> C[i + 1] }" },
4750 { "{ B[i] -> C[i]; B[i] -> E[i] }",
4751 "{ A[i] -> B[i + 1] }",
4752 "{ A[i] -> C[i + 1]; A[i] -> E[i + 1] }" },
4753 { "{ B[i] -> C[([i/2])] }",
4754 "{ A[i] -> B[2i] }",
4755 "{ A[i] -> C[i] }" },
4756 { "{ B[i,j] -> C[([i/2]), ([(i+j)/3])] }",
4757 "{ A[i] -> B[([i/5]), ([i/7])] }",
4758 "{ A[i] -> C[([([i/5])/2]), ([(([i/5])+([i/7]))/3])] }" },
4759 { "[N] -> { B[i] -> C[([N/2]), i, ([N/3])] }",
4760 "[N] -> { A[] -> B[([N/5])] }",
4761 "[N] -> { A[] -> C[([N/2]), ([N/5]), ([N/3])] }" },
4762 { "{ B[i] -> C[i] : exists a : i = 5 a }",
4763 "{ A[i] -> B[2i] }",
4764 "{ A[i] -> C[2i] : exists a : 2i = 5 a }" },
4765 { "{ B[i] -> C[i] : exists a : i = 2 a; "
4766 "B[i] -> D[i] : exists a : i = 2 a + 1 }",
4767 "{ A[i] -> B[2i] }",
4768 "{ A[i] -> C[2i] }" },
4771 static int test_preimage_union_map(isl_ctx *ctx)
4773 int i;
4774 isl_union_map *umap1, *umap2;
4775 isl_multi_aff *ma;
4776 int equal;
4778 for (i = 0; i < ARRAY_SIZE(preimage_domain_tests); ++i) {
4779 umap1 = isl_union_map_read_from_str(ctx,
4780 preimage_domain_tests[i].map);
4781 ma = isl_multi_aff_read_from_str(ctx,
4782 preimage_domain_tests[i].ma);
4783 umap2 = isl_union_map_read_from_str(ctx,
4784 preimage_domain_tests[i].res);
4785 umap1 = isl_union_map_preimage_domain_multi_aff(umap1, ma);
4786 equal = isl_union_map_is_equal(umap1, umap2);
4787 isl_union_map_free(umap1);
4788 isl_union_map_free(umap2);
4789 if (equal < 0)
4790 return -1;
4791 if (!equal)
4792 isl_die(ctx, isl_error_unknown, "bad preimage",
4793 return -1);
4796 return 0;
4799 static int test_preimage(isl_ctx *ctx)
4801 if (test_preimage_basic_set(ctx) < 0)
4802 return -1;
4803 if (test_preimage_union_map(ctx) < 0)
4804 return -1;
4806 return 0;
4809 struct {
4810 const char *ma1;
4811 const char *ma;
4812 const char *res;
4813 } pullback_tests[] = {
4814 { "{ B[i,j] -> C[i + 2j] }" , "{ A[a,b] -> B[b,a] }",
4815 "{ A[a,b] -> C[b + 2a] }" },
4816 { "{ B[i] -> C[2i] }", "{ A[a] -> B[(a)/2] }", "{ A[a] -> C[a] }" },
4817 { "{ B[i] -> C[(i)/2] }", "{ A[a] -> B[2a] }", "{ A[a] -> C[a] }" },
4818 { "{ B[i] -> C[(i)/2] }", "{ A[a] -> B[(a)/3] }",
4819 "{ A[a] -> C[(a)/6] }" },
4820 { "{ B[i] -> C[2i] }", "{ A[a] -> B[5a] }", "{ A[a] -> C[10a] }" },
4821 { "{ B[i] -> C[2i] }", "{ A[a] -> B[(a)/3] }",
4822 "{ A[a] -> C[(2a)/3] }" },
4823 { "{ B[i,j] -> C[i + j] }", "{ A[a] -> B[a,a] }", "{ A[a] -> C[2a] }"},
4824 { "{ B[a] -> C[a,a] }", "{ A[i,j] -> B[i + j] }",
4825 "{ A[i,j] -> C[i + j, i + j] }"},
4826 { "{ B[i] -> C[([i/2])] }", "{ B[5] }", "{ C[2] }" },
4827 { "[n] -> { B[i,j] -> C[([i/2]) + 2j] }",
4828 "[n] -> { B[n,[n/3]] }", "[n] -> { C[([n/2]) + 2*[n/3]] }", },
4829 { "{ [i, j] -> [floor((i)/4) + floor((2*i+j)/5)] }",
4830 "{ [i, j] -> [floor((i)/3), j] }",
4831 "{ [i, j] -> [(floor((i)/12) + floor((j + 2*floor((i)/3))/5))] }" },
4834 static int test_pullback(isl_ctx *ctx)
4836 int i;
4837 isl_multi_aff *ma1, *ma2;
4838 isl_multi_aff *ma;
4839 int equal;
4841 for (i = 0; i < ARRAY_SIZE(pullback_tests); ++i) {
4842 ma1 = isl_multi_aff_read_from_str(ctx, pullback_tests[i].ma1);
4843 ma = isl_multi_aff_read_from_str(ctx, pullback_tests[i].ma);
4844 ma2 = isl_multi_aff_read_from_str(ctx, pullback_tests[i].res);
4845 ma1 = isl_multi_aff_pullback_multi_aff(ma1, ma);
4846 equal = isl_multi_aff_plain_is_equal(ma1, ma2);
4847 isl_multi_aff_free(ma1);
4848 isl_multi_aff_free(ma2);
4849 if (equal < 0)
4850 return -1;
4851 if (!equal)
4852 isl_die(ctx, isl_error_unknown, "bad pullback",
4853 return -1);
4856 return 0;
4859 /* Check that negation is printed correctly and that equal expressions
4860 * are correctly identified.
4862 static int test_ast(isl_ctx *ctx)
4864 isl_ast_expr *expr, *expr1, *expr2, *expr3;
4865 char *str;
4866 int ok, equal;
4868 expr1 = isl_ast_expr_from_id(isl_id_alloc(ctx, "A", NULL));
4869 expr2 = isl_ast_expr_from_id(isl_id_alloc(ctx, "B", NULL));
4870 expr = isl_ast_expr_add(expr1, expr2);
4871 expr2 = isl_ast_expr_copy(expr);
4872 expr = isl_ast_expr_neg(expr);
4873 expr2 = isl_ast_expr_neg(expr2);
4874 equal = isl_ast_expr_is_equal(expr, expr2);
4875 str = isl_ast_expr_to_str(expr);
4876 ok = str ? !strcmp(str, "-(A + B)") : -1;
4877 free(str);
4878 isl_ast_expr_free(expr);
4879 isl_ast_expr_free(expr2);
4881 if (ok < 0 || equal < 0)
4882 return -1;
4883 if (!equal)
4884 isl_die(ctx, isl_error_unknown,
4885 "equal expressions not considered equal", return -1);
4886 if (!ok)
4887 isl_die(ctx, isl_error_unknown,
4888 "isl_ast_expr printed incorrectly", return -1);
4890 expr1 = isl_ast_expr_from_id(isl_id_alloc(ctx, "A", NULL));
4891 expr2 = isl_ast_expr_from_id(isl_id_alloc(ctx, "B", NULL));
4892 expr = isl_ast_expr_add(expr1, expr2);
4893 expr3 = isl_ast_expr_from_id(isl_id_alloc(ctx, "C", NULL));
4894 expr = isl_ast_expr_sub(expr3, expr);
4895 str = isl_ast_expr_to_str(expr);
4896 ok = str ? !strcmp(str, "C - (A + B)") : -1;
4897 free(str);
4898 isl_ast_expr_free(expr);
4900 if (ok < 0)
4901 return -1;
4902 if (!ok)
4903 isl_die(ctx, isl_error_unknown,
4904 "isl_ast_expr printed incorrectly", return -1);
4906 return 0;
4909 /* Check that isl_ast_build_expr_from_set returns a valid expression
4910 * for an empty set. Note that isl_ast_build_expr_from_set getting
4911 * called on an empty set probably indicates a bug in the caller.
4913 static int test_ast_build(isl_ctx *ctx)
4915 isl_set *set;
4916 isl_ast_build *build;
4917 isl_ast_expr *expr;
4919 set = isl_set_universe(isl_space_params_alloc(ctx, 0));
4920 build = isl_ast_build_from_context(set);
4922 set = isl_set_empty(isl_space_params_alloc(ctx, 0));
4923 expr = isl_ast_build_expr_from_set(build, set);
4925 isl_ast_expr_free(expr);
4926 isl_ast_build_free(build);
4928 if (!expr)
4929 return -1;
4931 return 0;
4934 /* Internal data structure for before_for and after_for callbacks.
4936 * depth is the current depth
4937 * before is the number of times before_for has been called
4938 * after is the number of times after_for has been called
4940 struct isl_test_codegen_data {
4941 int depth;
4942 int before;
4943 int after;
4946 /* This function is called before each for loop in the AST generated
4947 * from test_ast_gen1.
4949 * Increment the number of calls and the depth.
4950 * Check that the space returned by isl_ast_build_get_schedule_space
4951 * matches the target space of the schedule returned by
4952 * isl_ast_build_get_schedule.
4953 * Return an isl_id that is checked by the corresponding call
4954 * to after_for.
4956 static __isl_give isl_id *before_for(__isl_keep isl_ast_build *build,
4957 void *user)
4959 struct isl_test_codegen_data *data = user;
4960 isl_ctx *ctx;
4961 isl_space *space;
4962 isl_union_map *schedule;
4963 isl_union_set *uset;
4964 isl_set *set;
4965 int empty;
4966 char name[] = "d0";
4968 ctx = isl_ast_build_get_ctx(build);
4970 if (data->before >= 3)
4971 isl_die(ctx, isl_error_unknown,
4972 "unexpected number of for nodes", return NULL);
4973 if (data->depth >= 2)
4974 isl_die(ctx, isl_error_unknown,
4975 "unexpected depth", return NULL);
4977 snprintf(name, sizeof(name), "d%d", data->depth);
4978 data->before++;
4979 data->depth++;
4981 schedule = isl_ast_build_get_schedule(build);
4982 uset = isl_union_map_range(schedule);
4983 if (!uset)
4984 return NULL;
4985 if (isl_union_set_n_set(uset) != 1) {
4986 isl_union_set_free(uset);
4987 isl_die(ctx, isl_error_unknown,
4988 "expecting single range space", return NULL);
4991 space = isl_ast_build_get_schedule_space(build);
4992 set = isl_union_set_extract_set(uset, space);
4993 isl_union_set_free(uset);
4994 empty = isl_set_is_empty(set);
4995 isl_set_free(set);
4997 if (empty < 0)
4998 return NULL;
4999 if (empty)
5000 isl_die(ctx, isl_error_unknown,
5001 "spaces don't match", return NULL);
5003 return isl_id_alloc(ctx, name, NULL);
5006 /* This function is called after each for loop in the AST generated
5007 * from test_ast_gen1.
5009 * Increment the number of calls and decrement the depth.
5010 * Check that the annotation attached to the node matches
5011 * the isl_id returned by the corresponding call to before_for.
5013 static __isl_give isl_ast_node *after_for(__isl_take isl_ast_node *node,
5014 __isl_keep isl_ast_build *build, void *user)
5016 struct isl_test_codegen_data *data = user;
5017 isl_id *id;
5018 const char *name;
5019 int valid;
5021 data->after++;
5022 data->depth--;
5024 if (data->after > data->before)
5025 isl_die(isl_ast_node_get_ctx(node), isl_error_unknown,
5026 "mismatch in number of for nodes",
5027 return isl_ast_node_free(node));
5029 id = isl_ast_node_get_annotation(node);
5030 if (!id)
5031 isl_die(isl_ast_node_get_ctx(node), isl_error_unknown,
5032 "missing annotation", return isl_ast_node_free(node));
5034 name = isl_id_get_name(id);
5035 valid = name && atoi(name + 1) == data->depth;
5036 isl_id_free(id);
5038 if (!valid)
5039 isl_die(isl_ast_node_get_ctx(node), isl_error_unknown,
5040 "wrong annotation", return isl_ast_node_free(node));
5042 return node;
5045 /* Check that the before_each_for and after_each_for callbacks
5046 * are called for each for loop in the generated code,
5047 * that they are called in the right order and that the isl_id
5048 * returned from the before_each_for callback is attached to
5049 * the isl_ast_node passed to the corresponding after_each_for call.
5051 static int test_ast_gen1(isl_ctx *ctx)
5053 const char *str;
5054 isl_set *set;
5055 isl_union_map *schedule;
5056 isl_ast_build *build;
5057 isl_ast_node *tree;
5058 struct isl_test_codegen_data data;
5060 str = "[N] -> { : N >= 10 }";
5061 set = isl_set_read_from_str(ctx, str);
5062 str = "[N] -> { A[i,j] -> S[8,i,3,j] : 0 <= i,j <= N; "
5063 "B[i,j] -> S[8,j,9,i] : 0 <= i,j <= N }";
5064 schedule = isl_union_map_read_from_str(ctx, str);
5066 data.before = 0;
5067 data.after = 0;
5068 data.depth = 0;
5069 build = isl_ast_build_from_context(set);
5070 build = isl_ast_build_set_before_each_for(build,
5071 &before_for, &data);
5072 build = isl_ast_build_set_after_each_for(build,
5073 &after_for, &data);
5074 tree = isl_ast_build_node_from_schedule_map(build, schedule);
5075 isl_ast_build_free(build);
5076 if (!tree)
5077 return -1;
5079 isl_ast_node_free(tree);
5081 if (data.before != 3 || data.after != 3)
5082 isl_die(ctx, isl_error_unknown,
5083 "unexpected number of for nodes", return -1);
5085 return 0;
5088 /* Check that the AST generator handles domains that are integrally disjoint
5089 * but not ratinoally disjoint.
5091 static int test_ast_gen2(isl_ctx *ctx)
5093 const char *str;
5094 isl_set *set;
5095 isl_union_map *schedule;
5096 isl_union_map *options;
5097 isl_ast_build *build;
5098 isl_ast_node *tree;
5100 str = "{ A[i,j] -> [i,j] : 0 <= i,j <= 1 }";
5101 schedule = isl_union_map_read_from_str(ctx, str);
5102 set = isl_set_universe(isl_space_params_alloc(ctx, 0));
5103 build = isl_ast_build_from_context(set);
5105 str = "{ [i,j] -> atomic[1] : i + j = 1; [i,j] -> unroll[1] : i = j }";
5106 options = isl_union_map_read_from_str(ctx, str);
5107 build = isl_ast_build_set_options(build, options);
5108 tree = isl_ast_build_node_from_schedule_map(build, schedule);
5109 isl_ast_build_free(build);
5110 if (!tree)
5111 return -1;
5112 isl_ast_node_free(tree);
5114 return 0;
5117 /* Increment *user on each call.
5119 static __isl_give isl_ast_node *count_domains(__isl_take isl_ast_node *node,
5120 __isl_keep isl_ast_build *build, void *user)
5122 int *n = user;
5124 (*n)++;
5126 return node;
5129 /* Test that unrolling tries to minimize the number of instances.
5130 * In particular, for the schedule given below, make sure it generates
5131 * 3 nodes (rather than 101).
5133 static int test_ast_gen3(isl_ctx *ctx)
5135 const char *str;
5136 isl_set *set;
5137 isl_union_map *schedule;
5138 isl_union_map *options;
5139 isl_ast_build *build;
5140 isl_ast_node *tree;
5141 int n_domain = 0;
5143 str = "[n] -> { A[i] -> [i] : 0 <= i <= 100 and n <= i <= n + 2 }";
5144 schedule = isl_union_map_read_from_str(ctx, str);
5145 set = isl_set_universe(isl_space_params_alloc(ctx, 0));
5147 str = "{ [i] -> unroll[0] }";
5148 options = isl_union_map_read_from_str(ctx, str);
5150 build = isl_ast_build_from_context(set);
5151 build = isl_ast_build_set_options(build, options);
5152 build = isl_ast_build_set_at_each_domain(build,
5153 &count_domains, &n_domain);
5154 tree = isl_ast_build_node_from_schedule_map(build, schedule);
5155 isl_ast_build_free(build);
5156 if (!tree)
5157 return -1;
5159 isl_ast_node_free(tree);
5161 if (n_domain != 3)
5162 isl_die(ctx, isl_error_unknown,
5163 "unexpected number of for nodes", return -1);
5165 return 0;
5168 /* Check that if the ast_build_exploit_nested_bounds options is set,
5169 * we do not get an outer if node in the generated AST,
5170 * while we do get such an outer if node if the options is not set.
5172 static int test_ast_gen4(isl_ctx *ctx)
5174 const char *str;
5175 isl_set *set;
5176 isl_union_map *schedule;
5177 isl_ast_build *build;
5178 isl_ast_node *tree;
5179 enum isl_ast_node_type type;
5180 int enb;
5182 enb = isl_options_get_ast_build_exploit_nested_bounds(ctx);
5183 str = "[N,M] -> { A[i,j] -> [i,j] : 0 <= i <= N and 0 <= j <= M }";
5185 isl_options_set_ast_build_exploit_nested_bounds(ctx, 1);
5187 schedule = isl_union_map_read_from_str(ctx, str);
5188 set = isl_set_universe(isl_space_params_alloc(ctx, 0));
5189 build = isl_ast_build_from_context(set);
5190 tree = isl_ast_build_node_from_schedule_map(build, schedule);
5191 isl_ast_build_free(build);
5192 if (!tree)
5193 return -1;
5195 type = isl_ast_node_get_type(tree);
5196 isl_ast_node_free(tree);
5198 if (type == isl_ast_node_if)
5199 isl_die(ctx, isl_error_unknown,
5200 "not expecting if node", return -1);
5202 isl_options_set_ast_build_exploit_nested_bounds(ctx, 0);
5204 schedule = isl_union_map_read_from_str(ctx, str);
5205 set = isl_set_universe(isl_space_params_alloc(ctx, 0));
5206 build = isl_ast_build_from_context(set);
5207 tree = isl_ast_build_node_from_schedule_map(build, schedule);
5208 isl_ast_build_free(build);
5209 if (!tree)
5210 return -1;
5212 type = isl_ast_node_get_type(tree);
5213 isl_ast_node_free(tree);
5215 if (type != isl_ast_node_if)
5216 isl_die(ctx, isl_error_unknown,
5217 "expecting if node", return -1);
5219 isl_options_set_ast_build_exploit_nested_bounds(ctx, enb);
5221 return 0;
5224 /* This function is called for each leaf in the AST generated
5225 * from test_ast_gen5.
5227 * We finalize the AST generation by extending the outer schedule
5228 * with a zero-dimensional schedule. If this results in any for loops,
5229 * then this means that we did not pass along enough information
5230 * about the outer schedule to the inner AST generation.
5232 static __isl_give isl_ast_node *create_leaf(__isl_take isl_ast_build *build,
5233 void *user)
5235 isl_union_map *schedule, *extra;
5236 isl_ast_node *tree;
5238 schedule = isl_ast_build_get_schedule(build);
5239 extra = isl_union_map_copy(schedule);
5240 extra = isl_union_map_from_domain(isl_union_map_domain(extra));
5241 schedule = isl_union_map_range_product(schedule, extra);
5242 tree = isl_ast_build_node_from_schedule_map(build, schedule);
5243 isl_ast_build_free(build);
5245 if (!tree)
5246 return NULL;
5248 if (isl_ast_node_get_type(tree) == isl_ast_node_for)
5249 isl_die(isl_ast_node_get_ctx(tree), isl_error_unknown,
5250 "code should not contain any for loop",
5251 return isl_ast_node_free(tree));
5253 return tree;
5256 /* Check that we do not lose any information when going back and
5257 * forth between internal and external schedule.
5259 * In particular, we create an AST where we unroll the only
5260 * non-constant dimension in the schedule. We therefore do
5261 * not expect any for loops in the AST. However, older versions
5262 * of isl would not pass along enough information about the outer
5263 * schedule when performing an inner code generation from a create_leaf
5264 * callback, resulting in the inner code generation producing a for loop.
5266 static int test_ast_gen5(isl_ctx *ctx)
5268 const char *str;
5269 isl_set *set;
5270 isl_union_map *schedule, *options;
5271 isl_ast_build *build;
5272 isl_ast_node *tree;
5274 str = "{ A[] -> [1, 1, 2]; B[i] -> [1, i, 0] : i >= 1 and i <= 2 }";
5275 schedule = isl_union_map_read_from_str(ctx, str);
5277 str = "{ [a, b, c] -> unroll[1] : exists (e0 = [(a)/4]: "
5278 "4e0 >= -1 + a - b and 4e0 <= -2 + a + b) }";
5279 options = isl_union_map_read_from_str(ctx, str);
5281 set = isl_set_universe(isl_space_params_alloc(ctx, 0));
5282 build = isl_ast_build_from_context(set);
5283 build = isl_ast_build_set_options(build, options);
5284 build = isl_ast_build_set_create_leaf(build, &create_leaf, NULL);
5285 tree = isl_ast_build_node_from_schedule_map(build, schedule);
5286 isl_ast_build_free(build);
5287 isl_ast_node_free(tree);
5288 if (!tree)
5289 return -1;
5291 return 0;
5294 static int test_ast_gen(isl_ctx *ctx)
5296 if (test_ast_gen1(ctx) < 0)
5297 return -1;
5298 if (test_ast_gen2(ctx) < 0)
5299 return -1;
5300 if (test_ast_gen3(ctx) < 0)
5301 return -1;
5302 if (test_ast_gen4(ctx) < 0)
5303 return -1;
5304 if (test_ast_gen5(ctx) < 0)
5305 return -1;
5306 return 0;
5309 /* Check if dropping output dimensions from an isl_pw_multi_aff
5310 * works properly.
5312 static int test_pw_multi_aff(isl_ctx *ctx)
5314 const char *str;
5315 isl_pw_multi_aff *pma1, *pma2;
5316 int equal;
5318 str = "{ [i,j] -> [i+j, 4i-j] }";
5319 pma1 = isl_pw_multi_aff_read_from_str(ctx, str);
5320 str = "{ [i,j] -> [4i-j] }";
5321 pma2 = isl_pw_multi_aff_read_from_str(ctx, str);
5323 pma1 = isl_pw_multi_aff_drop_dims(pma1, isl_dim_out, 0, 1);
5325 equal = isl_pw_multi_aff_plain_is_equal(pma1, pma2);
5327 isl_pw_multi_aff_free(pma1);
5328 isl_pw_multi_aff_free(pma2);
5329 if (equal < 0)
5330 return -1;
5331 if (!equal)
5332 isl_die(ctx, isl_error_unknown,
5333 "expressions not equal", return -1);
5335 return 0;
5338 /* Check that we can properly parse multi piecewise affine expressions
5339 * where the piecewise affine expressions have different domains.
5341 static int test_multi_pw_aff(isl_ctx *ctx)
5343 const char *str;
5344 isl_set *dom, *dom2;
5345 isl_multi_pw_aff *mpa1, *mpa2;
5346 isl_pw_aff *pa;
5347 int equal;
5348 int equal_domain;
5350 mpa1 = isl_multi_pw_aff_read_from_str(ctx, "{ [i] -> [i] }");
5351 dom = isl_set_read_from_str(ctx, "{ [i] : i > 0 }");
5352 mpa1 = isl_multi_pw_aff_intersect_domain(mpa1, dom);
5353 mpa2 = isl_multi_pw_aff_read_from_str(ctx, "{ [i] -> [2i] }");
5354 mpa2 = isl_multi_pw_aff_flat_range_product(mpa1, mpa2);
5355 str = "{ [i] -> [(i : i > 0), 2i] }";
5356 mpa1 = isl_multi_pw_aff_read_from_str(ctx, str);
5358 equal = isl_multi_pw_aff_plain_is_equal(mpa1, mpa2);
5360 pa = isl_multi_pw_aff_get_pw_aff(mpa1, 0);
5361 dom = isl_pw_aff_domain(pa);
5362 pa = isl_multi_pw_aff_get_pw_aff(mpa1, 1);
5363 dom2 = isl_pw_aff_domain(pa);
5364 equal_domain = isl_set_is_equal(dom, dom2);
5366 isl_set_free(dom);
5367 isl_set_free(dom2);
5368 isl_multi_pw_aff_free(mpa1);
5369 isl_multi_pw_aff_free(mpa2);
5371 if (equal < 0)
5372 return -1;
5373 if (!equal)
5374 isl_die(ctx, isl_error_unknown,
5375 "expressions not equal", return -1);
5377 if (equal_domain < 0)
5378 return -1;
5379 if (equal_domain)
5380 isl_die(ctx, isl_error_unknown,
5381 "domains unexpectedly equal", return -1);
5383 return 0;
5386 /* This is a regression test for a bug where isl_basic_map_simplify
5387 * would end up in an infinite loop. In particular, we construct
5388 * an empty basic set that is not obviously empty.
5389 * isl_basic_set_is_empty marks the basic set as empty.
5390 * After projecting out i3, the variable can be dropped completely,
5391 * but isl_basic_map_simplify refrains from doing so if the basic set
5392 * is empty and would end up in an infinite loop if it didn't test
5393 * explicitly for empty basic maps in the outer loop.
5395 static int test_simplify(isl_ctx *ctx)
5397 const char *str;
5398 isl_basic_set *bset;
5399 int empty;
5401 str = "{ [i0, i1, i2, i3] : i0 >= -2 and 6i2 <= 4 + i0 + 5i1 and "
5402 "i2 <= 22 and 75i2 <= 111 + 13i0 + 60i1 and "
5403 "25i2 >= 38 + 6i0 + 20i1 and i0 <= -1 and i2 >= 20 and "
5404 "i3 >= i2 }";
5405 bset = isl_basic_set_read_from_str(ctx, str);
5406 empty = isl_basic_set_is_empty(bset);
5407 bset = isl_basic_set_project_out(bset, isl_dim_set, 3, 1);
5408 isl_basic_set_free(bset);
5409 if (!bset)
5410 return -1;
5411 if (!empty)
5412 isl_die(ctx, isl_error_unknown,
5413 "basic set should be empty", return -1);
5415 return 0;
5418 /* This is a regression test for a bug where isl_tab_basic_map_partial_lexopt
5419 * with gbr context would fail to disable the use of the shifted tableau
5420 * when transferring equalities for the input to the context, resulting
5421 * in invalid sample values.
5423 static int test_partial_lexmin(isl_ctx *ctx)
5425 const char *str;
5426 isl_basic_set *bset;
5427 isl_basic_map *bmap;
5428 isl_map *map;
5430 str = "{ [1, b, c, 1 - c] -> [e] : 2e <= -c and 2e >= -3 + c }";
5431 bmap = isl_basic_map_read_from_str(ctx, str);
5432 str = "{ [a, b, c, d] : c <= 1 and 2d >= 6 - 4b - c }";
5433 bset = isl_basic_set_read_from_str(ctx, str);
5434 map = isl_basic_map_partial_lexmin(bmap, bset, NULL);
5435 isl_map_free(map);
5437 if (!map)
5438 return -1;
5440 return 0;
5443 /* Check that the variable compression performed on the existentially
5444 * quantified variables inside isl_basic_set_compute_divs is not confused
5445 * by the implicit equalities among the parameters.
5447 static int test_compute_divs(isl_ctx *ctx)
5449 const char *str;
5450 isl_basic_set *bset;
5451 isl_set *set;
5453 str = "[a, b, c, d, e] -> { [] : exists (e0: 2d = b and a <= 124 and "
5454 "b <= 2046 and b >= 0 and b <= 60 + 64a and 2e >= b + 2c and "
5455 "2e >= b and 2e <= 1 + b and 2e <= 1 + b + 2c and "
5456 "32768e0 >= -124 + a and 2097152e0 <= 60 + 64a - b) }";
5457 bset = isl_basic_set_read_from_str(ctx, str);
5458 set = isl_basic_set_compute_divs(bset);
5459 isl_set_free(set);
5460 if (!set)
5461 return -1;
5463 return 0;
5466 /* Check that the reaching domain elements and the prefix schedule
5467 * at a leaf node are the same before and after grouping.
5469 static int test_schedule_tree_group_1(isl_ctx *ctx)
5471 int equal;
5472 const char *str;
5473 isl_id *id;
5474 isl_union_set *uset;
5475 isl_multi_union_pw_aff *mupa;
5476 isl_union_pw_multi_aff *upma1, *upma2;
5477 isl_union_set *domain1, *domain2;
5478 isl_union_map *umap1, *umap2;
5479 isl_schedule_node *node;
5481 str = "{ S1[i,j] : 0 <= i,j < 10; S2[i,j] : 0 <= i,j < 10 }";
5482 uset = isl_union_set_read_from_str(ctx, str);
5483 node = isl_schedule_node_from_domain(uset);
5484 node = isl_schedule_node_child(node, 0);
5485 str = "[{ S1[i,j] -> [i]; S2[i,j] -> [9 - i] }]";
5486 mupa = isl_multi_union_pw_aff_read_from_str(ctx, str);
5487 node = isl_schedule_node_insert_partial_schedule(node, mupa);
5488 node = isl_schedule_node_child(node, 0);
5489 str = "[{ S1[i,j] -> [j]; S2[i,j] -> [j] }]";
5490 mupa = isl_multi_union_pw_aff_read_from_str(ctx, str);
5491 node = isl_schedule_node_insert_partial_schedule(node, mupa);
5492 node = isl_schedule_node_child(node, 0);
5493 umap1 = isl_schedule_node_get_prefix_schedule_union_map(node);
5494 upma1 = isl_schedule_node_get_prefix_schedule_union_pw_multi_aff(node);
5495 domain1 = isl_schedule_node_get_domain(node);
5496 id = isl_id_alloc(ctx, "group", NULL);
5497 node = isl_schedule_node_parent(node);
5498 node = isl_schedule_node_group(node, id);
5499 node = isl_schedule_node_child(node, 0);
5500 umap2 = isl_schedule_node_get_prefix_schedule_union_map(node);
5501 upma2 = isl_schedule_node_get_prefix_schedule_union_pw_multi_aff(node);
5502 domain2 = isl_schedule_node_get_domain(node);
5503 equal = isl_union_pw_multi_aff_plain_is_equal(upma1, upma2);
5504 if (equal >= 0 && equal)
5505 equal = isl_union_set_is_equal(domain1, domain2);
5506 if (equal >= 0 && equal)
5507 equal = isl_union_map_is_equal(umap1, umap2);
5508 isl_union_map_free(umap1);
5509 isl_union_map_free(umap2);
5510 isl_union_set_free(domain1);
5511 isl_union_set_free(domain2);
5512 isl_union_pw_multi_aff_free(upma1);
5513 isl_union_pw_multi_aff_free(upma2);
5514 isl_schedule_node_free(node);
5516 if (equal < 0)
5517 return -1;
5518 if (!equal)
5519 isl_die(ctx, isl_error_unknown,
5520 "expressions not equal", return -1);
5522 return 0;
5525 /* Check that we can have nested groupings and that the union map
5526 * schedule representation is the same before and after the grouping.
5527 * Note that after the grouping, the union map representation contains
5528 * the domain constraints from the ranges of the expansion nodes,
5529 * while they are missing from the union map representation of
5530 * the tree without expansion nodes.
5532 * Also check that the global expansion is as expected.
5534 static int test_schedule_tree_group_2(isl_ctx *ctx)
5536 int equal, equal_expansion;
5537 const char *str;
5538 isl_id *id;
5539 isl_union_set *uset;
5540 isl_union_map *umap1, *umap2;
5541 isl_union_map *expansion1, *expansion2;
5542 isl_union_set_list *filters;
5543 isl_multi_union_pw_aff *mupa;
5544 isl_schedule *schedule;
5545 isl_schedule_node *node;
5547 str = "{ S1[i,j] : 0 <= i,j < 10; S2[i,j] : 0 <= i,j < 10; "
5548 "S3[i,j] : 0 <= i,j < 10 }";
5549 uset = isl_union_set_read_from_str(ctx, str);
5550 node = isl_schedule_node_from_domain(uset);
5551 node = isl_schedule_node_child(node, 0);
5552 str = "[{ S1[i,j] -> [i]; S2[i,j] -> [i]; S3[i,j] -> [i] }]";
5553 mupa = isl_multi_union_pw_aff_read_from_str(ctx, str);
5554 node = isl_schedule_node_insert_partial_schedule(node, mupa);
5555 node = isl_schedule_node_child(node, 0);
5556 str = "{ S1[i,j] }";
5557 uset = isl_union_set_read_from_str(ctx, str);
5558 filters = isl_union_set_list_from_union_set(uset);
5559 str = "{ S2[i,j]; S3[i,j] }";
5560 uset = isl_union_set_read_from_str(ctx, str);
5561 filters = isl_union_set_list_add(filters, uset);
5562 node = isl_schedule_node_insert_sequence(node, filters);
5563 node = isl_schedule_node_child(node, 1);
5564 node = isl_schedule_node_child(node, 0);
5565 str = "{ S2[i,j] }";
5566 uset = isl_union_set_read_from_str(ctx, str);
5567 filters = isl_union_set_list_from_union_set(uset);
5568 str = "{ S3[i,j] }";
5569 uset = isl_union_set_read_from_str(ctx, str);
5570 filters = isl_union_set_list_add(filters, uset);
5571 node = isl_schedule_node_insert_sequence(node, filters);
5573 schedule = isl_schedule_node_get_schedule(node);
5574 umap1 = isl_schedule_get_map(schedule);
5575 uset = isl_schedule_get_domain(schedule);
5576 umap1 = isl_union_map_intersect_domain(umap1, uset);
5577 isl_schedule_free(schedule);
5579 node = isl_schedule_node_parent(node);
5580 node = isl_schedule_node_parent(node);
5581 id = isl_id_alloc(ctx, "group1", NULL);
5582 node = isl_schedule_node_group(node, id);
5583 node = isl_schedule_node_child(node, 1);
5584 node = isl_schedule_node_child(node, 0);
5585 id = isl_id_alloc(ctx, "group2", NULL);
5586 node = isl_schedule_node_group(node, id);
5588 schedule = isl_schedule_node_get_schedule(node);
5589 umap2 = isl_schedule_get_map(schedule);
5590 isl_schedule_free(schedule);
5592 node = isl_schedule_node_root(node);
5593 node = isl_schedule_node_child(node, 0);
5594 expansion1 = isl_schedule_node_get_subtree_expansion(node);
5595 isl_schedule_node_free(node);
5597 str = "{ group1[i] -> S1[i,j] : 0 <= i,j < 10; "
5598 "group1[i] -> S2[i,j] : 0 <= i,j < 10; "
5599 "group1[i] -> S3[i,j] : 0 <= i,j < 10 }";
5601 expansion2 = isl_union_map_read_from_str(ctx, str);
5603 equal = isl_union_map_is_equal(umap1, umap2);
5604 equal_expansion = isl_union_map_is_equal(expansion1, expansion2);
5606 isl_union_map_free(umap1);
5607 isl_union_map_free(umap2);
5608 isl_union_map_free(expansion1);
5609 isl_union_map_free(expansion2);
5611 if (equal < 0 || equal_expansion < 0)
5612 return -1;
5613 if (!equal)
5614 isl_die(ctx, isl_error_unknown,
5615 "expressions not equal", return -1);
5616 if (!equal_expansion)
5617 isl_die(ctx, isl_error_unknown,
5618 "unexpected expansion", return -1);
5620 return 0;
5623 /* Some tests for the isl_schedule_node_group function.
5625 static int test_schedule_tree_group(isl_ctx *ctx)
5627 if (test_schedule_tree_group_1(ctx) < 0)
5628 return -1;
5629 if (test_schedule_tree_group_2(ctx) < 0)
5630 return -1;
5631 return 0;
5634 struct {
5635 const char *set;
5636 const char *dual;
5637 } coef_tests[] = {
5638 { "{ rat: [i] : 0 <= i <= 10 }",
5639 "{ rat: coefficients[[cst] -> [a]] : cst >= 0 and 10a + cst >= 0 }" },
5640 { "{ rat: [i] : FALSE }",
5641 "{ rat: coefficients[[cst] -> [a]] }" },
5642 { "{ rat: [i] : }",
5643 "{ rat: coefficients[[cst] -> [0]] : cst >= 0 }" },
5646 struct {
5647 const char *set;
5648 const char *dual;
5649 } sol_tests[] = {
5650 { "{ rat: coefficients[[cst] -> [a]] : cst >= 0 and 10a + cst >= 0 }",
5651 "{ rat: [i] : 0 <= i <= 10 }" },
5652 { "{ rat: coefficients[[cst] -> [a]] : FALSE }",
5653 "{ rat: [i] }" },
5654 { "{ rat: coefficients[[cst] -> [a]] }",
5655 "{ rat: [i] : FALSE }" },
5658 /* Test the basic functionality of isl_basic_set_coefficients and
5659 * isl_basic_set_solutions.
5661 static int test_dual(isl_ctx *ctx)
5663 int i;
5665 for (i = 0; i < ARRAY_SIZE(coef_tests); ++i) {
5666 int equal;
5667 isl_basic_set *bset1, *bset2;
5669 bset1 = isl_basic_set_read_from_str(ctx, coef_tests[i].set);
5670 bset2 = isl_basic_set_read_from_str(ctx, coef_tests[i].dual);
5671 bset1 = isl_basic_set_coefficients(bset1);
5672 equal = isl_basic_set_is_equal(bset1, bset2);
5673 isl_basic_set_free(bset1);
5674 isl_basic_set_free(bset2);
5675 if (equal < 0)
5676 return -1;
5677 if (!equal)
5678 isl_die(ctx, isl_error_unknown,
5679 "incorrect dual", return -1);
5682 for (i = 0; i < ARRAY_SIZE(sol_tests); ++i) {
5683 int equal;
5684 isl_basic_set *bset1, *bset2;
5686 bset1 = isl_basic_set_read_from_str(ctx, sol_tests[i].set);
5687 bset2 = isl_basic_set_read_from_str(ctx, sol_tests[i].dual);
5688 bset1 = isl_basic_set_solutions(bset1);
5689 equal = isl_basic_set_is_equal(bset1, bset2);
5690 isl_basic_set_free(bset1);
5691 isl_basic_set_free(bset2);
5692 if (equal < 0)
5693 return -1;
5694 if (!equal)
5695 isl_die(ctx, isl_error_unknown,
5696 "incorrect dual", return -1);
5699 return 0;
5702 struct {
5703 int scale_tile;
5704 int shift_point;
5705 const char *domain;
5706 const char *schedule;
5707 const char *sizes;
5708 const char *tile;
5709 const char *point;
5710 } tile_tests[] = {
5711 { 0, 0, "[n] -> { S[i,j] : 0 <= i,j < n }",
5712 "[{ S[i,j] -> [i] }, { S[i,j] -> [j] }]",
5713 "{ [32,32] }",
5714 "[{ S[i,j] -> [floor(i/32)] }, { S[i,j] -> [floor(j/32)] }]",
5715 "[{ S[i,j] -> [i] }, { S[i,j] -> [j] }]",
5717 { 1, 0, "[n] -> { S[i,j] : 0 <= i,j < n }",
5718 "[{ S[i,j] -> [i] }, { S[i,j] -> [j] }]",
5719 "{ [32,32] }",
5720 "[{ S[i,j] -> [32*floor(i/32)] }, { S[i,j] -> [32*floor(j/32)] }]",
5721 "[{ S[i,j] -> [i] }, { S[i,j] -> [j] }]",
5723 { 0, 1, "[n] -> { S[i,j] : 0 <= i,j < n }",
5724 "[{ S[i,j] -> [i] }, { S[i,j] -> [j] }]",
5725 "{ [32,32] }",
5726 "[{ S[i,j] -> [floor(i/32)] }, { S[i,j] -> [floor(j/32)] }]",
5727 "[{ S[i,j] -> [i%32] }, { S[i,j] -> [j%32] }]",
5729 { 1, 1, "[n] -> { S[i,j] : 0 <= i,j < n }",
5730 "[{ S[i,j] -> [i] }, { S[i,j] -> [j] }]",
5731 "{ [32,32] }",
5732 "[{ S[i,j] -> [32*floor(i/32)] }, { S[i,j] -> [32*floor(j/32)] }]",
5733 "[{ S[i,j] -> [i%32] }, { S[i,j] -> [j%32] }]",
5737 /* Basic tiling tests. Create a schedule tree with a domain and a band node,
5738 * tile the band and then check if the tile and point bands have the
5739 * expected partial schedule.
5741 static int test_tile(isl_ctx *ctx)
5743 int i;
5744 int scale;
5745 int shift;
5747 scale = isl_options_get_tile_scale_tile_loops(ctx);
5748 shift = isl_options_get_tile_shift_point_loops(ctx);
5750 for (i = 0; i < ARRAY_SIZE(tile_tests); ++i) {
5751 int opt;
5752 int equal;
5753 const char *str;
5754 isl_union_set *domain;
5755 isl_multi_union_pw_aff *mupa, *mupa2;
5756 isl_schedule_node *node;
5757 isl_multi_val *sizes;
5759 opt = tile_tests[i].scale_tile;
5760 isl_options_set_tile_scale_tile_loops(ctx, opt);
5761 opt = tile_tests[i].shift_point;
5762 isl_options_set_tile_shift_point_loops(ctx, opt);
5764 str = tile_tests[i].domain;
5765 domain = isl_union_set_read_from_str(ctx, str);
5766 node = isl_schedule_node_from_domain(domain);
5767 node = isl_schedule_node_child(node, 0);
5768 str = tile_tests[i].schedule;
5769 mupa = isl_multi_union_pw_aff_read_from_str(ctx, str);
5770 node = isl_schedule_node_insert_partial_schedule(node, mupa);
5771 str = tile_tests[i].sizes;
5772 sizes = isl_multi_val_read_from_str(ctx, str);
5773 node = isl_schedule_node_band_tile(node, sizes);
5775 str = tile_tests[i].tile;
5776 mupa = isl_multi_union_pw_aff_read_from_str(ctx, str);
5777 mupa2 = isl_schedule_node_band_get_partial_schedule(node);
5778 equal = isl_multi_union_pw_aff_plain_is_equal(mupa, mupa2);
5779 isl_multi_union_pw_aff_free(mupa);
5780 isl_multi_union_pw_aff_free(mupa2);
5782 node = isl_schedule_node_child(node, 0);
5784 str = tile_tests[i].point;
5785 mupa = isl_multi_union_pw_aff_read_from_str(ctx, str);
5786 mupa2 = isl_schedule_node_band_get_partial_schedule(node);
5787 if (equal >= 0 && equal)
5788 equal = isl_multi_union_pw_aff_plain_is_equal(mupa,
5789 mupa2);
5790 isl_multi_union_pw_aff_free(mupa);
5791 isl_multi_union_pw_aff_free(mupa2);
5793 isl_schedule_node_free(node);
5795 if (equal < 0)
5796 return -1;
5797 if (!equal)
5798 isl_die(ctx, isl_error_unknown,
5799 "unexpected result", return -1);
5802 isl_options_set_tile_scale_tile_loops(ctx, scale);
5803 isl_options_set_tile_shift_point_loops(ctx, shift);
5805 return 0;
5808 struct {
5809 const char *name;
5810 int (*fn)(isl_ctx *ctx);
5811 } tests [] = {
5812 { "dual", &test_dual },
5813 { "dependence analysis", &test_flow },
5814 { "val", &test_val },
5815 { "compute divs", &test_compute_divs },
5816 { "partial lexmin", &test_partial_lexmin },
5817 { "simplify", &test_simplify },
5818 { "curry", &test_curry },
5819 { "piecewise multi affine expressions", &test_pw_multi_aff },
5820 { "multi piecewise affine expressions", &test_multi_pw_aff },
5821 { "conversion", &test_conversion },
5822 { "list", &test_list },
5823 { "align parameters", &test_align_parameters },
5824 { "preimage", &test_preimage },
5825 { "pullback", &test_pullback },
5826 { "AST", &test_ast },
5827 { "AST build", &test_ast_build },
5828 { "AST generation", &test_ast_gen },
5829 { "eliminate", &test_eliminate },
5830 { "residue class", &test_residue_class },
5831 { "div", &test_div },
5832 { "slice", &test_slice },
5833 { "fixed power", &test_fixed_power },
5834 { "sample", &test_sample },
5835 { "output", &test_output },
5836 { "vertices", &test_vertices },
5837 { "fixed", &test_fixed },
5838 { "equal", &test_equal },
5839 { "disjoint", &test_disjoint },
5840 { "product", &test_product },
5841 { "dim_max", &test_dim_max },
5842 { "affine", &test_aff },
5843 { "injective", &test_injective },
5844 { "schedule", &test_schedule },
5845 { "schedule tree grouping", &test_schedule_tree_group },
5846 { "tile", &test_tile },
5847 { "union_pw", &test_union_pw },
5848 { "parse", &test_parse },
5849 { "single-valued", &test_sv },
5850 { "affine hull", &test_affine_hull },
5851 { "coalesce", &test_coalesce },
5852 { "factorize", &test_factorize },
5853 { "subset", &test_subset },
5854 { "subtract", &test_subtract },
5855 { "lexmin", &test_lexmin },
5856 { "min", &test_min },
5857 { "gist", &test_gist },
5858 { "piecewise quasi-polynomials", &test_pwqp },
5859 { "lift", &test_lift },
5860 { "bound", &test_bound },
5861 { "union", &test_union },
5862 { "split periods", &test_split_periods },
5863 { "lexicographic order", &test_lex },
5864 { "bijectivity", &test_bijective },
5865 { "dataflow analysis", &test_dep },
5866 { "reading", &test_read },
5867 { "bounded", &test_bounded },
5868 { "construction", &test_construction },
5869 { "dimension manipulation", &test_dim },
5870 { "map application", &test_application },
5871 { "convex hull", &test_convex_hull },
5872 { "transitive closure", &test_closure },
5875 int main(int argc, char **argv)
5877 int i;
5878 struct isl_ctx *ctx;
5879 struct isl_options *options;
5881 srcdir = getenv("srcdir");
5882 assert(srcdir);
5884 options = isl_options_new_with_defaults();
5885 assert(options);
5886 argc = isl_options_parse(options, argc, argv, ISL_ARG_ALL);
5888 ctx = isl_ctx_alloc_with_options(&isl_options_args, options);
5889 for (i = 0; i < ARRAY_SIZE(tests); ++i) {
5890 printf("%s\n", tests[i].name);
5891 if (tests[i].fn(ctx) < 0)
5892 goto error;
5894 isl_ctx_free(ctx);
5895 return 0;
5896 error:
5897 isl_ctx_free(ctx);
5898 return -1;