2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2010 INRIA Saclay
4 * Copyright 2012-2013 Ecole Normale Superieure
5 * Copyright 2014 INRIA Rocquencourt
7 * Use of this software is governed by the MIT license
9 * Written by Sven Verdoolaege, K.U.Leuven, Departement
10 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
11 * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
12 * ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France
13 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
14 * and Inria Paris - Rocquencourt, Domaine de Voluceau - Rocquencourt,
15 * B.P. 105 - 78153 Le Chesnay, France
21 #include <isl_ctx_private.h>
22 #include <isl_map_private.h>
23 #include <isl_aff_private.h>
26 #include <isl_constraint_private.h>
27 #include <isl/polynomial.h>
28 #include <isl/union_map.h>
29 #include <isl_factorization.h>
30 #include <isl/schedule.h>
31 #include <isl_options_private.h>
32 #include <isl/vertices.h>
33 #include <isl/ast_build.h>
36 #include <isl_ast_build_expr.h>
37 #include <isl/options.h>
39 #define ARRAY_SIZE(array) (sizeof(array)/sizeof(*array))
43 static char *get_filename(isl_ctx
*ctx
, const char *name
, const char *suffix
) {
46 char *pattern
= "%s/test_inputs/%s.%s";
48 length
= strlen(pattern
) - 6 + strlen(srcdir
) + strlen(name
)
50 filename
= isl_alloc_array(ctx
, char, length
);
55 sprintf(filename
, pattern
, srcdir
, name
, suffix
);
60 void test_parse_map(isl_ctx
*ctx
, const char *str
)
64 map
= isl_map_read_from_str(ctx
, str
);
69 int test_parse_map_equal(isl_ctx
*ctx
, const char *str
, const char *str2
)
74 map
= isl_map_read_from_str(ctx
, str
);
75 map2
= isl_map_read_from_str(ctx
, str2
);
76 equal
= isl_map_is_equal(map
, map2
);
83 isl_die(ctx
, isl_error_unknown
, "maps not equal",
89 void test_parse_pwqp(isl_ctx
*ctx
, const char *str
)
91 isl_pw_qpolynomial
*pwqp
;
93 pwqp
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
95 isl_pw_qpolynomial_free(pwqp
);
98 static void test_parse_pwaff(isl_ctx
*ctx
, const char *str
)
102 pwaff
= isl_pw_aff_read_from_str(ctx
, str
);
104 isl_pw_aff_free(pwaff
);
107 int test_parse(struct isl_ctx
*ctx
)
110 const char *str
, *str2
;
112 str
= "{ [i] -> [-i] }";
113 map
= isl_map_read_from_str(ctx
, str
);
117 str
= "{ A[i] -> L[([i/3])] }";
118 map
= isl_map_read_from_str(ctx
, str
);
122 test_parse_map(ctx
, "{[[s] -> A[i]] -> [[s+1] -> A[i]]}");
123 test_parse_map(ctx
, "{ [p1, y1, y2] -> [2, y1, y2] : "
124 "p1 = 1 && (y1 <= y2 || y2 = 0) }");
126 str
= "{ [x,y] : [([x/2]+y)/3] >= 1 }";
127 str2
= "{ [x, y] : 2y >= 6 - x }";
128 if (test_parse_map_equal(ctx
, str
, str2
) < 0)
131 if (test_parse_map_equal(ctx
, "{ [x,y] : x <= min(y, 2*y+3) }",
132 "{ [x,y] : x <= y, 2*y + 3 }") < 0)
134 str
= "{ [x, y] : (y <= x and y >= -3) or (2y <= -3 + x and y <= -4) }";
135 if (test_parse_map_equal(ctx
, "{ [x,y] : x >= min(y, 2*y+3) }",
139 str
= "{[new,old] -> [new+1-2*[(new+1)/2],old+1-2*[(old+1)/2]]}";
140 map
= isl_map_read_from_str(ctx
, str
);
141 str
= "{ [new, old] -> [o0, o1] : "
142 "exists (e0 = [(-1 - new + o0)/2], e1 = [(-1 - old + o1)/2]: "
143 "2e0 = -1 - new + o0 and 2e1 = -1 - old + o1 and o0 >= 0 and "
144 "o0 <= 1 and o1 >= 0 and o1 <= 1) }";
145 map2
= isl_map_read_from_str(ctx
, str
);
146 assert(isl_map_is_equal(map
, map2
));
150 str
= "{[new,old] -> [new+1-2*[(new+1)/2],old+1-2*[(old+1)/2]]}";
151 map
= isl_map_read_from_str(ctx
, str
);
152 str
= "{[new,old] -> [(new+1)%2,(old+1)%2]}";
153 map2
= isl_map_read_from_str(ctx
, str
);
154 assert(isl_map_is_equal(map
, map2
));
158 str
= "[n] -> { [c1] : c1>=0 and c1<=floord(n-4,3) }";
159 str2
= "[n] -> { [c1] : c1 >= 0 and 3c1 <= -4 + n }";
160 if (test_parse_map_equal(ctx
, str
, str2
) < 0)
163 str
= "{ [i,j] -> [i] : i < j; [i,j] -> [j] : j <= i }";
164 str2
= "{ [i,j] -> [min(i,j)] }";
165 if (test_parse_map_equal(ctx
, str
, str2
) < 0)
168 str
= "{ [i,j] : i != j }";
169 str2
= "{ [i,j] : i < j or i > j }";
170 if (test_parse_map_equal(ctx
, str
, str2
) < 0)
173 str
= "{ [i,j] : (i+1)*2 >= j }";
174 str2
= "{ [i, j] : j <= 2 + 2i }";
175 if (test_parse_map_equal(ctx
, str
, str2
) < 0)
178 str
= "{ [i] -> [i > 0 ? 4 : 5] }";
179 str2
= "{ [i] -> [5] : i <= 0; [i] -> [4] : i >= 1 }";
180 if (test_parse_map_equal(ctx
, str
, str2
) < 0)
183 str
= "[N=2,M] -> { [i=[(M+N)/4]] }";
184 str2
= "[N, M] -> { [i] : N = 2 and 4i <= 2 + M and 4i >= -1 + M }";
185 if (test_parse_map_equal(ctx
, str
, str2
) < 0)
188 str
= "{ [x] : x >= 0 }";
189 str2
= "{ [x] : x-0 >= 0 }";
190 if (test_parse_map_equal(ctx
, str
, str2
) < 0)
193 str
= "{ [i] : ((i > 10)) }";
194 str2
= "{ [i] : i >= 11 }";
195 if (test_parse_map_equal(ctx
, str
, str2
) < 0)
198 str
= "{ [i] -> [0] }";
199 str2
= "{ [i] -> [0 * i] }";
200 if (test_parse_map_equal(ctx
, str
, str2
) < 0)
203 test_parse_pwqp(ctx
, "{ [i] -> i + [ (i + [i/3])/2 ] }");
204 test_parse_map(ctx
, "{ S1[i] -> [([i/10]),i%10] : 0 <= i <= 45 }");
205 test_parse_pwaff(ctx
, "{ [i] -> [i + 1] : i > 0; [a] -> [a] : a < 0 }");
206 test_parse_pwqp(ctx
, "{ [x] -> ([(x)/2] * [(x)/3]) }");
208 if (test_parse_map_equal(ctx
, "{ [a] -> [b] : (not false) }",
209 "{ [a] -> [b] : true }") < 0)
212 if (test_parse_map_equal(ctx
, "{ [i] : i/2 <= 5 }",
213 "{ [i] : i <= 10 }") < 0)
216 if (test_parse_map_equal(ctx
, "{Sym=[n] [i] : i <= n }",
217 "[n] -> { [i] : i <= n }") < 0)
220 if (test_parse_map_equal(ctx
, "{ [*] }", "{ [a] }") < 0)
223 if (test_parse_map_equal(ctx
, "{ [i] : 2*floor(i/2) = i }",
224 "{ [i] : exists a : i = 2 a }") < 0)
227 if (test_parse_map_equal(ctx
, "{ [a] -> [b] : a = 5 implies b = 5 }",
228 "{ [a] -> [b] : a != 5 or b = 5 }") < 0)
231 if (test_parse_map_equal(ctx
, "{ [a] -> [a - 1 : a > 0] }",
232 "{ [a] -> [a - 1] : a > 0 }") < 0)
234 if (test_parse_map_equal(ctx
,
235 "{ [a] -> [a - 1 : a > 0; a : a <= 0] }",
236 "{ [a] -> [a - 1] : a > 0; [a] -> [a] : a <= 0 }") < 0)
238 if (test_parse_map_equal(ctx
,
239 "{ [a] -> [(a) * 2 : a >= 0; 0 : a < 0] }",
240 "{ [a] -> [2a] : a >= 0; [a] -> [0] : a < 0 }") < 0)
242 if (test_parse_map_equal(ctx
,
243 "{ [a] -> [(a * 2) : a >= 0; 0 : a < 0] }",
244 "{ [a] -> [2a] : a >= 0; [a] -> [0] : a < 0 }") < 0)
246 if (test_parse_map_equal(ctx
,
247 "{ [a] -> [(a * 2 : a >= 0); 0 : a < 0] }",
248 "{ [a] -> [2a] : a >= 0; [a] -> [0] : a < 0 }") < 0)
250 if (test_parse_map_equal(ctx
,
251 "{ [a] -> [(a * 2 : a >= 0; 0 : a < 0)] }",
252 "{ [a] -> [2a] : a >= 0; [a] -> [0] : a < 0 }") < 0)
258 void test_read(struct isl_ctx
*ctx
)
262 struct isl_basic_set
*bset1
, *bset2
;
263 const char *str
= "{[y]: Exists ( alpha : 2alpha = y)}";
265 filename
= get_filename(ctx
, "set", "omega");
267 input
= fopen(filename
, "r");
270 bset1
= isl_basic_set_read_from_file(ctx
, input
);
271 bset2
= isl_basic_set_read_from_str(ctx
, str
);
273 assert(isl_basic_set_is_equal(bset1
, bset2
) == 1);
275 isl_basic_set_free(bset1
);
276 isl_basic_set_free(bset2
);
282 void test_bounded(struct isl_ctx
*ctx
)
287 set
= isl_set_read_from_str(ctx
, "[n] -> {[i] : 0 <= i <= n }");
288 bounded
= isl_set_is_bounded(set
);
292 set
= isl_set_read_from_str(ctx
, "{[n, i] : 0 <= i <= n }");
293 bounded
= isl_set_is_bounded(set
);
297 set
= isl_set_read_from_str(ctx
, "[n] -> {[i] : i <= n }");
298 bounded
= isl_set_is_bounded(set
);
303 /* Construct the basic set { [i] : 5 <= i <= N } */
304 void test_construction(struct isl_ctx
*ctx
)
309 struct isl_basic_set
*bset
;
310 struct isl_constraint
*c
;
314 dim
= isl_space_set_alloc(ctx
, 1, 1);
315 bset
= isl_basic_set_universe(isl_space_copy(dim
));
316 ls
= isl_local_space_from_space(dim
);
318 c
= isl_inequality_alloc(isl_local_space_copy(ls
));
319 isl_int_set_si(v
, -1);
320 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
321 isl_int_set_si(v
, 1);
322 isl_constraint_set_coefficient(c
, isl_dim_param
, 0, v
);
323 bset
= isl_basic_set_add_constraint(bset
, c
);
325 c
= isl_inequality_alloc(isl_local_space_copy(ls
));
326 isl_int_set_si(v
, 1);
327 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
328 isl_int_set_si(v
, -5);
329 isl_constraint_set_constant(c
, v
);
330 bset
= isl_basic_set_add_constraint(bset
, c
);
332 isl_local_space_free(ls
);
333 isl_basic_set_free(bset
);
338 void test_dim(struct isl_ctx
*ctx
)
341 isl_map
*map1
, *map2
;
343 map1
= isl_map_read_from_str(ctx
,
344 "[n] -> { [i] -> [j] : exists (a = [i/10] : i - 10a <= n ) }");
345 map1
= isl_map_add_dims(map1
, isl_dim_in
, 1);
346 map2
= isl_map_read_from_str(ctx
,
347 "[n] -> { [i,k] -> [j] : exists (a = [i/10] : i - 10a <= n ) }");
348 assert(isl_map_is_equal(map1
, map2
));
351 map1
= isl_map_project_out(map1
, isl_dim_in
, 0, 1);
352 map2
= isl_map_read_from_str(ctx
, "[n] -> { [i] -> [j] : n >= 0 }");
353 assert(isl_map_is_equal(map1
, map2
));
358 str
= "[n] -> { [i] -> [] : exists a : 0 <= i <= n and i = 2 a }";
359 map1
= isl_map_read_from_str(ctx
, str
);
360 str
= "{ [i] -> [j] : exists a : 0 <= i <= j and i = 2 a }";
361 map2
= isl_map_read_from_str(ctx
, str
);
362 map1
= isl_map_move_dims(map1
, isl_dim_out
, 0, isl_dim_param
, 0, 1);
363 assert(isl_map_is_equal(map1
, map2
));
370 __isl_give isl_val
*(*op
)(__isl_take isl_val
*v
);
374 { &isl_val_neg
, "0", "0" },
375 { &isl_val_abs
, "0", "0" },
376 { &isl_val_2exp
, "0", "1" },
377 { &isl_val_floor
, "0", "0" },
378 { &isl_val_ceil
, "0", "0" },
379 { &isl_val_neg
, "1", "-1" },
380 { &isl_val_neg
, "-1", "1" },
381 { &isl_val_neg
, "1/2", "-1/2" },
382 { &isl_val_neg
, "-1/2", "1/2" },
383 { &isl_val_neg
, "infty", "-infty" },
384 { &isl_val_neg
, "-infty", "infty" },
385 { &isl_val_neg
, "NaN", "NaN" },
386 { &isl_val_abs
, "1", "1" },
387 { &isl_val_abs
, "-1", "1" },
388 { &isl_val_abs
, "1/2", "1/2" },
389 { &isl_val_abs
, "-1/2", "1/2" },
390 { &isl_val_abs
, "infty", "infty" },
391 { &isl_val_abs
, "-infty", "infty" },
392 { &isl_val_abs
, "NaN", "NaN" },
393 { &isl_val_floor
, "1", "1" },
394 { &isl_val_floor
, "-1", "-1" },
395 { &isl_val_floor
, "1/2", "0" },
396 { &isl_val_floor
, "-1/2", "-1" },
397 { &isl_val_floor
, "infty", "infty" },
398 { &isl_val_floor
, "-infty", "-infty" },
399 { &isl_val_floor
, "NaN", "NaN" },
400 { &isl_val_ceil
, "1", "1" },
401 { &isl_val_ceil
, "-1", "-1" },
402 { &isl_val_ceil
, "1/2", "1" },
403 { &isl_val_ceil
, "-1/2", "0" },
404 { &isl_val_ceil
, "infty", "infty" },
405 { &isl_val_ceil
, "-infty", "-infty" },
406 { &isl_val_ceil
, "NaN", "NaN" },
407 { &isl_val_2exp
, "-3", "1/8" },
408 { &isl_val_2exp
, "-1", "1/2" },
409 { &isl_val_2exp
, "1", "2" },
410 { &isl_val_2exp
, "2", "4" },
411 { &isl_val_2exp
, "3", "8" },
414 /* Perform some basic tests of unary operations on isl_val objects.
416 static int test_un_val(isl_ctx
*ctx
)
420 __isl_give isl_val
*(*fn
)(__isl_take isl_val
*v
);
423 for (i
= 0; i
< ARRAY_SIZE(val_un_tests
); ++i
) {
424 v
= isl_val_read_from_str(ctx
, val_un_tests
[i
].arg
);
425 res
= isl_val_read_from_str(ctx
, val_un_tests
[i
].res
);
426 fn
= val_un_tests
[i
].op
;
428 if (isl_val_is_nan(res
))
429 ok
= isl_val_is_nan(v
);
431 ok
= isl_val_eq(v
, res
);
437 isl_die(ctx
, isl_error_unknown
,
438 "unexpected result", return -1);
445 __isl_give isl_val
*(*fn
)(__isl_take isl_val
*v1
,
446 __isl_take isl_val
*v2
);
448 ['+'] = { &isl_val_add
},
449 ['-'] = { &isl_val_sub
},
450 ['*'] = { &isl_val_mul
},
451 ['/'] = { &isl_val_div
},
452 ['g'] = { &isl_val_gcd
},
453 ['m'] = { &isl_val_min
},
454 ['M'] = { &isl_val_max
},
462 } val_bin_tests
[] = {
463 { "0", '+', "0", "0" },
464 { "1", '+', "0", "1" },
465 { "1", '+', "1", "2" },
466 { "1", '-', "1", "0" },
467 { "1", '*', "1", "1" },
468 { "1", '/', "1", "1" },
469 { "2", '*', "3", "6" },
470 { "2", '*', "1/2", "1" },
471 { "2", '*', "1/3", "2/3" },
472 { "2/3", '*', "3/5", "2/5" },
473 { "2/3", '*', "7/5", "14/15" },
474 { "2", '/', "1/2", "4" },
475 { "-2", '/', "-1/2", "4" },
476 { "-2", '/', "1/2", "-4" },
477 { "2", '/', "-1/2", "-4" },
478 { "2", '/', "2", "1" },
479 { "2", '/', "3", "2/3" },
480 { "2/3", '/', "5/3", "2/5" },
481 { "2/3", '/', "5/7", "14/15" },
482 { "0", '/', "0", "NaN" },
483 { "42", '/', "0", "NaN" },
484 { "-42", '/', "0", "NaN" },
485 { "infty", '/', "0", "NaN" },
486 { "-infty", '/', "0", "NaN" },
487 { "NaN", '/', "0", "NaN" },
488 { "0", '/', "NaN", "NaN" },
489 { "42", '/', "NaN", "NaN" },
490 { "-42", '/', "NaN", "NaN" },
491 { "infty", '/', "NaN", "NaN" },
492 { "-infty", '/', "NaN", "NaN" },
493 { "NaN", '/', "NaN", "NaN" },
494 { "0", '/', "infty", "0" },
495 { "42", '/', "infty", "0" },
496 { "-42", '/', "infty", "0" },
497 { "infty", '/', "infty", "NaN" },
498 { "-infty", '/', "infty", "NaN" },
499 { "NaN", '/', "infty", "NaN" },
500 { "0", '/', "-infty", "0" },
501 { "42", '/', "-infty", "0" },
502 { "-42", '/', "-infty", "0" },
503 { "infty", '/', "-infty", "NaN" },
504 { "-infty", '/', "-infty", "NaN" },
505 { "NaN", '/', "-infty", "NaN" },
506 { "1", '-', "1/3", "2/3" },
507 { "1/3", '+', "1/2", "5/6" },
508 { "1/2", '+', "1/2", "1" },
509 { "3/4", '-', "1/4", "1/2" },
510 { "1/2", '-', "1/3", "1/6" },
511 { "infty", '+', "42", "infty" },
512 { "infty", '+', "infty", "infty" },
513 { "42", '+', "infty", "infty" },
514 { "infty", '-', "infty", "NaN" },
515 { "infty", '*', "infty", "infty" },
516 { "infty", '*', "-infty", "-infty" },
517 { "-infty", '*', "infty", "-infty" },
518 { "-infty", '*', "-infty", "infty" },
519 { "0", '*', "infty", "NaN" },
520 { "1", '*', "infty", "infty" },
521 { "infty", '*', "0", "NaN" },
522 { "infty", '*', "42", "infty" },
523 { "42", '-', "infty", "-infty" },
524 { "infty", '+', "-infty", "NaN" },
525 { "4", 'g', "6", "2" },
526 { "5", 'g', "6", "1" },
527 { "42", 'm', "3", "3" },
528 { "42", 'M', "3", "42" },
529 { "3", 'm', "42", "3" },
530 { "3", 'M', "42", "42" },
531 { "42", 'm', "infty", "42" },
532 { "42", 'M', "infty", "infty" },
533 { "42", 'm', "-infty", "-infty" },
534 { "42", 'M', "-infty", "42" },
535 { "42", 'm', "NaN", "NaN" },
536 { "42", 'M', "NaN", "NaN" },
537 { "infty", 'm', "-infty", "-infty" },
538 { "infty", 'M', "-infty", "infty" },
541 /* Perform some basic tests of binary operations on isl_val objects.
543 static int test_bin_val(isl_ctx
*ctx
)
546 isl_val
*v1
, *v2
, *res
;
547 __isl_give isl_val
*(*fn
)(__isl_take isl_val
*v1
,
548 __isl_take isl_val
*v2
);
551 for (i
= 0; i
< ARRAY_SIZE(val_bin_tests
); ++i
) {
552 v1
= isl_val_read_from_str(ctx
, val_bin_tests
[i
].arg1
);
553 v2
= isl_val_read_from_str(ctx
, val_bin_tests
[i
].arg2
);
554 res
= isl_val_read_from_str(ctx
, val_bin_tests
[i
].res
);
555 fn
= val_bin_op
[val_bin_tests
[i
].op
].fn
;
557 if (isl_val_is_nan(res
))
558 ok
= isl_val_is_nan(v1
);
560 ok
= isl_val_eq(v1
, res
);
566 isl_die(ctx
, isl_error_unknown
,
567 "unexpected result", return -1);
573 /* Perform some basic tests on isl_val objects.
575 static int test_val(isl_ctx
*ctx
)
577 if (test_un_val(ctx
) < 0)
579 if (test_bin_val(ctx
) < 0)
584 static int test_div(isl_ctx
*ctx
)
593 struct isl_basic_set
*bset
;
594 struct isl_constraint
*c
;
599 dim
= isl_space_set_alloc(ctx
, 0, 3);
600 bset
= isl_basic_set_universe(isl_space_copy(dim
));
601 ls
= isl_local_space_from_space(dim
);
603 c
= isl_equality_alloc(isl_local_space_copy(ls
));
604 isl_int_set_si(v
, -1);
605 isl_constraint_set_constant(c
, v
);
606 isl_int_set_si(v
, 1);
607 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
608 isl_int_set_si(v
, 3);
609 isl_constraint_set_coefficient(c
, isl_dim_set
, 1, v
);
610 bset
= isl_basic_set_add_constraint(bset
, c
);
612 c
= isl_equality_alloc(isl_local_space_copy(ls
));
613 isl_int_set_si(v
, 1);
614 isl_constraint_set_constant(c
, v
);
615 isl_int_set_si(v
, -1);
616 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
617 isl_int_set_si(v
, 3);
618 isl_constraint_set_coefficient(c
, isl_dim_set
, 2, v
);
619 bset
= isl_basic_set_add_constraint(bset
, c
);
621 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 1, 2);
623 assert(bset
&& bset
->n_div
== 1);
624 isl_local_space_free(ls
);
625 isl_basic_set_free(bset
);
628 dim
= isl_space_set_alloc(ctx
, 0, 3);
629 bset
= isl_basic_set_universe(isl_space_copy(dim
));
630 ls
= isl_local_space_from_space(dim
);
632 c
= isl_equality_alloc(isl_local_space_copy(ls
));
633 isl_int_set_si(v
, 1);
634 isl_constraint_set_constant(c
, v
);
635 isl_int_set_si(v
, -1);
636 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
637 isl_int_set_si(v
, 3);
638 isl_constraint_set_coefficient(c
, isl_dim_set
, 1, v
);
639 bset
= isl_basic_set_add_constraint(bset
, c
);
641 c
= isl_equality_alloc(isl_local_space_copy(ls
));
642 isl_int_set_si(v
, -1);
643 isl_constraint_set_constant(c
, v
);
644 isl_int_set_si(v
, 1);
645 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
646 isl_int_set_si(v
, 3);
647 isl_constraint_set_coefficient(c
, isl_dim_set
, 2, v
);
648 bset
= isl_basic_set_add_constraint(bset
, c
);
650 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 1, 2);
652 assert(bset
&& bset
->n_div
== 1);
653 isl_local_space_free(ls
);
654 isl_basic_set_free(bset
);
657 dim
= isl_space_set_alloc(ctx
, 0, 3);
658 bset
= isl_basic_set_universe(isl_space_copy(dim
));
659 ls
= isl_local_space_from_space(dim
);
661 c
= isl_equality_alloc(isl_local_space_copy(ls
));
662 isl_int_set_si(v
, 1);
663 isl_constraint_set_constant(c
, v
);
664 isl_int_set_si(v
, -1);
665 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
666 isl_int_set_si(v
, 3);
667 isl_constraint_set_coefficient(c
, isl_dim_set
, 1, v
);
668 bset
= isl_basic_set_add_constraint(bset
, c
);
670 c
= isl_equality_alloc(isl_local_space_copy(ls
));
671 isl_int_set_si(v
, -3);
672 isl_constraint_set_constant(c
, v
);
673 isl_int_set_si(v
, 1);
674 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
675 isl_int_set_si(v
, 4);
676 isl_constraint_set_coefficient(c
, isl_dim_set
, 2, v
);
677 bset
= isl_basic_set_add_constraint(bset
, c
);
679 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 1, 2);
681 assert(bset
&& bset
->n_div
== 1);
682 isl_local_space_free(ls
);
683 isl_basic_set_free(bset
);
686 dim
= isl_space_set_alloc(ctx
, 0, 3);
687 bset
= isl_basic_set_universe(isl_space_copy(dim
));
688 ls
= isl_local_space_from_space(dim
);
690 c
= isl_equality_alloc(isl_local_space_copy(ls
));
691 isl_int_set_si(v
, 2);
692 isl_constraint_set_constant(c
, v
);
693 isl_int_set_si(v
, -1);
694 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
695 isl_int_set_si(v
, 3);
696 isl_constraint_set_coefficient(c
, isl_dim_set
, 1, v
);
697 bset
= isl_basic_set_add_constraint(bset
, c
);
699 c
= isl_equality_alloc(isl_local_space_copy(ls
));
700 isl_int_set_si(v
, -1);
701 isl_constraint_set_constant(c
, v
);
702 isl_int_set_si(v
, 1);
703 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
704 isl_int_set_si(v
, 6);
705 isl_constraint_set_coefficient(c
, isl_dim_set
, 2, v
);
706 bset
= isl_basic_set_add_constraint(bset
, c
);
708 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 1, 2);
710 assert(isl_basic_set_is_empty(bset
));
711 isl_local_space_free(ls
);
712 isl_basic_set_free(bset
);
715 dim
= isl_space_set_alloc(ctx
, 0, 3);
716 bset
= isl_basic_set_universe(isl_space_copy(dim
));
717 ls
= isl_local_space_from_space(dim
);
719 c
= isl_equality_alloc(isl_local_space_copy(ls
));
720 isl_int_set_si(v
, -1);
721 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
722 isl_int_set_si(v
, 3);
723 isl_constraint_set_coefficient(c
, isl_dim_set
, 2, v
);
724 bset
= isl_basic_set_add_constraint(bset
, c
);
726 c
= isl_equality_alloc(isl_local_space_copy(ls
));
727 isl_int_set_si(v
, 1);
728 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
729 isl_int_set_si(v
, -3);
730 isl_constraint_set_coefficient(c
, isl_dim_set
, 1, v
);
731 bset
= isl_basic_set_add_constraint(bset
, c
);
733 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 2, 1);
735 assert(bset
&& bset
->n_div
== 0);
736 isl_basic_set_free(bset
);
737 isl_local_space_free(ls
);
740 dim
= isl_space_set_alloc(ctx
, 0, 3);
741 bset
= isl_basic_set_universe(isl_space_copy(dim
));
742 ls
= isl_local_space_from_space(dim
);
744 c
= isl_equality_alloc(isl_local_space_copy(ls
));
745 isl_int_set_si(v
, -1);
746 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
747 isl_int_set_si(v
, 6);
748 isl_constraint_set_coefficient(c
, isl_dim_set
, 2, v
);
749 bset
= isl_basic_set_add_constraint(bset
, c
);
751 c
= isl_equality_alloc(isl_local_space_copy(ls
));
752 isl_int_set_si(v
, 1);
753 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
754 isl_int_set_si(v
, -3);
755 isl_constraint_set_coefficient(c
, isl_dim_set
, 1, v
);
756 bset
= isl_basic_set_add_constraint(bset
, c
);
758 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 2, 1);
760 assert(bset
&& bset
->n_div
== 1);
761 isl_basic_set_free(bset
);
762 isl_local_space_free(ls
);
765 /* This test is a bit tricky. We set up an equality
767 * Normalization of divs creates _two_ divs
770 * Afterwards e0 is removed again because it has coefficient -1
771 * and we end up with the original equality and div again.
772 * Perhaps we can avoid the introduction of this temporary div.
774 dim
= isl_space_set_alloc(ctx
, 0, 4);
775 bset
= isl_basic_set_universe(isl_space_copy(dim
));
776 ls
= isl_local_space_from_space(dim
);
778 c
= isl_equality_alloc(isl_local_space_copy(ls
));
779 isl_int_set_si(v
, -1);
780 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
781 isl_int_set_si(v
, -3);
782 isl_constraint_set_coefficient(c
, isl_dim_set
, 1, v
);
783 isl_int_set_si(v
, -3);
784 isl_constraint_set_coefficient(c
, isl_dim_set
, 2, v
);
785 isl_int_set_si(v
, 6);
786 isl_constraint_set_coefficient(c
, isl_dim_set
, 3, v
);
787 bset
= isl_basic_set_add_constraint(bset
, c
);
789 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 3, 1);
791 /* Test disabled for now */
793 assert(bset && bset->n_div == 1);
795 isl_local_space_free(ls
);
796 isl_basic_set_free(bset
);
799 dim
= isl_space_set_alloc(ctx
, 0, 5);
800 bset
= isl_basic_set_universe(isl_space_copy(dim
));
801 ls
= isl_local_space_from_space(dim
);
803 c
= isl_equality_alloc(isl_local_space_copy(ls
));
804 isl_int_set_si(v
, -1);
805 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
806 isl_int_set_si(v
, -3);
807 isl_constraint_set_coefficient(c
, isl_dim_set
, 1, v
);
808 isl_int_set_si(v
, -3);
809 isl_constraint_set_coefficient(c
, isl_dim_set
, 3, v
);
810 isl_int_set_si(v
, 6);
811 isl_constraint_set_coefficient(c
, isl_dim_set
, 4, v
);
812 bset
= isl_basic_set_add_constraint(bset
, c
);
814 c
= isl_equality_alloc(isl_local_space_copy(ls
));
815 isl_int_set_si(v
, -1);
816 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
817 isl_int_set_si(v
, 1);
818 isl_constraint_set_coefficient(c
, isl_dim_set
, 2, v
);
819 isl_int_set_si(v
, 1);
820 isl_constraint_set_constant(c
, v
);
821 bset
= isl_basic_set_add_constraint(bset
, c
);
823 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 4, 1);
825 /* Test disabled for now */
827 assert(bset && bset->n_div == 1);
829 isl_local_space_free(ls
);
830 isl_basic_set_free(bset
);
833 dim
= isl_space_set_alloc(ctx
, 0, 4);
834 bset
= isl_basic_set_universe(isl_space_copy(dim
));
835 ls
= isl_local_space_from_space(dim
);
837 c
= isl_equality_alloc(isl_local_space_copy(ls
));
838 isl_int_set_si(v
, 1);
839 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
840 isl_int_set_si(v
, -1);
841 isl_constraint_set_coefficient(c
, isl_dim_set
, 1, v
);
842 isl_int_set_si(v
, -2);
843 isl_constraint_set_coefficient(c
, isl_dim_set
, 2, v
);
844 bset
= isl_basic_set_add_constraint(bset
, c
);
846 c
= isl_equality_alloc(isl_local_space_copy(ls
));
847 isl_int_set_si(v
, -1);
848 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
849 isl_int_set_si(v
, 3);
850 isl_constraint_set_coefficient(c
, isl_dim_set
, 3, v
);
851 isl_int_set_si(v
, 2);
852 isl_constraint_set_constant(c
, v
);
853 bset
= isl_basic_set_add_constraint(bset
, c
);
855 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 2, 2);
857 bset
= isl_basic_set_fix_si(bset
, isl_dim_set
, 0, 2);
859 assert(!isl_basic_set_is_empty(bset
));
861 isl_local_space_free(ls
);
862 isl_basic_set_free(bset
);
865 dim
= isl_space_set_alloc(ctx
, 0, 3);
866 bset
= isl_basic_set_universe(isl_space_copy(dim
));
867 ls
= isl_local_space_from_space(dim
);
869 c
= isl_equality_alloc(isl_local_space_copy(ls
));
870 isl_int_set_si(v
, 1);
871 isl_constraint_set_coefficient(c
, isl_dim_set
, 0, v
);
872 isl_int_set_si(v
, -2);
873 isl_constraint_set_coefficient(c
, isl_dim_set
, 2, v
);
874 bset
= isl_basic_set_add_constraint(bset
, c
);
876 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 2, 1);
878 bset
= isl_basic_set_fix_si(bset
, isl_dim_set
, 0, 2);
880 isl_local_space_free(ls
);
881 isl_basic_set_free(bset
);
885 str
= "{ [i] : exists (e0, e1: 3e1 >= 1 + 2e0 and "
886 "8e1 <= -1 + 5i - 5e0 and 2e1 >= 1 + 2i - 5e0) }";
887 set
= isl_set_read_from_str(ctx
, str
);
888 set
= isl_set_compute_divs(set
);
893 str
= "{ [i,j] : 2*[i/2] + 3 * [j/4] <= 10 and 2 i = j }";
894 bset
= isl_basic_set_read_from_str(ctx
, str
);
895 n
= isl_basic_set_dim(bset
, isl_dim_div
);
896 isl_basic_set_free(bset
);
900 isl_die(ctx
, isl_error_unknown
,
901 "expecting no existentials", return -1);
903 str
= "{ [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }";
904 set
= isl_set_read_from_str(ctx
, str
);
905 set
= isl_set_remove_divs_involving_dims(set
, isl_dim_set
, 0, 2);
906 set
= isl_set_fix_si(set
, isl_dim_set
, 2, -3);
907 empty
= isl_set_is_empty(set
);
912 isl_die(ctx
, isl_error_unknown
,
913 "result not as accurate as expected", return -1);
918 void test_application_case(struct isl_ctx
*ctx
, const char *name
)
922 struct isl_basic_set
*bset1
, *bset2
;
923 struct isl_basic_map
*bmap
;
925 filename
= get_filename(ctx
, name
, "omega");
927 input
= fopen(filename
, "r");
930 bset1
= isl_basic_set_read_from_file(ctx
, input
);
931 bmap
= isl_basic_map_read_from_file(ctx
, input
);
933 bset1
= isl_basic_set_apply(bset1
, bmap
);
935 bset2
= isl_basic_set_read_from_file(ctx
, input
);
937 assert(isl_basic_set_is_equal(bset1
, bset2
) == 1);
939 isl_basic_set_free(bset1
);
940 isl_basic_set_free(bset2
);
946 void test_application(struct isl_ctx
*ctx
)
948 test_application_case(ctx
, "application");
949 test_application_case(ctx
, "application2");
952 void test_affine_hull_case(struct isl_ctx
*ctx
, const char *name
)
956 struct isl_basic_set
*bset1
, *bset2
;
958 filename
= get_filename(ctx
, name
, "polylib");
960 input
= fopen(filename
, "r");
963 bset1
= isl_basic_set_read_from_file(ctx
, input
);
964 bset2
= isl_basic_set_read_from_file(ctx
, input
);
966 bset1
= isl_basic_set_affine_hull(bset1
);
968 assert(isl_basic_set_is_equal(bset1
, bset2
) == 1);
970 isl_basic_set_free(bset1
);
971 isl_basic_set_free(bset2
);
977 int test_affine_hull(struct isl_ctx
*ctx
)
981 isl_basic_set
*bset
, *bset2
;
985 test_affine_hull_case(ctx
, "affine2");
986 test_affine_hull_case(ctx
, "affine");
987 test_affine_hull_case(ctx
, "affine3");
989 str
= "[m] -> { [i0] : exists (e0, e1: e1 <= 1 + i0 and "
990 "m >= 3 and 4i0 <= 2 + m and e1 >= i0 and "
991 "e1 >= 0 and e1 <= 2 and e1 >= 1 + 2e0 and "
992 "2e1 <= 1 + m + 4e0 and 2e1 >= 2 - m + 4i0 - 4e0) }";
993 set
= isl_set_read_from_str(ctx
, str
);
994 bset
= isl_set_affine_hull(set
);
995 n
= isl_basic_set_dim(bset
, isl_dim_div
);
996 isl_basic_set_free(bset
);
998 isl_die(ctx
, isl_error_unknown
, "not expecting any divs",
1001 /* Check that isl_map_affine_hull is not confused by
1002 * the reordering of divs in isl_map_align_divs.
1004 str
= "{ [a, b, c, 0] : exists (e0 = [(b)/32], e1 = [(c)/32]: "
1005 "32e0 = b and 32e1 = c); "
1006 "[a, 0, c, 0] : exists (e0 = [(c)/32]: 32e0 = c) }";
1007 set
= isl_set_read_from_str(ctx
, str
);
1008 bset
= isl_set_affine_hull(set
);
1009 isl_basic_set_free(bset
);
1013 str
= "{ [a] : exists e0, e1, e2: 32e1 = 31 + 31a + 31e0 and "
1014 "32e2 = 31 + 31e0 }";
1015 set
= isl_set_read_from_str(ctx
, str
);
1016 bset
= isl_set_affine_hull(set
);
1017 str
= "{ [a] : exists e : a = 32 e }";
1018 bset2
= isl_basic_set_read_from_str(ctx
, str
);
1019 subset
= isl_basic_set_is_subset(bset
, bset2
);
1020 isl_basic_set_free(bset
);
1021 isl_basic_set_free(bset2
);
1025 isl_die(ctx
, isl_error_unknown
, "not as accurate as expected",
1031 void test_convex_hull_case(struct isl_ctx
*ctx
, const char *name
)
1035 struct isl_basic_set
*bset1
, *bset2
;
1036 struct isl_set
*set
;
1038 filename
= get_filename(ctx
, name
, "polylib");
1040 input
= fopen(filename
, "r");
1043 bset1
= isl_basic_set_read_from_file(ctx
, input
);
1044 bset2
= isl_basic_set_read_from_file(ctx
, input
);
1046 set
= isl_basic_set_union(bset1
, bset2
);
1047 bset1
= isl_set_convex_hull(set
);
1049 bset2
= isl_basic_set_read_from_file(ctx
, input
);
1051 assert(isl_basic_set_is_equal(bset1
, bset2
) == 1);
1053 isl_basic_set_free(bset1
);
1054 isl_basic_set_free(bset2
);
1063 } convex_hull_tests
[] = {
1064 { "{ [i0, i1, i2] : (i2 = 1 and i0 = 0 and i1 >= 0) or "
1065 "(i0 = 1 and i1 = 0 and i2 = 1) or "
1066 "(i0 = 0 and i1 = 0 and i2 = 0) }",
1067 "{ [i0, i1, i2] : i0 >= 0 and i2 >= i0 and i2 <= 1 and i1 >= 0 }" },
1068 { "[n] -> { [i0, i1, i0] : i0 <= -4 + n; "
1069 "[i0, i0, i2] : n = 6 and i0 >= 0 and i2 <= 7 - i0 and "
1070 "i2 <= 5 and i2 >= 4; "
1071 "[3, i1, 3] : n = 5 and i1 <= 2 and i1 >= 0 }",
1072 "[n] -> { [i0, i1, i2] : i2 <= -1 + n and 2i2 <= -6 + 3n - i0 and "
1073 "i2 <= 5 + i0 and i2 >= i0 }" },
1074 { "{ [x, y] : 3y <= 2x and y >= -2 + 2x and 2y >= 2 - x }",
1075 "{ [x, y] : 1 = 0 }" },
1078 void test_convex_hull_algo(struct isl_ctx
*ctx
, int convex
)
1081 int orig_convex
= ctx
->opt
->convex
;
1082 ctx
->opt
->convex
= convex
;
1084 test_convex_hull_case(ctx
, "convex0");
1085 test_convex_hull_case(ctx
, "convex1");
1086 test_convex_hull_case(ctx
, "convex2");
1087 test_convex_hull_case(ctx
, "convex3");
1088 test_convex_hull_case(ctx
, "convex4");
1089 test_convex_hull_case(ctx
, "convex5");
1090 test_convex_hull_case(ctx
, "convex6");
1091 test_convex_hull_case(ctx
, "convex7");
1092 test_convex_hull_case(ctx
, "convex8");
1093 test_convex_hull_case(ctx
, "convex9");
1094 test_convex_hull_case(ctx
, "convex10");
1095 test_convex_hull_case(ctx
, "convex11");
1096 test_convex_hull_case(ctx
, "convex12");
1097 test_convex_hull_case(ctx
, "convex13");
1098 test_convex_hull_case(ctx
, "convex14");
1099 test_convex_hull_case(ctx
, "convex15");
1101 for (i
= 0; i
< ARRAY_SIZE(convex_hull_tests
); ++i
) {
1102 isl_set
*set1
, *set2
;
1104 set1
= isl_set_read_from_str(ctx
, convex_hull_tests
[i
].set
);
1105 set2
= isl_set_read_from_str(ctx
, convex_hull_tests
[i
].hull
);
1106 set1
= isl_set_from_basic_set(isl_set_convex_hull(set1
));
1107 assert(isl_set_is_equal(set1
, set2
));
1112 ctx
->opt
->convex
= orig_convex
;
1115 void test_convex_hull(struct isl_ctx
*ctx
)
1117 test_convex_hull_algo(ctx
, ISL_CONVEX_HULL_FM
);
1118 test_convex_hull_algo(ctx
, ISL_CONVEX_HULL_WRAP
);
1121 void test_gist_case(struct isl_ctx
*ctx
, const char *name
)
1125 struct isl_basic_set
*bset1
, *bset2
;
1127 filename
= get_filename(ctx
, name
, "polylib");
1129 input
= fopen(filename
, "r");
1132 bset1
= isl_basic_set_read_from_file(ctx
, input
);
1133 bset2
= isl_basic_set_read_from_file(ctx
, input
);
1135 bset1
= isl_basic_set_gist(bset1
, bset2
);
1137 bset2
= isl_basic_set_read_from_file(ctx
, input
);
1139 assert(isl_basic_set_is_equal(bset1
, bset2
) == 1);
1141 isl_basic_set_free(bset1
);
1142 isl_basic_set_free(bset2
);
1150 const char *context
;
1153 { "{ [a, b, c] : a <= 15 and a >= 1 }",
1154 "{ [a, b, c] : exists (e0 = floor((-1 + a)/16): a >= 1 and "
1155 "c <= 30 and 32e0 >= -62 + 2a + 2b - c and b >= 0) }",
1156 "{ [a, b, c] : a <= 15 }" },
1157 { "{ : }", "{ : 1 = 0 }", "{ : }" },
1158 { "{ : 1 = 0 }", "{ : 1 = 0 }", "{ : }" },
1159 { "[M] -> { [x] : exists (e0 = floor((-2 + x)/3): 3e0 = -2 + x) }",
1160 "[M] -> { [3M] }" , "[M] -> { [x] : 1 = 0 }" },
1163 static int test_gist(struct isl_ctx
*ctx
)
1167 isl_basic_set
*bset1
, *bset2
;
1168 isl_map
*map1
, *map2
;
1171 for (i
= 0; i
< ARRAY_SIZE(gist_tests
); ++i
) {
1173 isl_basic_set
*copy
;
1175 bset1
= isl_basic_set_read_from_str(ctx
, gist_tests
[i
].set
);
1176 bset2
= isl_basic_set_read_from_str(ctx
, gist_tests
[i
].context
);
1177 copy
= isl_basic_set_copy(bset1
);
1178 bset1
= isl_basic_set_gist(bset1
, bset2
);
1179 bset2
= isl_basic_set_read_from_str(ctx
, gist_tests
[i
].gist
);
1180 equal
= isl_basic_set_is_equal(bset1
, bset2
);
1181 isl_basic_set_free(bset1
);
1182 isl_basic_set_free(bset2
);
1183 bset1
= isl_basic_set_read_from_str(ctx
, gist_tests
[i
].set
);
1184 equal_input
= isl_basic_set_is_equal(bset1
, copy
);
1185 isl_basic_set_free(bset1
);
1186 isl_basic_set_free(copy
);
1187 if (equal
< 0 || equal_input
< 0)
1190 isl_die(ctx
, isl_error_unknown
,
1191 "incorrect gist result", return -1);
1193 isl_die(ctx
, isl_error_unknown
,
1194 "gist modified input", return -1);
1197 test_gist_case(ctx
, "gist1");
1199 str
= "[p0, p2, p3, p5, p6, p10] -> { [] : "
1200 "exists (e0 = [(15 + p0 + 15p6 + 15p10)/16], e1 = [(p5)/8], "
1201 "e2 = [(p6)/128], e3 = [(8p2 - p5)/128], "
1202 "e4 = [(128p3 - p6)/4096]: 8e1 = p5 and 128e2 = p6 and "
1203 "128e3 = 8p2 - p5 and 4096e4 = 128p3 - p6 and p2 >= 0 and "
1204 "16e0 >= 16 + 16p6 + 15p10 and p2 <= 15 and p3 >= 0 and "
1205 "p3 <= 31 and p6 >= 128p3 and p5 >= 8p2 and p10 >= 0 and "
1206 "16e0 <= 15 + p0 + 15p6 + 15p10 and 16e0 >= p0 + 15p6 + 15p10 and "
1207 "p10 <= 15 and p10 <= -1 + p0 - p6) }";
1208 bset1
= isl_basic_set_read_from_str(ctx
, str
);
1209 str
= "[p0, p2, p3, p5, p6, p10] -> { [] : exists (e0 = [(p5)/8], "
1210 "e1 = [(p6)/128], e2 = [(8p2 - p5)/128], "
1211 "e3 = [(128p3 - p6)/4096]: 8e0 = p5 and 128e1 = p6 and "
1212 "128e2 = 8p2 - p5 and 4096e3 = 128p3 - p6 and p5 >= -7 and "
1213 "p2 >= 0 and 8p2 <= -1 + p0 and p2 <= 15 and p3 >= 0 and "
1214 "p3 <= 31 and 128p3 <= -1 + p0 and p6 >= -127 and "
1215 "p5 <= -1 + p0 and p6 <= -1 + p0 and p6 >= 128p3 and "
1216 "p0 >= 1 and p5 >= 8p2 and p10 >= 0 and p10 <= 15 ) }";
1217 bset2
= isl_basic_set_read_from_str(ctx
, str
);
1218 bset1
= isl_basic_set_gist(bset1
, bset2
);
1219 assert(bset1
&& bset1
->n_div
== 0);
1220 isl_basic_set_free(bset1
);
1222 /* Check that the integer divisions of the second disjunct
1223 * do not spread to the first disjunct.
1225 str
= "[t1] -> { S_0[] -> A[o0] : (exists (e0 = [(-t1 + o0)/16]: "
1226 "16e0 = -t1 + o0 and o0 >= 0 and o0 <= 15 and t1 >= 0)) or "
1227 "(exists (e0 = [(-1 + t1)/16], "
1228 "e1 = [(-16 + t1 - 16e0)/4294967296]: "
1229 "4294967296e1 = -16 + t1 - o0 - 16e0 and "
1230 "16e0 <= -1 + t1 and 16e0 >= -16 + t1 and o0 >= 0 and "
1231 "o0 <= 4294967295 and t1 <= -1)) }";
1232 map1
= isl_map_read_from_str(ctx
, str
);
1233 str
= "[t1] -> { S_0[] -> A[o0] : t1 >= 0 and t1 <= 4294967295 }";
1234 map2
= isl_map_read_from_str(ctx
, str
);
1235 map1
= isl_map_gist(map1
, map2
);
1239 isl_die(ctx
, isl_error_unknown
, "expecting single disjunct",
1240 isl_map_free(map1
); return -1);
1241 if (isl_basic_map_dim(map1
->p
[0], isl_dim_div
) != 1)
1242 isl_die(ctx
, isl_error_unknown
, "expecting single div",
1243 isl_map_free(map1
); return -1);
1249 int test_coalesce_set(isl_ctx
*ctx
, const char *str
, int check_one
)
1251 isl_set
*set
, *set2
;
1255 set
= isl_set_read_from_str(ctx
, str
);
1256 set
= isl_set_coalesce(set
);
1257 set2
= isl_set_read_from_str(ctx
, str
);
1258 equal
= isl_set_is_equal(set
, set2
);
1259 one
= set
&& set
->n
== 1;
1266 isl_die(ctx
, isl_error_unknown
,
1267 "coalesced set not equal to input", return -1);
1268 if (check_one
&& !one
)
1269 isl_die(ctx
, isl_error_unknown
,
1270 "coalesced set should not be a union", return -1);
1275 int test_coalesce_unbounded_wrapping(isl_ctx
*ctx
)
1280 bounded
= isl_options_get_coalesce_bounded_wrapping(ctx
);
1281 isl_options_set_coalesce_bounded_wrapping(ctx
, 0);
1283 if (test_coalesce_set(ctx
,
1284 "{[x,y,z] : y + 2 >= 0 and x - y + 1 >= 0 and "
1285 "-x - y + 1 >= 0 and -3 <= z <= 3;"
1286 "[x,y,z] : -x+z + 20 >= 0 and -x-z + 20 >= 0 and "
1287 "x-z + 20 >= 0 and x+z + 20 >= 0 and "
1288 "-10 <= y <= 0}", 1) < 0)
1290 if (test_coalesce_set(ctx
,
1291 "{[x,y] : 0 <= x,y <= 10; [5,y]: 4 <=y <= 11}", 1) < 0)
1293 if (test_coalesce_set(ctx
,
1294 "{[x,0,0] : -5 <= x <= 5; [0,y,1] : -5 <= y <= 5 }", 1) < 0)
1302 isl_options_set_coalesce_bounded_wrapping(ctx
, bounded
);
1307 /* Inputs for coalescing tests.
1308 * "str" is a string representation of the input set.
1309 * "single_disjunct" is set if we expect the result to consist of
1310 * a single disjunct.
1313 int single_disjunct
;
1315 } coalesce_tests
[] = {
1316 { 1, "{[x,y]: x >= 0 & x <= 10 & y >= 0 & y <= 10 or "
1317 "y >= x & x >= 2 & 5 >= y }" },
1318 { 1, "{[x,y]: y >= 0 & 2x + y <= 30 & y <= 10 & x >= 0 or "
1319 "x + y >= 10 & y <= x & x + y <= 20 & y >= 0}" },
1320 { 0, "{[x,y]: y >= 0 & 2x + y <= 30 & y <= 10 & x >= 0 or "
1321 "x + y >= 10 & y <= x & x + y <= 19 & y >= 0}" },
1322 { 1, "{[x,y]: y >= 0 & x <= 5 & y <= x or "
1323 "y >= 0 & x >= 6 & x <= 10 & y <= x}" },
1324 { 0, "{[x,y]: y >= 0 & x <= 5 & y <= x or "
1325 "y >= 0 & x >= 7 & x <= 10 & y <= x}" },
1326 { 0, "{[x,y]: y >= 0 & x <= 5 & y <= x or "
1327 "y >= 0 & x >= 6 & x <= 10 & y + 1 <= x}" },
1328 { 1, "{[x,y]: y >= 0 & x <= 5 & y <= x or y >= 0 & x = 6 & y <= 6}" },
1329 { 0, "{[x,y]: y >= 0 & x <= 5 & y <= x or y >= 0 & x = 7 & y <= 6}" },
1330 { 1, "{[x,y]: y >= 0 & x <= 5 & y <= x or y >= 0 & x = 6 & y <= 5}" },
1331 { 0, "{[x,y]: y >= 0 & x <= 5 & y <= x or y >= 0 & x = 6 & y <= 7}" },
1332 { 1, "[n] -> { [i] : i = 1 and n >= 2 or 2 <= i and i <= n }" },
1333 { 0, "{[x,y] : x >= 0 and y >= 0 or 0 <= y and y <= 5 and x = -1}" },
1334 { 1, "[n] -> { [i] : 1 <= i and i <= n - 1 or 2 <= i and i <= n }" },
1335 { 0, "[n] -> { [[i0] -> [o0]] : exists (e0 = [(i0)/4], e1 = [(o0)/4], "
1336 "e2 = [(n)/2], e3 = [(-2 + i0)/4], e4 = [(-2 + o0)/4], "
1337 "e5 = [(-2n + i0)/4]: 2e2 = n and 4e3 = -2 + i0 and "
1338 "4e4 = -2 + o0 and i0 >= 8 + 2n and o0 >= 2 + i0 and "
1339 "o0 <= 56 + 2n and o0 <= -12 + 4n and i0 <= 57 + 2n and "
1340 "i0 <= -11 + 4n and o0 >= 6 + 2n and 4e0 <= i0 and "
1341 "4e0 >= -3 + i0 and 4e1 <= o0 and 4e1 >= -3 + o0 and "
1342 "4e5 <= -2n + i0 and 4e5 >= -3 - 2n + i0);"
1343 "[[i0] -> [o0]] : exists (e0 = [(i0)/4], e1 = [(o0)/4], "
1344 "e2 = [(n)/2], e3 = [(-2 + i0)/4], e4 = [(-2 + o0)/4], "
1345 "e5 = [(-2n + i0)/4]: 2e2 = n and 4e3 = -2 + i0 and "
1346 "4e4 = -2 + o0 and 2e0 >= 3 + n and e0 <= -4 + n and "
1347 "2e0 <= 27 + n and e1 <= -4 + n and 2e1 <= 27 + n and "
1348 "2e1 >= 2 + n and e1 >= 1 + e0 and i0 >= 7 + 2n and "
1349 "i0 <= -11 + 4n and i0 <= 57 + 2n and 4e0 <= -2 + i0 and "
1350 "4e0 >= -3 + i0 and o0 >= 6 + 2n and o0 <= -11 + 4n and "
1351 "o0 <= 57 + 2n and 4e1 <= -2 + o0 and 4e1 >= -3 + o0 and "
1352 "4e5 <= -2n + i0 and 4e5 >= -3 - 2n + i0 ) }" },
1353 { 0, "[n, m] -> { [o0, o2, o3] : (o3 = 1 and o0 >= 1 + m and "
1354 "o0 <= n + m and o2 <= m and o0 >= 2 + n and o2 >= 3) or "
1355 "(o0 >= 2 + n and o0 >= 1 + m and o0 <= n + m and n >= 1 and "
1356 "o3 <= -1 + o2 and o3 >= 1 - m + o2 and o3 >= 2 and o3 <= n) }" },
1357 { 0, "[M, N] -> { [[i0, i1, i2, i3, i4, i5, i6] -> "
1358 "[o0, o1, o2, o3, o4, o5, o6]] : "
1359 "(o6 <= -4 + 2M - 2N + i0 + i1 - i2 + i6 - o0 - o1 + o2 and "
1360 "o3 <= -2 + i3 and o6 >= 2 + i0 + i3 + i6 - o0 - o3 and "
1361 "o6 >= 2 - M + N + i3 + i4 + i6 - o3 - o4 and o0 <= -1 + i0 and "
1362 "o4 >= 4 - 3M + 3N - i0 - i1 + i2 + 2i3 + i4 + o0 + o1 - o2 - 2o3 "
1363 "and o6 <= -3 + 2M - 2N + i3 + i4 - i5 + i6 - o3 - o4 + o5 and "
1364 "2o6 <= -5 + 5M - 5N + 2i0 + i1 - i2 - i5 + 2i6 - 2o0 - o1 + o2 + o5 "
1365 "and o6 >= 2i0 + i1 + i6 - 2o0 - o1 and "
1366 "3o6 <= -5 + 4M - 4N + 2i0 + i1 - i2 + 2i3 + i4 - i5 + 3i6 "
1367 "- 2o0 - o1 + o2 - 2o3 - o4 + o5) or "
1368 "(N >= 2 and o3 <= -1 + i3 and o0 <= -1 + i0 and "
1369 "o6 >= i3 + i6 - o3 and M >= 0 and "
1370 "2o6 >= 1 + i0 + i3 + 2i6 - o0 - o3 and "
1371 "o6 >= 1 - M + i0 + i6 - o0 and N >= 2M and o6 >= i0 + i6 - o0) }" },
1372 { 0, "[M, N] -> { [o0] : (o0 = 0 and M >= 1 and N >= 2) or "
1373 "(o0 = 0 and M >= 1 and N >= 2M and N >= 2 + M) or "
1374 "(o0 = 0 and M >= 2 and N >= 3) or "
1375 "(M = 0 and o0 = 0 and N >= 3) }" },
1376 { 0, "{ [i0, i1, i2, i3] : (i1 = 10i0 and i0 >= 1 and 10i0 <= 100 and "
1377 "i3 <= 9 + 10 i2 and i3 >= 1 + 10i2 and i3 >= 0) or "
1378 "(i1 <= 9 + 10i0 and i1 >= 1 + 10i0 and i2 >= 0 and "
1379 "i0 >= 0 and i1 <= 100 and i3 <= 9 + 10i2 and i3 >= 1 + 10i2) }" },
1380 { 0, "[M] -> { [i1] : (i1 >= 2 and i1 <= M) or (i1 = M and M >= 1) }" },
1381 { 0, "{[x,y] : x,y >= 0; [x,y] : 10 <= x <= 20 and y >= -1 }" },
1382 { 1, "{ [x, y] : (x >= 1 and y >= 1 and x <= 2 and y <= 2) or "
1383 "(y = 3 and x = 1) }" },
1384 { 1, "[M] -> { [i0, i1, i2, i3, i4] : (i1 >= 3 and i4 >= 2 + i2 and "
1385 "i2 >= 2 and i0 >= 2 and i3 >= 1 + i2 and i0 <= M and "
1386 "i1 <= M and i3 <= M and i4 <= M) or "
1387 "(i1 >= 2 and i4 >= 1 + i2 and i2 >= 2 and i0 >= 2 and "
1388 "i3 >= 1 + i2 and i0 <= M and i1 <= -1 + M and i3 <= M and "
1389 "i4 <= -1 + M) }" },
1390 { 1, "{ [x, y] : (x >= 0 and y >= 0 and x <= 10 and y <= 10) or "
1391 "(x >= 1 and y >= 1 and x <= 11 and y <= 11) }" },
1392 { 0, "{[x,0] : x >= 0; [x,1] : x <= 20}" },
1393 { 1, "{ [x, 1 - x] : 0 <= x <= 1; [0,0] }" },
1394 { 1, "{ [0,0]; [i,i] : 1 <= i <= 10 }" },
1395 { 0, "{ [0,0]; [i,j] : 1 <= i,j <= 10 }" },
1396 { 1, "{ [0,0]; [i,2i] : 1 <= i <= 10 }" },
1397 { 0, "{ [0,0]; [i,2i] : 2 <= i <= 10 }" },
1398 { 0, "{ [1,0]; [i,2i] : 1 <= i <= 10 }" },
1399 { 0, "{ [0,1]; [i,2i] : 1 <= i <= 10 }" },
1400 { 0, "{ [a, b] : exists e : 2e = a and "
1401 "a >= 0 and (a <= 3 or (b <= 0 and b >= -4 + a)) }" },
1402 { 0, "{ [i, j, i', j'] : i <= 2 and j <= 2 and "
1403 "j' >= -1 + 2i + j - 2i' and i' <= -1 + i and "
1404 "j >= 1 and j' <= i + j - i' and i >= 1; "
1406 { 1, "{ [i,j] : exists a,b : i = 2a and j = 3b; "
1407 "[i,j] : exists a : j = 3a }" },
1408 { 1, "{ [a, b, c] : (c <= 7 - b and b <= 1 and b >= 0 and "
1409 "c >= 3 + b and b <= 3 + 8a and b >= -26 + 8a and "
1411 "(b <= 1 and c <= 7 and b >= 0 and c >= 4 + b and "
1412 "b <= 3 + 8a and b >= -26 + 8a and a >= 3) }" },
1413 { 1, "{ [a, 0, c] : c >= 1 and c <= 29 and c >= -1 + 8a and "
1414 "c <= 6 + 8a and a >= 3; "
1415 "[a, -1, c] : c >= 1 and c <= 30 and c >= 8a and "
1416 "c <= 7 + 8a and a >= 3 and a <= 4 }" },
1417 { 1, "{ [x,y] : 0 <= x <= 2 and y >= 0 and x + 2y <= 4; "
1418 "[x,0] : 3 <= x <= 4 }" },
1419 { 1, "{ [x,y] : 0 <= x <= 3 and y >= 0 and x + 3y <= 6; "
1420 "[x,0] : 4 <= x <= 5 }" },
1421 { 0, "{ [x,y] : 0 <= x <= 2 and y >= 0 and x + 2y <= 4; "
1422 "[x,0] : 3 <= x <= 5 }" },
1423 { 0, "{ [x,y] : 0 <= x <= 2 and y >= 0 and x + y <= 4; "
1424 "[x,0] : 3 <= x <= 4 }" },
1425 { 1 , "{ [i0, i1] : i0 <= 122 and i0 >= 1 and 128i1 >= -249 + i0 and "
1427 "[i0, 0] : i0 >= 123 and i0 <= 124 }" },
1430 /* Test the functionality of isl_set_coalesce.
1431 * That is, check that the output is always equal to the input
1432 * and in some cases that the result consists of a single disjunct.
1434 static int test_coalesce(struct isl_ctx
*ctx
)
1438 for (i
= 0; i
< ARRAY_SIZE(coalesce_tests
); ++i
) {
1439 const char *str
= coalesce_tests
[i
].str
;
1440 int check_one
= coalesce_tests
[i
].single_disjunct
;
1441 if (test_coalesce_set(ctx
, str
, check_one
) < 0)
1445 if (test_coalesce_unbounded_wrapping(ctx
) < 0)
1451 void test_closure(struct isl_ctx
*ctx
)
1455 isl_map
*up
, *right
;
1456 isl_map
*map
, *map2
;
1459 /* COCOA example 1 */
1460 map
= isl_map_read_from_str(ctx
,
1461 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 1 and j2 = j + 1 and "
1462 "1 <= i and i < n and 1 <= j and j < n or "
1463 "i2 = i + 1 and j2 = j - 1 and "
1464 "1 <= i and i < n and 2 <= j and j <= n }");
1465 map
= isl_map_power(map
, &exact
);
1469 /* COCOA example 1 */
1470 map
= isl_map_read_from_str(ctx
,
1471 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 1 and j2 = j + 1 and "
1472 "1 <= i and i < n and 1 <= j and j < n or "
1473 "i2 = i + 1 and j2 = j - 1 and "
1474 "1 <= i and i < n and 2 <= j and j <= n }");
1475 map
= isl_map_transitive_closure(map
, &exact
);
1477 map2
= isl_map_read_from_str(ctx
,
1478 "[n] -> { [i,j] -> [i2,j2] : exists (k1,k2,k : "
1479 "1 <= i and i < n and 1 <= j and j <= n and "
1480 "2 <= i2 and i2 <= n and 1 <= j2 and j2 <= n and "
1481 "i2 = i + k1 + k2 and j2 = j + k1 - k2 and "
1482 "k1 >= 0 and k2 >= 0 and k1 + k2 = k and k >= 1 )}");
1483 assert(isl_map_is_equal(map
, map2
));
1487 map
= isl_map_read_from_str(ctx
,
1488 "[n] -> { [x] -> [y] : y = x + 1 and 0 <= x and x <= n and "
1489 " 0 <= y and y <= n }");
1490 map
= isl_map_transitive_closure(map
, &exact
);
1491 map2
= isl_map_read_from_str(ctx
,
1492 "[n] -> { [x] -> [y] : y > x and 0 <= x and x <= n and "
1493 " 0 <= y and y <= n }");
1494 assert(isl_map_is_equal(map
, map2
));
1498 /* COCOA example 2 */
1499 map
= isl_map_read_from_str(ctx
,
1500 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 2 and j2 = j + 2 and "
1501 "1 <= i and i < n - 1 and 1 <= j and j < n - 1 or "
1502 "i2 = i + 2 and j2 = j - 2 and "
1503 "1 <= i and i < n - 1 and 3 <= j and j <= n }");
1504 map
= isl_map_transitive_closure(map
, &exact
);
1506 map2
= isl_map_read_from_str(ctx
,
1507 "[n] -> { [i,j] -> [i2,j2] : exists (k1,k2,k : "
1508 "1 <= i and i < n - 1 and 1 <= j and j <= n and "
1509 "3 <= i2 and i2 <= n and 1 <= j2 and j2 <= n and "
1510 "i2 = i + 2 k1 + 2 k2 and j2 = j + 2 k1 - 2 k2 and "
1511 "k1 >= 0 and k2 >= 0 and k1 + k2 = k and k >= 1) }");
1512 assert(isl_map_is_equal(map
, map2
));
1516 /* COCOA Fig.2 left */
1517 map
= isl_map_read_from_str(ctx
,
1518 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 2 and j2 = j and "
1519 "i <= 2 j - 3 and i <= n - 2 and j <= 2 i - 1 and "
1521 "i2 = i and j2 = j + 2 and i <= 2 j - 1 and i <= n and "
1522 "j <= 2 i - 3 and j <= n - 2 or "
1523 "i2 = i + 1 and j2 = j + 1 and i <= 2 j - 1 and "
1524 "i <= n - 1 and j <= 2 i - 1 and j <= n - 1 }");
1525 map
= isl_map_transitive_closure(map
, &exact
);
1529 /* COCOA Fig.2 right */
1530 map
= isl_map_read_from_str(ctx
,
1531 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 3 and j2 = j and "
1532 "i <= 2 j - 4 and i <= n - 3 and j <= 2 i - 1 and "
1534 "i2 = i and j2 = j + 3 and i <= 2 j - 1 and i <= n and "
1535 "j <= 2 i - 4 and j <= n - 3 or "
1536 "i2 = i + 1 and j2 = j + 1 and i <= 2 j - 1 and "
1537 "i <= n - 1 and j <= 2 i - 1 and j <= n - 1 }");
1538 map
= isl_map_power(map
, &exact
);
1542 /* COCOA Fig.2 right */
1543 map
= isl_map_read_from_str(ctx
,
1544 "[n] -> { [i,j] -> [i2,j2] : i2 = i + 3 and j2 = j and "
1545 "i <= 2 j - 4 and i <= n - 3 and j <= 2 i - 1 and "
1547 "i2 = i and j2 = j + 3 and i <= 2 j - 1 and i <= n and "
1548 "j <= 2 i - 4 and j <= n - 3 or "
1549 "i2 = i + 1 and j2 = j + 1 and i <= 2 j - 1 and "
1550 "i <= n - 1 and j <= 2 i - 1 and j <= n - 1 }");
1551 map
= isl_map_transitive_closure(map
, &exact
);
1553 map2
= isl_map_read_from_str(ctx
,
1554 "[n] -> { [i,j] -> [i2,j2] : exists (k1,k2,k3,k : "
1555 "i <= 2 j - 1 and i <= n and j <= 2 i - 1 and "
1556 "j <= n and 3 + i + 2 j <= 3 n and "
1557 "3 + 2 i + j <= 3n and i2 <= 2 j2 -1 and i2 <= n and "
1558 "i2 <= 3 j2 - 4 and j2 <= 2 i2 -1 and j2 <= n and "
1559 "13 + 4 j2 <= 11 i2 and i2 = i + 3 k1 + k3 and "
1560 "j2 = j + 3 k2 + k3 and k1 >= 0 and k2 >= 0 and "
1561 "k3 >= 0 and k1 + k2 + k3 = k and k > 0) }");
1562 assert(isl_map_is_equal(map
, map2
));
1566 /* COCOA Fig.1 right */
1567 dom
= isl_set_read_from_str(ctx
,
1568 "{ [x,y] : x >= 0 and -2 x + 3 y >= 0 and x <= 3 and "
1569 "2 x - 3 y + 3 >= 0 }");
1570 right
= isl_map_read_from_str(ctx
,
1571 "{ [x,y] -> [x2,y2] : x2 = x + 1 and y2 = y }");
1572 up
= isl_map_read_from_str(ctx
,
1573 "{ [x,y] -> [x2,y2] : x2 = x and y2 = y + 1 }");
1574 right
= isl_map_intersect_domain(right
, isl_set_copy(dom
));
1575 right
= isl_map_intersect_range(right
, isl_set_copy(dom
));
1576 up
= isl_map_intersect_domain(up
, isl_set_copy(dom
));
1577 up
= isl_map_intersect_range(up
, dom
);
1578 map
= isl_map_union(up
, right
);
1579 map
= isl_map_transitive_closure(map
, &exact
);
1581 map2
= isl_map_read_from_str(ctx
,
1582 "{ [0,0] -> [0,1]; [0,0] -> [1,1]; [0,1] -> [1,1]; "
1583 " [2,2] -> [3,2]; [2,2] -> [3,3]; [3,2] -> [3,3] }");
1584 assert(isl_map_is_equal(map
, map2
));
1588 /* COCOA Theorem 1 counter example */
1589 map
= isl_map_read_from_str(ctx
,
1590 "{ [i,j] -> [i2,j2] : i = 0 and 0 <= j and j <= 1 and "
1591 "i2 = 1 and j2 = j or "
1592 "i = 0 and j = 0 and i2 = 0 and j2 = 1 }");
1593 map
= isl_map_transitive_closure(map
, &exact
);
1597 map
= isl_map_read_from_str(ctx
,
1598 "[m,n] -> { [i,j] -> [i2,j2] : i2 = i and j2 = j + 2 and "
1599 "1 <= i,i2 <= n and 1 <= j,j2 <= m or "
1600 "i2 = i + 1 and 3 <= j2 - j <= 4 and "
1601 "1 <= i,i2 <= n and 1 <= j,j2 <= m }");
1602 map
= isl_map_transitive_closure(map
, &exact
);
1606 /* Kelly et al 1996, fig 12 */
1607 map
= isl_map_read_from_str(ctx
,
1608 "[n] -> { [i,j] -> [i2,j2] : i2 = i and j2 = j + 1 and "
1609 "1 <= i,j,j+1 <= n or "
1610 "j = n and j2 = 1 and i2 = i + 1 and "
1611 "1 <= i,i+1 <= n }");
1612 map
= isl_map_transitive_closure(map
, &exact
);
1614 map2
= isl_map_read_from_str(ctx
,
1615 "[n] -> { [i,j] -> [i2,j2] : 1 <= j < j2 <= n and "
1616 "1 <= i <= n and i = i2 or "
1617 "1 <= i < i2 <= n and 1 <= j <= n and "
1619 assert(isl_map_is_equal(map
, map2
));
1623 /* Omega's closure4 */
1624 map
= isl_map_read_from_str(ctx
,
1625 "[m,n] -> { [x,y] -> [x2,y2] : x2 = x and y2 = y + 1 and "
1626 "1 <= x,y <= 10 or "
1627 "x2 = x + 1 and y2 = y and "
1628 "1 <= x <= 20 && 5 <= y <= 15 }");
1629 map
= isl_map_transitive_closure(map
, &exact
);
1633 map
= isl_map_read_from_str(ctx
,
1634 "[n] -> { [x] -> [y]: 1 <= n <= y - x <= 10 }");
1635 map
= isl_map_transitive_closure(map
, &exact
);
1637 map2
= isl_map_read_from_str(ctx
,
1638 "[n] -> { [x] -> [y] : 1 <= n <= 10 and y >= n + x }");
1639 assert(isl_map_is_equal(map
, map2
));
1643 str
= "[n, m] -> { [i0, i1, i2, i3] -> [o0, o1, o2, o3] : "
1644 "i3 = 1 and o0 = i0 and o1 = -1 + i1 and o2 = -1 + i2 and "
1645 "o3 = -2 + i2 and i1 <= -1 + i0 and i1 >= 1 - m + i0 and "
1646 "i1 >= 2 and i1 <= n and i2 >= 3 and i2 <= 1 + n and i2 <= m }";
1647 map
= isl_map_read_from_str(ctx
, str
);
1648 map
= isl_map_transitive_closure(map
, &exact
);
1650 map2
= isl_map_read_from_str(ctx
, str
);
1651 assert(isl_map_is_equal(map
, map2
));
1655 str
= "{[0] -> [1]; [2] -> [3]}";
1656 map
= isl_map_read_from_str(ctx
, str
);
1657 map
= isl_map_transitive_closure(map
, &exact
);
1659 map2
= isl_map_read_from_str(ctx
, str
);
1660 assert(isl_map_is_equal(map
, map2
));
1664 str
= "[n] -> { [[i0, i1, 1, 0, i0] -> [i5, 1]] -> "
1665 "[[i0, -1 + i1, 2, 0, i0] -> [-1 + i5, 2]] : "
1666 "exists (e0 = [(3 - n)/3]: i5 >= 2 and i1 >= 2 and "
1667 "3i0 <= -1 + n and i1 <= -1 + n and i5 <= -1 + n and "
1668 "3e0 >= 1 - n and 3e0 <= 2 - n and 3i0 >= -2 + n); "
1669 "[[i0, i1, 2, 0, i0] -> [i5, 1]] -> "
1670 "[[i0, i1, 1, 0, i0] -> [-1 + i5, 2]] : "
1671 "exists (e0 = [(3 - n)/3]: i5 >= 2 and i1 >= 1 and "
1672 "3i0 <= -1 + n and i1 <= -1 + n and i5 <= -1 + n and "
1673 "3e0 >= 1 - n and 3e0 <= 2 - n and 3i0 >= -2 + n); "
1674 "[[i0, i1, 1, 0, i0] -> [i5, 2]] -> "
1675 "[[i0, -1 + i1, 2, 0, i0] -> [i5, 1]] : "
1676 "exists (e0 = [(3 - n)/3]: i1 >= 2 and i5 >= 1 and "
1677 "3i0 <= -1 + n and i1 <= -1 + n and i5 <= -1 + n and "
1678 "3e0 >= 1 - n and 3e0 <= 2 - n and 3i0 >= -2 + n); "
1679 "[[i0, i1, 2, 0, i0] -> [i5, 2]] -> "
1680 "[[i0, i1, 1, 0, i0] -> [i5, 1]] : "
1681 "exists (e0 = [(3 - n)/3]: i5 >= 1 and i1 >= 1 and "
1682 "3i0 <= -1 + n and i1 <= -1 + n and i5 <= -1 + n and "
1683 "3e0 >= 1 - n and 3e0 <= 2 - n and 3i0 >= -2 + n) }";
1684 map
= isl_map_read_from_str(ctx
, str
);
1685 map
= isl_map_transitive_closure(map
, NULL
);
1690 void test_lex(struct isl_ctx
*ctx
)
1695 dim
= isl_space_set_alloc(ctx
, 0, 0);
1696 map
= isl_map_lex_le(dim
);
1697 assert(!isl_map_is_empty(map
));
1701 static int test_lexmin(struct isl_ctx
*ctx
)
1705 isl_basic_map
*bmap
;
1706 isl_map
*map
, *map2
;
1709 isl_pw_multi_aff
*pma
;
1711 str
= "[p0, p1] -> { [] -> [] : "
1712 "exists (e0 = [(2p1)/3], e1, e2, e3 = [(3 - p1 + 3e0)/3], "
1713 "e4 = [(p1)/3], e5 = [(p1 + 3e4)/3]: "
1714 "3e0 >= -2 + 2p1 and 3e0 >= p1 and 3e3 >= 1 - p1 + 3e0 and "
1715 "3e0 <= 2p1 and 3e3 >= -2 + p1 and 3e3 <= -1 + p1 and p1 >= 3 and "
1716 "3e5 >= -2 + 2p1 and 3e5 >= p1 and 3e5 <= -1 + p1 + 3e4 and "
1717 "3e4 <= p1 and 3e4 >= -2 + p1 and e3 <= -1 + e0 and "
1718 "3e4 >= 6 - p1 + 3e1 and 3e1 >= p1 and 3e5 >= -2 + p1 + 3e4 and "
1719 "2e4 >= 3 - p1 + 2e1 and e4 <= e1 and 3e3 <= 2 - p1 + 3e0 and "
1720 "e5 >= 1 + e1 and 3e4 >= 6 - 2p1 + 3e1 and "
1721 "p0 >= 2 and p1 >= p0 and 3e2 >= p1 and 3e4 >= 6 - p1 + 3e2 and "
1722 "e2 <= e1 and e3 >= 1 and e4 <= e2) }";
1723 map
= isl_map_read_from_str(ctx
, str
);
1724 map
= isl_map_lexmin(map
);
1727 str
= "[C] -> { [obj,a,b,c] : obj <= 38 a + 7 b + 10 c and "
1728 "a + b <= 1 and c <= 10 b and c <= C and a,b,c,C >= 0 }";
1729 set
= isl_set_read_from_str(ctx
, str
);
1730 set
= isl_set_lexmax(set
);
1731 str
= "[C] -> { [obj,a,b,c] : C = 8 }";
1732 set2
= isl_set_read_from_str(ctx
, str
);
1733 set
= isl_set_intersect(set
, set2
);
1734 assert(!isl_set_is_empty(set
));
1737 str
= "{ [x] -> [y] : x <= y <= 10; [x] -> [5] : -8 <= x <= 8 }";
1738 map
= isl_map_read_from_str(ctx
, str
);
1739 map
= isl_map_lexmin(map
);
1740 str
= "{ [x] -> [5] : 6 <= x <= 8; "
1741 "[x] -> [x] : x <= 5 or (9 <= x <= 10) }";
1742 map2
= isl_map_read_from_str(ctx
, str
);
1743 assert(isl_map_is_equal(map
, map2
));
1747 str
= "{ [x] -> [y] : 4y = x or 4y = -1 + x or 4y = -2 + x }";
1748 map
= isl_map_read_from_str(ctx
, str
);
1749 map2
= isl_map_copy(map
);
1750 map
= isl_map_lexmin(map
);
1751 assert(isl_map_is_equal(map
, map2
));
1755 str
= "{ [x] -> [y] : x = 4y; [x] -> [y] : x = 2y }";
1756 map
= isl_map_read_from_str(ctx
, str
);
1757 map
= isl_map_lexmin(map
);
1758 str
= "{ [x] -> [y] : (4y = x and x >= 0) or "
1759 "(exists (e0 = [(x)/4], e1 = [(-2 + x)/4]: 2y = x and "
1760 "4e1 = -2 + x and 4e0 <= -1 + x and 4e0 >= -3 + x)) or "
1761 "(exists (e0 = [(x)/4]: 2y = x and 4e0 = x and x <= -4)) }";
1762 map2
= isl_map_read_from_str(ctx
, str
);
1763 assert(isl_map_is_equal(map
, map2
));
1767 str
= "{ [i] -> [i', j] : j = i - 8i' and i' >= 0 and i' <= 7 and "
1768 " 8i' <= i and 8i' >= -7 + i }";
1769 bmap
= isl_basic_map_read_from_str(ctx
, str
);
1770 pma
= isl_basic_map_lexmin_pw_multi_aff(isl_basic_map_copy(bmap
));
1771 map2
= isl_map_from_pw_multi_aff(pma
);
1772 map
= isl_map_from_basic_map(bmap
);
1773 assert(isl_map_is_equal(map
, map2
));
1777 str
= "{ T[a] -> S[b, c] : a = 4b-2c and c >= b }";
1778 map
= isl_map_read_from_str(ctx
, str
);
1779 map
= isl_map_lexmin(map
);
1780 str
= "{ T[a] -> S[b, c] : 2b = a and 2c = a }";
1781 map2
= isl_map_read_from_str(ctx
, str
);
1782 assert(isl_map_is_equal(map
, map2
));
1786 /* Check that empty pieces are properly combined. */
1787 str
= "[K, N] -> { [x, y] -> [a, b] : K+2<=N<=K+4 and x>=4 and "
1788 "2N-6<=x<K+N and N-1<=a<=K+N-1 and N+b-6<=a<=2N-4 and "
1789 "b<=2N-3K+a and 3b<=4N-K+1 and b>=N and a>=x+1 }";
1790 map
= isl_map_read_from_str(ctx
, str
);
1791 map
= isl_map_lexmin(map
);
1792 str
= "[K, N] -> { [x, y] -> [1 + x, N] : x >= -6 + 2N and "
1793 "x <= -5 + 2N and x >= -1 + 3K - N and x <= -2 + K + N and "
1795 map2
= isl_map_read_from_str(ctx
, str
);
1796 assert(isl_map_is_equal(map
, map2
));
1800 str
= "[i] -> { [i', j] : j = i - 8i' and i' >= 0 and i' <= 7 and "
1801 " 8i' <= i and 8i' >= -7 + i }";
1802 set
= isl_set_read_from_str(ctx
, str
);
1803 pma
= isl_set_lexmin_pw_multi_aff(isl_set_copy(set
));
1804 set2
= isl_set_from_pw_multi_aff(pma
);
1805 equal
= isl_set_is_equal(set
, set2
);
1811 isl_die(ctx
, isl_error_unknown
,
1812 "unexpected difference between set and "
1813 "piecewise affine expression", return -1);
1818 /* Check that isl_set_min_val and isl_set_max_val compute the correct
1819 * result on non-convex inputs.
1821 static int test_min(struct isl_ctx
*ctx
)
1828 set
= isl_set_read_from_str(ctx
, "{ [-1]; [1] }");
1829 aff
= isl_aff_read_from_str(ctx
, "{ [x] -> [x] }");
1830 val
= isl_set_min_val(set
, aff
);
1831 min_ok
= isl_val_is_negone(val
);
1833 val
= isl_set_max_val(set
, aff
);
1834 max_ok
= isl_val_is_one(val
);
1839 if (min_ok
< 0 || max_ok
< 0)
1842 isl_die(ctx
, isl_error_unknown
,
1843 "unexpected minimum", return -1);
1845 isl_die(ctx
, isl_error_unknown
,
1846 "unexpected maximum", return -1);
1856 static int collect_must_may(__isl_take isl_map
*dep
, int must
,
1857 void *dep_user
, void *user
)
1859 struct must_may
*mm
= (struct must_may
*)user
;
1862 mm
->must
= isl_map_union(mm
->must
, dep
);
1864 mm
->may
= isl_map_union(mm
->may
, dep
);
1869 static int common_space(void *first
, void *second
)
1871 int depth
= *(int *)first
;
1875 static int map_is_equal(__isl_keep isl_map
*map
, const char *str
)
1883 map2
= isl_map_read_from_str(map
->ctx
, str
);
1884 equal
= isl_map_is_equal(map
, map2
);
1890 static int map_check_equal(__isl_keep isl_map
*map
, const char *str
)
1894 equal
= map_is_equal(map
, str
);
1898 isl_die(isl_map_get_ctx(map
), isl_error_unknown
,
1899 "result not as expected", return -1);
1903 void test_dep(struct isl_ctx
*ctx
)
1908 isl_access_info
*ai
;
1915 str
= "{ [2,i,0] -> [i] : 0 <= i <= 10 }";
1916 map
= isl_map_read_from_str(ctx
, str
);
1917 ai
= isl_access_info_alloc(map
, &depth
, &common_space
, 2);
1919 str
= "{ [0,i,0] -> [i] : 0 <= i <= 10 }";
1920 map
= isl_map_read_from_str(ctx
, str
);
1921 ai
= isl_access_info_add_source(ai
, map
, 1, &depth
);
1923 str
= "{ [1,i,0] -> [5] : 0 <= i <= 10 }";
1924 map
= isl_map_read_from_str(ctx
, str
);
1925 ai
= isl_access_info_add_source(ai
, map
, 1, &depth
);
1927 flow
= isl_access_info_compute_flow(ai
);
1928 dim
= isl_space_alloc(ctx
, 0, 3, 3);
1929 mm
.must
= isl_map_empty(isl_space_copy(dim
));
1930 mm
.may
= isl_map_empty(dim
);
1932 isl_flow_foreach(flow
, collect_must_may
, &mm
);
1934 str
= "{ [0,i,0] -> [2,i,0] : (0 <= i <= 4) or (6 <= i <= 10); "
1935 " [1,10,0] -> [2,5,0] }";
1936 assert(map_is_equal(mm
.must
, str
));
1937 str
= "{ [i,j,k] -> [l,m,n] : 1 = 0 }";
1938 assert(map_is_equal(mm
.may
, str
));
1940 isl_map_free(mm
.must
);
1941 isl_map_free(mm
.may
);
1942 isl_flow_free(flow
);
1945 str
= "{ [2,i,0] -> [i] : 0 <= i <= 10 }";
1946 map
= isl_map_read_from_str(ctx
, str
);
1947 ai
= isl_access_info_alloc(map
, &depth
, &common_space
, 2);
1949 str
= "{ [0,i,0] -> [i] : 0 <= i <= 10 }";
1950 map
= isl_map_read_from_str(ctx
, str
);
1951 ai
= isl_access_info_add_source(ai
, map
, 1, &depth
);
1953 str
= "{ [1,i,0] -> [5] : 0 <= i <= 10 }";
1954 map
= isl_map_read_from_str(ctx
, str
);
1955 ai
= isl_access_info_add_source(ai
, map
, 0, &depth
);
1957 flow
= isl_access_info_compute_flow(ai
);
1958 dim
= isl_space_alloc(ctx
, 0, 3, 3);
1959 mm
.must
= isl_map_empty(isl_space_copy(dim
));
1960 mm
.may
= isl_map_empty(dim
);
1962 isl_flow_foreach(flow
, collect_must_may
, &mm
);
1964 str
= "{ [0,i,0] -> [2,i,0] : (0 <= i <= 4) or (6 <= i <= 10) }";
1965 assert(map_is_equal(mm
.must
, str
));
1966 str
= "{ [0,5,0] -> [2,5,0]; [1,i,0] -> [2,5,0] : 0 <= i <= 10 }";
1967 assert(map_is_equal(mm
.may
, str
));
1969 isl_map_free(mm
.must
);
1970 isl_map_free(mm
.may
);
1971 isl_flow_free(flow
);
1974 str
= "{ [2,i,0] -> [i] : 0 <= i <= 10 }";
1975 map
= isl_map_read_from_str(ctx
, str
);
1976 ai
= isl_access_info_alloc(map
, &depth
, &common_space
, 2);
1978 str
= "{ [0,i,0] -> [i] : 0 <= i <= 10 }";
1979 map
= isl_map_read_from_str(ctx
, str
);
1980 ai
= isl_access_info_add_source(ai
, map
, 0, &depth
);
1982 str
= "{ [1,i,0] -> [5] : 0 <= i <= 10 }";
1983 map
= isl_map_read_from_str(ctx
, str
);
1984 ai
= isl_access_info_add_source(ai
, map
, 0, &depth
);
1986 flow
= isl_access_info_compute_flow(ai
);
1987 dim
= isl_space_alloc(ctx
, 0, 3, 3);
1988 mm
.must
= isl_map_empty(isl_space_copy(dim
));
1989 mm
.may
= isl_map_empty(dim
);
1991 isl_flow_foreach(flow
, collect_must_may
, &mm
);
1993 str
= "{ [0,i,0] -> [2,i,0] : 0 <= i <= 10; "
1994 " [1,i,0] -> [2,5,0] : 0 <= i <= 10 }";
1995 assert(map_is_equal(mm
.may
, str
));
1996 str
= "{ [i,j,k] -> [l,m,n] : 1 = 0 }";
1997 assert(map_is_equal(mm
.must
, str
));
1999 isl_map_free(mm
.must
);
2000 isl_map_free(mm
.may
);
2001 isl_flow_free(flow
);
2004 str
= "{ [0,i,2] -> [i] : 0 <= i <= 10 }";
2005 map
= isl_map_read_from_str(ctx
, str
);
2006 ai
= isl_access_info_alloc(map
, &depth
, &common_space
, 2);
2008 str
= "{ [0,i,0] -> [i] : 0 <= i <= 10 }";
2009 map
= isl_map_read_from_str(ctx
, str
);
2010 ai
= isl_access_info_add_source(ai
, map
, 0, &depth
);
2012 str
= "{ [0,i,1] -> [5] : 0 <= i <= 10 }";
2013 map
= isl_map_read_from_str(ctx
, str
);
2014 ai
= isl_access_info_add_source(ai
, map
, 0, &depth
);
2016 flow
= isl_access_info_compute_flow(ai
);
2017 dim
= isl_space_alloc(ctx
, 0, 3, 3);
2018 mm
.must
= isl_map_empty(isl_space_copy(dim
));
2019 mm
.may
= isl_map_empty(dim
);
2021 isl_flow_foreach(flow
, collect_must_may
, &mm
);
2023 str
= "{ [0,i,0] -> [0,i,2] : 0 <= i <= 10; "
2024 " [0,i,1] -> [0,5,2] : 0 <= i <= 5 }";
2025 assert(map_is_equal(mm
.may
, str
));
2026 str
= "{ [i,j,k] -> [l,m,n] : 1 = 0 }";
2027 assert(map_is_equal(mm
.must
, str
));
2029 isl_map_free(mm
.must
);
2030 isl_map_free(mm
.may
);
2031 isl_flow_free(flow
);
2034 str
= "{ [0,i,1] -> [i] : 0 <= i <= 10 }";
2035 map
= isl_map_read_from_str(ctx
, str
);
2036 ai
= isl_access_info_alloc(map
, &depth
, &common_space
, 2);
2038 str
= "{ [0,i,0] -> [i] : 0 <= i <= 10 }";
2039 map
= isl_map_read_from_str(ctx
, str
);
2040 ai
= isl_access_info_add_source(ai
, map
, 0, &depth
);
2042 str
= "{ [0,i,2] -> [5] : 0 <= i <= 10 }";
2043 map
= isl_map_read_from_str(ctx
, str
);
2044 ai
= isl_access_info_add_source(ai
, map
, 0, &depth
);
2046 flow
= isl_access_info_compute_flow(ai
);
2047 dim
= isl_space_alloc(ctx
, 0, 3, 3);
2048 mm
.must
= isl_map_empty(isl_space_copy(dim
));
2049 mm
.may
= isl_map_empty(dim
);
2051 isl_flow_foreach(flow
, collect_must_may
, &mm
);
2053 str
= "{ [0,i,0] -> [0,i,1] : 0 <= i <= 10; "
2054 " [0,i,2] -> [0,5,1] : 0 <= i <= 4 }";
2055 assert(map_is_equal(mm
.may
, str
));
2056 str
= "{ [i,j,k] -> [l,m,n] : 1 = 0 }";
2057 assert(map_is_equal(mm
.must
, str
));
2059 isl_map_free(mm
.must
);
2060 isl_map_free(mm
.may
);
2061 isl_flow_free(flow
);
2066 str
= "{ [1,i,0,0,0] -> [i,j] : 0 <= i <= 10 and 0 <= j <= 10 }";
2067 map
= isl_map_read_from_str(ctx
, str
);
2068 ai
= isl_access_info_alloc(map
, &depth
, &common_space
, 1);
2070 str
= "{ [0,i,0,j,0] -> [i,j] : 0 <= i <= 10 and 0 <= j <= 10 }";
2071 map
= isl_map_read_from_str(ctx
, str
);
2072 ai
= isl_access_info_add_source(ai
, map
, 1, &depth
);
2074 flow
= isl_access_info_compute_flow(ai
);
2075 dim
= isl_space_alloc(ctx
, 0, 5, 5);
2076 mm
.must
= isl_map_empty(isl_space_copy(dim
));
2077 mm
.may
= isl_map_empty(dim
);
2079 isl_flow_foreach(flow
, collect_must_may
, &mm
);
2081 str
= "{ [0,i,0,j,0] -> [1,i,0,0,0] : 0 <= i,j <= 10 }";
2082 assert(map_is_equal(mm
.must
, str
));
2083 str
= "{ [0,0,0,0,0] -> [0,0,0,0,0] : 1 = 0 }";
2084 assert(map_is_equal(mm
.may
, str
));
2086 isl_map_free(mm
.must
);
2087 isl_map_free(mm
.may
);
2088 isl_flow_free(flow
);
2091 /* Check that the dependence analysis proceeds without errors.
2092 * Earlier versions of isl would break down during the analysis
2093 * due to the use of the wrong spaces.
2095 static int test_flow(isl_ctx
*ctx
)
2098 isl_union_map
*access
, *schedule
;
2099 isl_union_map
*must_dep
, *may_dep
;
2102 str
= "{ S0[j] -> i[]; S1[j,i] -> i[]; S2[] -> i[]; S3[] -> i[] }";
2103 access
= isl_union_map_read_from_str(ctx
, str
);
2104 str
= "{ S0[j] -> [0,j,0,0] : 0 <= j < 10; "
2105 "S1[j,i] -> [0,j,1,i] : 0 <= j < i < 10; "
2106 "S2[] -> [1,0,0,0]; "
2107 "S3[] -> [-1,0,0,0] }";
2108 schedule
= isl_union_map_read_from_str(ctx
, str
);
2109 r
= isl_union_map_compute_flow(access
, isl_union_map_copy(access
),
2110 isl_union_map_copy(access
), schedule
,
2111 &must_dep
, &may_dep
, NULL
, NULL
);
2112 isl_union_map_free(may_dep
);
2113 isl_union_map_free(must_dep
);
2122 { "[N] -> { [i] -> [f] : 0 <= i <= N and 0 <= i - 10 f <= 9 }", 1 },
2123 { "[N] -> { [i] -> [f] : 0 <= i <= N and 0 <= i - 10 f <= 10 }", 0 },
2124 { "{ [i] -> [3*floor(i/2) + 5*floor(i/3)] }", 1 },
2125 { "{ S1[i] -> [i] : 0 <= i <= 9; S2[i] -> [i] : 0 <= i <= 9 }", 1 },
2126 { "{ [i] -> S1[i] : 0 <= i <= 9; [i] -> S2[i] : 0 <= i <= 9 }", 0 },
2127 { "{ A[i] -> [i]; B[i] -> [i]; B[i] -> [i + 1] }", 0 },
2128 { "{ A[i] -> [i]; B[i] -> [i] : i < 0; B[i] -> [i + 1] : i > 0 }", 1 },
2129 { "{ A[i] -> [i]; B[i] -> A[i] : i < 0; B[i] -> [i + 1] : i > 0 }", 1 },
2130 { "{ A[i] -> [i]; B[i] -> [j] : i - 1 <= j <= i }", 0 },
2133 int test_sv(isl_ctx
*ctx
)
2135 isl_union_map
*umap
;
2139 for (i
= 0; i
< ARRAY_SIZE(sv_tests
); ++i
) {
2140 umap
= isl_union_map_read_from_str(ctx
, sv_tests
[i
].map
);
2141 sv
= isl_union_map_is_single_valued(umap
);
2142 isl_union_map_free(umap
);
2145 if (sv_tests
[i
].sv
&& !sv
)
2146 isl_die(ctx
, isl_error_internal
,
2147 "map not detected as single valued", return -1);
2148 if (!sv_tests
[i
].sv
&& sv
)
2149 isl_die(ctx
, isl_error_internal
,
2150 "map detected as single valued", return -1);
2156 void test_bijective_case(struct isl_ctx
*ctx
, const char *str
, int bijective
)
2160 map
= isl_map_read_from_str(ctx
, str
);
2162 assert(isl_map_is_bijective(map
));
2164 assert(!isl_map_is_bijective(map
));
2168 void test_bijective(struct isl_ctx
*ctx
)
2170 test_bijective_case(ctx
, "[N,M]->{[i,j] -> [i]}", 0);
2171 test_bijective_case(ctx
, "[N,M]->{[i,j] -> [i] : j=i}", 1);
2172 test_bijective_case(ctx
, "[N,M]->{[i,j] -> [i] : j=0}", 1);
2173 test_bijective_case(ctx
, "[N,M]->{[i,j] -> [i] : j=N}", 1);
2174 test_bijective_case(ctx
, "[N,M]->{[i,j] -> [j,i]}", 1);
2175 test_bijective_case(ctx
, "[N,M]->{[i,j] -> [i+j]}", 0);
2176 test_bijective_case(ctx
, "[N,M]->{[i,j] -> []}", 0);
2177 test_bijective_case(ctx
, "[N,M]->{[i,j] -> [i,j,N]}", 1);
2178 test_bijective_case(ctx
, "[N,M]->{[i,j] -> [2i]}", 0);
2179 test_bijective_case(ctx
, "[N,M]->{[i,j] -> [i,i]}", 0);
2180 test_bijective_case(ctx
, "[N,M]->{[i,j] -> [2i,i]}", 0);
2181 test_bijective_case(ctx
, "[N,M]->{[i,j] -> [2i,j]}", 1);
2182 test_bijective_case(ctx
, "[N,M]->{[i,j] -> [x,y] : 2x=i & y =j}", 1);
2185 /* Inputs for isl_pw_qpolynomial_gist tests.
2186 * "pwqp" is the input, "set" is the context and "gist" is the expected result.
2192 } pwqp_gist_tests
[] = {
2193 { "{ [i] -> i }", "{ [k] : exists a : k = 2a }", "{ [i] -> i }" },
2194 { "{ [i] -> i + [ (i + [i/3])/2 ] }", "{ [10] }", "{ [i] -> 16 }" },
2195 { "{ [i] -> ([(i)/2]) }", "{ [k] : exists a : k = 2a+1 }",
2196 "{ [i] -> -1/2 + 1/2 * i }" },
2197 { "{ [i] -> i^2 : i != 0 }", "{ [i] : i != 0 }", "{ [i] -> i^2 }" },
2200 static int test_pwqp(struct isl_ctx
*ctx
)
2205 isl_pw_qpolynomial
*pwqp1
, *pwqp2
;
2208 str
= "{ [i,j,k] -> 1 + 9 * [i/5] + 7 * [j/11] + 4 * [k/13] }";
2209 pwqp1
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2211 pwqp1
= isl_pw_qpolynomial_move_dims(pwqp1
, isl_dim_param
, 0,
2214 str
= "[j] -> { [i,k] -> 1 + 9 * [i/5] + 7 * [j/11] + 4 * [k/13] }";
2215 pwqp2
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2217 pwqp1
= isl_pw_qpolynomial_sub(pwqp1
, pwqp2
);
2219 assert(isl_pw_qpolynomial_is_zero(pwqp1
));
2221 isl_pw_qpolynomial_free(pwqp1
);
2223 for (i
= 0; i
< ARRAY_SIZE(pwqp_gist_tests
); ++i
) {
2224 str
= pwqp_gist_tests
[i
].pwqp
;
2225 pwqp1
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2226 str
= pwqp_gist_tests
[i
].set
;
2227 set
= isl_set_read_from_str(ctx
, str
);
2228 pwqp1
= isl_pw_qpolynomial_gist(pwqp1
, set
);
2229 str
= pwqp_gist_tests
[i
].gist
;
2230 pwqp2
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2231 pwqp1
= isl_pw_qpolynomial_sub(pwqp1
, pwqp2
);
2232 equal
= isl_pw_qpolynomial_is_zero(pwqp1
);
2233 isl_pw_qpolynomial_free(pwqp1
);
2238 isl_die(ctx
, isl_error_unknown
,
2239 "unexpected result", return -1);
2242 str
= "{ [i] -> ([([i/2] + [i/2])/5]) }";
2243 pwqp1
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2244 str
= "{ [i] -> ([(2 * [i/2])/5]) }";
2245 pwqp2
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2247 pwqp1
= isl_pw_qpolynomial_sub(pwqp1
, pwqp2
);
2249 assert(isl_pw_qpolynomial_is_zero(pwqp1
));
2251 isl_pw_qpolynomial_free(pwqp1
);
2253 str
= "{ [x] -> ([x/2] + [(x+1)/2]) }";
2254 pwqp1
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2255 str
= "{ [x] -> x }";
2256 pwqp2
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2258 pwqp1
= isl_pw_qpolynomial_sub(pwqp1
, pwqp2
);
2260 assert(isl_pw_qpolynomial_is_zero(pwqp1
));
2262 isl_pw_qpolynomial_free(pwqp1
);
2264 str
= "{ [i] -> ([i/2]) : i >= 0; [i] -> ([i/3]) : i < 0 }";
2265 pwqp1
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2266 pwqp2
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2267 pwqp1
= isl_pw_qpolynomial_coalesce(pwqp1
);
2268 pwqp1
= isl_pw_qpolynomial_sub(pwqp1
, pwqp2
);
2269 assert(isl_pw_qpolynomial_is_zero(pwqp1
));
2270 isl_pw_qpolynomial_free(pwqp1
);
2272 str
= "{ [a,b,a] -> (([(2*[a/3]+b)/5]) * ([(2*[a/3]+b)/5])) }";
2273 pwqp2
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2274 str
= "{ [a,b,c] -> (([(2*[a/3]+b)/5]) * ([(2*[c/3]+b)/5])) }";
2275 pwqp1
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2276 set
= isl_set_read_from_str(ctx
, "{ [a,b,a] }");
2277 pwqp1
= isl_pw_qpolynomial_intersect_domain(pwqp1
, set
);
2278 equal
= isl_pw_qpolynomial_plain_is_equal(pwqp1
, pwqp2
);
2279 isl_pw_qpolynomial_free(pwqp1
);
2280 isl_pw_qpolynomial_free(pwqp2
);
2284 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
2286 str
= "{ [a,b,c] -> (([(2*[a/3]+1)/5]) * ([(2*[c/3]+1)/5])) : b = 1 }";
2287 pwqp2
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2288 str
= "{ [a,b,c] -> (([(2*[a/3]+b)/5]) * ([(2*[c/3]+b)/5])) }";
2289 pwqp1
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2290 pwqp1
= isl_pw_qpolynomial_fix_val(pwqp1
, isl_dim_set
, 1,
2292 equal
= isl_pw_qpolynomial_plain_is_equal(pwqp1
, pwqp2
);
2293 isl_pw_qpolynomial_free(pwqp1
);
2294 isl_pw_qpolynomial_free(pwqp2
);
2298 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
2303 void test_split_periods(isl_ctx
*ctx
)
2306 isl_pw_qpolynomial
*pwqp
;
2308 str
= "{ [U,V] -> 1/3 * U + 2/3 * V - [(U + 2V)/3] + [U/2] : "
2309 "U + 2V + 3 >= 0 and - U -2V >= 0 and - U + 10 >= 0 and "
2310 "U >= 0; [U,V] -> U^2 : U >= 100 }";
2311 pwqp
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2313 pwqp
= isl_pw_qpolynomial_split_periods(pwqp
, 2);
2316 isl_pw_qpolynomial_free(pwqp
);
2319 void test_union(isl_ctx
*ctx
)
2322 isl_union_set
*uset1
, *uset2
;
2323 isl_union_map
*umap1
, *umap2
;
2325 str
= "{ [i] : 0 <= i <= 1 }";
2326 uset1
= isl_union_set_read_from_str(ctx
, str
);
2327 str
= "{ [1] -> [0] }";
2328 umap1
= isl_union_map_read_from_str(ctx
, str
);
2330 umap2
= isl_union_set_lex_gt_union_set(isl_union_set_copy(uset1
), uset1
);
2331 assert(isl_union_map_is_equal(umap1
, umap2
));
2333 isl_union_map_free(umap1
);
2334 isl_union_map_free(umap2
);
2336 str
= "{ A[i] -> B[i]; B[i] -> C[i]; A[0] -> C[1] }";
2337 umap1
= isl_union_map_read_from_str(ctx
, str
);
2338 str
= "{ A[i]; B[i] }";
2339 uset1
= isl_union_set_read_from_str(ctx
, str
);
2341 uset2
= isl_union_map_domain(umap1
);
2343 assert(isl_union_set_is_equal(uset1
, uset2
));
2345 isl_union_set_free(uset1
);
2346 isl_union_set_free(uset2
);
2349 /* Check that computing a bound of a non-zero polynomial over an unbounded
2350 * domain does not produce a rational value.
2351 * Ideally, we want the value to be infinity, but we accept NaN for now.
2352 * We certainly do not want to obtain the value zero.
2354 static int test_bound_unbounded_domain(isl_ctx
*ctx
)
2359 isl_pw_qpolynomial
*pwqp
;
2360 isl_pw_qpolynomial_fold
*pwf
;
2364 str
= "{ [m,n] -> -m * n }";
2365 pwqp
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2366 pwf
= isl_pw_qpolynomial_bound(pwqp
, isl_fold_max
, NULL
);
2367 dom
= isl_pw_qpolynomial_fold_domain(isl_pw_qpolynomial_fold_copy(pwf
));
2368 pnt
= isl_set_sample_point(dom
);
2369 v
= isl_pw_qpolynomial_fold_eval(pwf
, pnt
);
2370 is_rat
= isl_val_is_rat(v
);
2376 isl_die(ctx
, isl_error_unknown
,
2377 "unexpected rational value", return -1);
2382 static int test_bound(isl_ctx
*ctx
)
2385 isl_pw_qpolynomial
*pwqp
;
2386 isl_pw_qpolynomial_fold
*pwf
;
2388 if (test_bound_unbounded_domain(ctx
) < 0)
2391 str
= "{ [[a, b, c, d] -> [e]] -> 0 }";
2392 pwqp
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2393 pwf
= isl_pw_qpolynomial_bound(pwqp
, isl_fold_max
, NULL
);
2394 assert(isl_pw_qpolynomial_fold_dim(pwf
, isl_dim_in
) == 4);
2395 isl_pw_qpolynomial_fold_free(pwf
);
2397 str
= "{ [[x]->[x]] -> 1 : exists a : x = 2 a }";
2398 pwqp
= isl_pw_qpolynomial_read_from_str(ctx
, str
);
2399 pwf
= isl_pw_qpolynomial_bound(pwqp
, isl_fold_max
, NULL
);
2400 assert(isl_pw_qpolynomial_fold_dim(pwf
, isl_dim_in
) == 1);
2401 isl_pw_qpolynomial_fold_free(pwf
);
2404 void test_lift(isl_ctx
*ctx
)
2407 isl_basic_map
*bmap
;
2408 isl_basic_set
*bset
;
2410 str
= "{ [i0] : exists e0 : i0 = 4e0 }";
2411 bset
= isl_basic_set_read_from_str(ctx
, str
);
2412 bset
= isl_basic_set_lift(bset
);
2413 bmap
= isl_basic_map_from_range(bset
);
2414 bset
= isl_basic_map_domain(bmap
);
2415 isl_basic_set_free(bset
);
2422 } subset_tests
[] = {
2424 "{ [i0, i1] : exists (e0 = [(i0 - i1)/16], e1: "
2425 "16e0 <= i0 - i1 and 16e0 >= -15 + i0 - i1 and "
2426 "16e1 <= i1 and 16e0 >= -i1 and 16e1 >= -i0 + i1) }", 1 },
2428 "{ [i] : exists (e0 = [(255i)/256], e1 = [(127i + 65e0)/191], "
2429 "e2 = [(3i + 61e1)/65], e3 = [(52i + 12e2)/61], "
2430 "e4 = [(2i + e3)/3], e5 = [(4i + e3)/4], e6 = [(8i + e3)/12]: "
2431 "3e4 = 2i + e3 and 4e5 = 4i + e3 and 12e6 = 8i + e3 and "
2432 "i <= 255 and 64e3 >= -45 + 67i and i >= 0 and "
2433 "256e0 <= 255i and 256e0 >= -255 + 255i and "
2434 "191e1 <= 127i + 65e0 and 191e1 >= -190 + 127i + 65e0 and "
2435 "65e2 <= 3i + 61e1 and 65e2 >= -64 + 3i + 61e1 and "
2436 "61e3 <= 52i + 12e2 and 61e3 >= -60 + 52i + 12e2) }", 1 },
2437 { "{ [i] : 0 <= i <= 10 }", "{ rat: [i] : 0 <= i <= 10 }", 1 },
2438 { "{ rat: [i] : 0 <= i <= 10 }", "{ [i] : 0 <= i <= 10 }", 0 },
2439 { "{ rat: [0] }", "{ [i] : 0 <= i <= 10 }", 1 },
2440 { "{ rat: [(1)/2] }", "{ [i] : 0 <= i <= 10 }", 0 },
2441 { "{ [t, i] : (exists (e0 = [(2 + t)/4]: 4e0 <= 2 + t and "
2442 "4e0 >= -1 + t and i >= 57 and i <= 62 and "
2443 "4e0 <= 62 + t - i and 4e0 >= -61 + t + i and "
2444 "t >= 0 and t <= 511 and 4e0 <= -57 + t + i and "
2445 "4e0 >= 58 + t - i and i >= 58 + t and i >= 62 - t)) }",
2446 "{ [i0, i1] : (exists (e0 = [(4 + i0)/4]: 4e0 <= 62 + i0 - i1 and "
2447 "4e0 >= 1 + i0 and i0 >= 0 and i0 <= 511 and "
2448 "4e0 <= -57 + i0 + i1)) or "
2449 "(exists (e0 = [(2 + i0)/4]: 4e0 <= i0 and "
2450 "4e0 >= 58 + i0 - i1 and i0 >= 2 and i0 <= 511 and "
2451 "4e0 >= -61 + i0 + i1)) or "
2452 "(i1 <= 66 - i0 and i0 >= 2 and i1 >= 59 + i0) }", 1 },
2455 static int test_subset(isl_ctx
*ctx
)
2458 isl_set
*set1
, *set2
;
2461 for (i
= 0; i
< ARRAY_SIZE(subset_tests
); ++i
) {
2462 set1
= isl_set_read_from_str(ctx
, subset_tests
[i
].set1
);
2463 set2
= isl_set_read_from_str(ctx
, subset_tests
[i
].set2
);
2464 subset
= isl_set_is_subset(set1
, set2
);
2469 if (subset
!= subset_tests
[i
].subset
)
2470 isl_die(ctx
, isl_error_unknown
,
2471 "incorrect subset result", return -1);
2478 const char *minuend
;
2479 const char *subtrahend
;
2480 const char *difference
;
2481 } subtract_domain_tests
[] = {
2482 { "{ A[i] -> B[i] }", "{ A[i] }", "{ }" },
2483 { "{ A[i] -> B[i] }", "{ B[i] }", "{ A[i] -> B[i] }" },
2484 { "{ A[i] -> B[i] }", "{ A[i] : i > 0 }", "{ A[i] -> B[i] : i <= 0 }" },
2487 static int test_subtract(isl_ctx
*ctx
)
2490 isl_union_map
*umap1
, *umap2
;
2491 isl_union_set
*uset
;
2494 for (i
= 0; i
< ARRAY_SIZE(subtract_domain_tests
); ++i
) {
2495 umap1
= isl_union_map_read_from_str(ctx
,
2496 subtract_domain_tests
[i
].minuend
);
2497 uset
= isl_union_set_read_from_str(ctx
,
2498 subtract_domain_tests
[i
].subtrahend
);
2499 umap2
= isl_union_map_read_from_str(ctx
,
2500 subtract_domain_tests
[i
].difference
);
2501 umap1
= isl_union_map_subtract_domain(umap1
, uset
);
2502 equal
= isl_union_map_is_equal(umap1
, umap2
);
2503 isl_union_map_free(umap1
);
2504 isl_union_map_free(umap2
);
2508 isl_die(ctx
, isl_error_unknown
,
2509 "incorrect subtract domain result", return -1);
2515 int test_factorize(isl_ctx
*ctx
)
2518 isl_basic_set
*bset
;
2521 str
= "{ [i0, i1, i2, i3, i4, i5, i6, i7] : 3i5 <= 2 - 2i0 and "
2522 "i0 >= -2 and i6 >= 1 + i3 and i7 >= 0 and 3i5 >= -2i0 and "
2523 "2i4 <= i2 and i6 >= 1 + 2i0 + 3i1 and i4 <= -1 and "
2524 "i6 >= 1 + 2i0 + 3i5 and i6 <= 2 + 2i0 + 3i5 and "
2525 "3i5 <= 2 - 2i0 - i2 + 3i4 and i6 <= 2 + 2i0 + 3i1 and "
2526 "i0 <= -1 and i7 <= i2 + i3 - 3i4 - i6 and "
2527 "3i5 >= -2i0 - i2 + 3i4 }";
2528 bset
= isl_basic_set_read_from_str(ctx
, str
);
2529 f
= isl_basic_set_factorizer(bset
);
2530 isl_basic_set_free(bset
);
2531 isl_factorizer_free(f
);
2533 isl_die(ctx
, isl_error_unknown
,
2534 "failed to construct factorizer", return -1);
2536 str
= "{ [i0, i1, i2, i3, i4, i5, i6, i7, i8, i9, i10, i11, i12] : "
2537 "i12 <= 2 + i0 - i11 and 2i8 >= -i4 and i11 >= i1 and "
2538 "3i5 <= -i2 and 2i11 >= -i4 - 2i7 and i11 <= 3 + i0 + 3i9 and "
2539 "i11 <= -i4 - 2i7 and i12 >= -i10 and i2 >= -2 and "
2540 "i11 >= i1 + 3i10 and i11 >= 1 + i0 + 3i9 and "
2541 "i11 <= 1 - i4 - 2i8 and 6i6 <= 6 - i2 and 3i6 >= 1 - i2 and "
2542 "i11 <= 2 + i1 and i12 <= i4 + i11 and i12 >= i0 - i11 and "
2543 "3i5 >= -2 - i2 and i12 >= -1 + i4 + i11 and 3i3 <= 3 - i2 and "
2544 "9i6 <= 11 - i2 + 6i5 and 3i3 >= 1 - i2 and "
2545 "9i6 <= 5 - i2 + 6i3 and i12 <= -1 and i2 <= 0 }";
2546 bset
= isl_basic_set_read_from_str(ctx
, str
);
2547 f
= isl_basic_set_factorizer(bset
);
2548 isl_basic_set_free(bset
);
2549 isl_factorizer_free(f
);
2551 isl_die(ctx
, isl_error_unknown
,
2552 "failed to construct factorizer", return -1);
2557 static int check_injective(__isl_take isl_map
*map
, void *user
)
2559 int *injective
= user
;
2561 *injective
= isl_map_is_injective(map
);
2564 if (*injective
< 0 || !*injective
)
2570 int test_one_schedule(isl_ctx
*ctx
, const char *d
, const char *w
,
2571 const char *r
, const char *s
, int tilable
, int parallel
)
2575 isl_union_map
*W
, *R
, *S
;
2576 isl_union_map
*empty
;
2577 isl_union_map
*dep_raw
, *dep_war
, *dep_waw
, *dep
;
2578 isl_union_map
*validity
, *proximity
, *coincidence
;
2579 isl_union_map
*schedule
;
2580 isl_union_map
*test
;
2581 isl_union_set
*delta
;
2582 isl_union_set
*domain
;
2586 isl_schedule_constraints
*sc
;
2587 isl_schedule
*sched
;
2588 int is_nonneg
, is_parallel
, is_tilable
, is_injection
, is_complete
;
2590 D
= isl_union_set_read_from_str(ctx
, d
);
2591 W
= isl_union_map_read_from_str(ctx
, w
);
2592 R
= isl_union_map_read_from_str(ctx
, r
);
2593 S
= isl_union_map_read_from_str(ctx
, s
);
2595 W
= isl_union_map_intersect_domain(W
, isl_union_set_copy(D
));
2596 R
= isl_union_map_intersect_domain(R
, isl_union_set_copy(D
));
2598 empty
= isl_union_map_empty(isl_union_map_get_space(S
));
2599 isl_union_map_compute_flow(isl_union_map_copy(R
),
2600 isl_union_map_copy(W
), empty
,
2601 isl_union_map_copy(S
),
2602 &dep_raw
, NULL
, NULL
, NULL
);
2603 isl_union_map_compute_flow(isl_union_map_copy(W
),
2604 isl_union_map_copy(W
),
2605 isl_union_map_copy(R
),
2606 isl_union_map_copy(S
),
2607 &dep_waw
, &dep_war
, NULL
, NULL
);
2609 dep
= isl_union_map_union(dep_waw
, dep_war
);
2610 dep
= isl_union_map_union(dep
, dep_raw
);
2611 validity
= isl_union_map_copy(dep
);
2612 coincidence
= isl_union_map_copy(dep
);
2613 proximity
= isl_union_map_copy(dep
);
2615 sc
= isl_schedule_constraints_on_domain(isl_union_set_copy(D
));
2616 sc
= isl_schedule_constraints_set_validity(sc
, validity
);
2617 sc
= isl_schedule_constraints_set_coincidence(sc
, coincidence
);
2618 sc
= isl_schedule_constraints_set_proximity(sc
, proximity
);
2619 sched
= isl_schedule_constraints_compute_schedule(sc
);
2620 schedule
= isl_schedule_get_map(sched
);
2621 isl_schedule_free(sched
);
2622 isl_union_map_free(W
);
2623 isl_union_map_free(R
);
2624 isl_union_map_free(S
);
2627 isl_union_map_foreach_map(schedule
, &check_injective
, &is_injection
);
2629 domain
= isl_union_map_domain(isl_union_map_copy(schedule
));
2630 is_complete
= isl_union_set_is_subset(D
, domain
);
2631 isl_union_set_free(D
);
2632 isl_union_set_free(domain
);
2634 test
= isl_union_map_reverse(isl_union_map_copy(schedule
));
2635 test
= isl_union_map_apply_range(test
, dep
);
2636 test
= isl_union_map_apply_range(test
, schedule
);
2638 delta
= isl_union_map_deltas(test
);
2639 if (isl_union_set_n_set(delta
) == 0) {
2643 isl_union_set_free(delta
);
2645 delta_set
= isl_set_from_union_set(delta
);
2647 slice
= isl_set_universe(isl_set_get_space(delta_set
));
2648 for (i
= 0; i
< tilable
; ++i
)
2649 slice
= isl_set_lower_bound_si(slice
, isl_dim_set
, i
, 0);
2650 is_tilable
= isl_set_is_subset(delta_set
, slice
);
2651 isl_set_free(slice
);
2653 slice
= isl_set_universe(isl_set_get_space(delta_set
));
2654 for (i
= 0; i
< parallel
; ++i
)
2655 slice
= isl_set_fix_si(slice
, isl_dim_set
, i
, 0);
2656 is_parallel
= isl_set_is_subset(delta_set
, slice
);
2657 isl_set_free(slice
);
2659 origin
= isl_set_universe(isl_set_get_space(delta_set
));
2660 for (i
= 0; i
< isl_set_dim(origin
, isl_dim_set
); ++i
)
2661 origin
= isl_set_fix_si(origin
, isl_dim_set
, i
, 0);
2663 delta_set
= isl_set_union(delta_set
, isl_set_copy(origin
));
2664 delta_set
= isl_set_lexmin(delta_set
);
2666 is_nonneg
= isl_set_is_equal(delta_set
, origin
);
2668 isl_set_free(origin
);
2669 isl_set_free(delta_set
);
2672 if (is_nonneg
< 0 || is_parallel
< 0 || is_tilable
< 0 ||
2673 is_injection
< 0 || is_complete
< 0)
2676 isl_die(ctx
, isl_error_unknown
,
2677 "generated schedule incomplete", return -1);
2679 isl_die(ctx
, isl_error_unknown
,
2680 "generated schedule not injective on each statement",
2683 isl_die(ctx
, isl_error_unknown
,
2684 "negative dependences in generated schedule",
2687 isl_die(ctx
, isl_error_unknown
,
2688 "generated schedule not as tilable as expected",
2691 isl_die(ctx
, isl_error_unknown
,
2692 "generated schedule not as parallel as expected",
2698 static __isl_give isl_union_map
*compute_schedule(isl_ctx
*ctx
,
2699 const char *domain
, const char *validity
, const char *proximity
)
2703 isl_union_map
*prox
;
2704 isl_schedule_constraints
*sc
;
2705 isl_schedule
*schedule
;
2706 isl_union_map
*sched
;
2708 dom
= isl_union_set_read_from_str(ctx
, domain
);
2709 dep
= isl_union_map_read_from_str(ctx
, validity
);
2710 prox
= isl_union_map_read_from_str(ctx
, proximity
);
2711 sc
= isl_schedule_constraints_on_domain(dom
);
2712 sc
= isl_schedule_constraints_set_validity(sc
, dep
);
2713 sc
= isl_schedule_constraints_set_proximity(sc
, prox
);
2714 schedule
= isl_schedule_constraints_compute_schedule(sc
);
2715 sched
= isl_schedule_get_map(schedule
);
2716 isl_schedule_free(schedule
);
2721 /* Check that a schedule can be constructed on the given domain
2722 * with the given validity and proximity constraints.
2724 static int test_has_schedule(isl_ctx
*ctx
, const char *domain
,
2725 const char *validity
, const char *proximity
)
2727 isl_union_map
*sched
;
2729 sched
= compute_schedule(ctx
, domain
, validity
, proximity
);
2733 isl_union_map_free(sched
);
2737 int test_special_schedule(isl_ctx
*ctx
, const char *domain
,
2738 const char *validity
, const char *proximity
, const char *expected_sched
)
2740 isl_union_map
*sched1
, *sched2
;
2743 sched1
= compute_schedule(ctx
, domain
, validity
, proximity
);
2744 sched2
= isl_union_map_read_from_str(ctx
, expected_sched
);
2746 equal
= isl_union_map_is_equal(sched1
, sched2
);
2747 isl_union_map_free(sched1
);
2748 isl_union_map_free(sched2
);
2753 isl_die(ctx
, isl_error_unknown
, "unexpected schedule",
2759 /* Check that the schedule map is properly padded, even after being
2760 * reconstructed from the band forest.
2762 static int test_padded_schedule(isl_ctx
*ctx
)
2766 isl_union_map
*validity
, *proximity
;
2767 isl_schedule_constraints
*sc
;
2768 isl_schedule
*sched
;
2769 isl_union_map
*map1
, *map2
;
2770 isl_band_list
*list
;
2773 str
= "[N] -> { S0[i] : 0 <= i <= N; S1[i, j] : 0 <= i, j <= N }";
2774 D
= isl_union_set_read_from_str(ctx
, str
);
2775 validity
= isl_union_map_empty(isl_union_set_get_space(D
));
2776 proximity
= isl_union_map_copy(validity
);
2777 sc
= isl_schedule_constraints_on_domain(D
);
2778 sc
= isl_schedule_constraints_set_validity(sc
, validity
);
2779 sc
= isl_schedule_constraints_set_proximity(sc
, proximity
);
2780 sched
= isl_schedule_constraints_compute_schedule(sc
);
2781 map1
= isl_schedule_get_map(sched
);
2782 list
= isl_schedule_get_band_forest(sched
);
2783 isl_band_list_free(list
);
2784 map2
= isl_schedule_get_map(sched
);
2785 isl_schedule_free(sched
);
2786 equal
= isl_union_map_is_equal(map1
, map2
);
2787 isl_union_map_free(map1
);
2788 isl_union_map_free(map2
);
2793 isl_die(ctx
, isl_error_unknown
,
2794 "reconstructed schedule map not the same as original",
2800 /* Input for testing of schedule construction based on
2801 * conditional constraints.
2803 * domain is the iteration domain
2804 * flow are the flow dependences, which determine the validity and
2805 * proximity constraints
2806 * condition are the conditions on the conditional validity constraints
2807 * conditional_validity are the conditional validity constraints
2808 * outer_band_n is the expected number of members in the outer band
2813 const char *condition
;
2814 const char *conditional_validity
;
2816 } live_range_tests
[] = {
2817 /* Contrived example that illustrates that we need to keep
2818 * track of tagged condition dependences and
2819 * tagged conditional validity dependences
2820 * in isl_sched_edge separately.
2821 * In particular, the conditional validity constraints on A
2822 * cannot be satisfied,
2823 * but they can be ignored because there are no corresponding
2824 * condition constraints. However, we do have an additional
2825 * conditional validity constraint that maps to the same
2826 * dependence relation
2827 * as the condition constraint on B. If we did not make a distinction
2828 * between tagged condition and tagged conditional validity
2829 * dependences, then we
2830 * could end up treating this shared dependence as an condition
2831 * constraint on A, forcing a localization of the conditions,
2832 * which is impossible.
2834 { "{ S[i] : 0 <= 1 < 100; T[i] : 0 <= 1 < 100 }",
2835 "{ S[i] -> S[i+1] : 0 <= i < 99 }",
2836 "{ [S[i] -> B[]] -> [S[i+1] -> B[]] : 0 <= i < 99 }",
2837 "{ [S[i] -> A[]] -> [T[i'] -> A[]] : 0 <= i', i < 100 and i != i';"
2838 "[T[i] -> A[]] -> [S[i'] -> A[]] : 0 <= i', i < 100 and i != i';"
2839 "[S[i] -> A[]] -> [S[i+1] -> A[]] : 0 <= i < 99 }",
2842 /* TACO 2013 Fig. 7 */
2843 { "[n] -> { S1[i,j] : 0 <= i,j < n; S2[i,j] : 0 <= i,j < n }",
2844 "[n] -> { S1[i,j] -> S2[i,j] : 0 <= i,j < n;"
2845 "S2[i,j] -> S2[i,j+1] : 0 <= i < n and 0 <= j < n - 1 }",
2846 "[n] -> { [S1[i,j] -> t[]] -> [S2[i,j] -> t[]] : 0 <= i,j < n;"
2847 "[S2[i,j] -> x1[]] -> [S2[i,j+1] -> x1[]] : "
2848 "0 <= i < n and 0 <= j < n - 1 }",
2849 "[n] -> { [S2[i,j] -> t[]] -> [S1[i,j'] -> t[]] : "
2850 "0 <= i < n and 0 <= j < j' < n;"
2851 "[S2[i,j] -> t[]] -> [S1[i',j'] -> t[]] : "
2852 "0 <= i < i' < n and 0 <= j,j' < n;"
2853 "[S2[i,j] -> x1[]] -> [S2[i,j'] -> x1[]] : "
2854 "0 <= i,j,j' < n and j < j' }",
2857 /* TACO 2013 Fig. 7, without tags */
2858 { "[n] -> { S1[i,j] : 0 <= i,j < n; S2[i,j] : 0 <= i,j < n }",
2859 "[n] -> { S1[i,j] -> S2[i,j] : 0 <= i,j < n;"
2860 "S2[i,j] -> S2[i,j+1] : 0 <= i < n and 0 <= j < n - 1 }",
2861 "[n] -> { S1[i,j] -> S2[i,j] : 0 <= i,j < n;"
2862 "S2[i,j] -> S2[i,j+1] : 0 <= i < n and 0 <= j < n - 1 }",
2863 "[n] -> { S2[i,j] -> S1[i,j'] : 0 <= i < n and 0 <= j < j' < n;"
2864 "S2[i,j] -> S1[i',j'] : 0 <= i < i' < n and 0 <= j,j' < n;"
2865 "S2[i,j] -> S2[i,j'] : 0 <= i,j,j' < n and j < j' }",
2868 /* TACO 2013 Fig. 12 */
2869 { "{ S1[i,0] : 0 <= i <= 1; S2[i,j] : 0 <= i <= 1 and 1 <= j <= 2;"
2870 "S3[i,3] : 0 <= i <= 1 }",
2871 "{ S1[i,0] -> S2[i,1] : 0 <= i <= 1;"
2872 "S2[i,1] -> S2[i,2] : 0 <= i <= 1;"
2873 "S2[i,2] -> S3[i,3] : 0 <= i <= 1 }",
2874 "{ [S1[i,0]->t[]] -> [S2[i,1]->t[]] : 0 <= i <= 1;"
2875 "[S2[i,1]->t[]] -> [S2[i,2]->t[]] : 0 <= i <= 1;"
2876 "[S2[i,2]->t[]] -> [S3[i,3]->t[]] : 0 <= i <= 1 }",
2877 "{ [S2[i,1]->t[]] -> [S2[i,2]->t[]] : 0 <= i <= 1;"
2878 "[S2[0,j]->t[]] -> [S2[1,j']->t[]] : 1 <= j,j' <= 2;"
2879 "[S2[0,j]->t[]] -> [S1[1,0]->t[]] : 1 <= j <= 2;"
2880 "[S3[0,3]->t[]] -> [S2[1,j]->t[]] : 1 <= j <= 2;"
2881 "[S3[0,3]->t[]] -> [S1[1,0]->t[]] }",
2886 /* Test schedule construction based on conditional constraints.
2887 * In particular, check the number of members in the outer band
2888 * as an indication of whether tiling is possible or not.
2890 static int test_conditional_schedule_constraints(isl_ctx
*ctx
)
2893 isl_union_set
*domain
;
2894 isl_union_map
*condition
;
2895 isl_union_map
*flow
;
2896 isl_union_map
*validity
;
2897 isl_schedule_constraints
*sc
;
2898 isl_schedule
*schedule
;
2899 isl_band_list
*list
;
2903 for (i
= 0; i
< ARRAY_SIZE(live_range_tests
); ++i
) {
2904 domain
= isl_union_set_read_from_str(ctx
,
2905 live_range_tests
[i
].domain
);
2906 flow
= isl_union_map_read_from_str(ctx
,
2907 live_range_tests
[i
].flow
);
2908 condition
= isl_union_map_read_from_str(ctx
,
2909 live_range_tests
[i
].condition
);
2910 validity
= isl_union_map_read_from_str(ctx
,
2911 live_range_tests
[i
].conditional_validity
);
2912 sc
= isl_schedule_constraints_on_domain(domain
);
2913 sc
= isl_schedule_constraints_set_validity(sc
,
2914 isl_union_map_copy(flow
));
2915 sc
= isl_schedule_constraints_set_proximity(sc
, flow
);
2916 sc
= isl_schedule_constraints_set_conditional_validity(sc
,
2917 condition
, validity
);
2918 schedule
= isl_schedule_constraints_compute_schedule(sc
);
2919 list
= isl_schedule_get_band_forest(schedule
);
2920 band
= isl_band_list_get_band(list
, 0);
2921 n_member
= isl_band_n_member(band
);
2922 isl_band_free(band
);
2923 isl_band_list_free(list
);
2924 isl_schedule_free(schedule
);
2928 if (n_member
!= live_range_tests
[i
].outer_band_n
)
2929 isl_die(ctx
, isl_error_unknown
,
2930 "unexpected number of members in outer band",
2936 int test_schedule(isl_ctx
*ctx
)
2938 const char *D
, *W
, *R
, *V
, *P
, *S
;
2940 /* Handle resulting schedule with zero bands. */
2941 if (test_one_schedule(ctx
, "{[]}", "{}", "{}", "{[] -> []}", 0, 0) < 0)
2945 D
= "[T,N] -> { S1[t,i] : 1 <= t <= T and 2 <= i <= N - 1 }";
2946 W
= "{ S1[t,i] -> a[t,i] }";
2947 R
= "{ S1[t,i] -> a[t-1,i]; S1[t,i] -> a[t-1,i-1]; "
2948 "S1[t,i] -> a[t-1,i+1] }";
2949 S
= "{ S1[t,i] -> [t,i] }";
2950 if (test_one_schedule(ctx
, D
, W
, R
, S
, 2, 0) < 0)
2953 /* Fig. 5 of CC2008 */
2954 D
= "[N] -> { S_0[i, j] : i >= 0 and i <= -1 + N and j >= 2 and "
2956 W
= "[N] -> { S_0[i, j] -> a[i, j] : i >= 0 and i <= -1 + N and "
2957 "j >= 2 and j <= -1 + N }";
2958 R
= "[N] -> { S_0[i, j] -> a[j, i] : i >= 0 and i <= -1 + N and "
2959 "j >= 2 and j <= -1 + N; "
2960 "S_0[i, j] -> a[i, -1 + j] : i >= 0 and i <= -1 + N and "
2961 "j >= 2 and j <= -1 + N }";
2962 S
= "[N] -> { S_0[i, j] -> [0, i, 0, j, 0] }";
2963 if (test_one_schedule(ctx
, D
, W
, R
, S
, 2, 0) < 0)
2966 D
= "{ S1[i] : 0 <= i <= 10; S2[i] : 0 <= i <= 9 }";
2967 W
= "{ S1[i] -> a[i] }";
2968 R
= "{ S2[i] -> a[i+1] }";
2969 S
= "{ S1[i] -> [0,i]; S2[i] -> [1,i] }";
2970 if (test_one_schedule(ctx
, D
, W
, R
, S
, 1, 1) < 0)
2973 D
= "{ S1[i] : 0 <= i < 10; S2[i] : 0 <= i < 10 }";
2974 W
= "{ S1[i] -> a[i] }";
2975 R
= "{ S2[i] -> a[9-i] }";
2976 S
= "{ S1[i] -> [0,i]; S2[i] -> [1,i] }";
2977 if (test_one_schedule(ctx
, D
, W
, R
, S
, 1, 1) < 0)
2980 D
= "[N] -> { S1[i] : 0 <= i < N; S2[i] : 0 <= i < N }";
2981 W
= "{ S1[i] -> a[i] }";
2982 R
= "[N] -> { S2[i] -> a[N-1-i] }";
2983 S
= "{ S1[i] -> [0,i]; S2[i] -> [1,i] }";
2984 if (test_one_schedule(ctx
, D
, W
, R
, S
, 1, 1) < 0)
2987 D
= "{ S1[i] : 0 < i < 10; S2[i] : 0 <= i < 10 }";
2988 W
= "{ S1[i] -> a[i]; S2[i] -> b[i] }";
2989 R
= "{ S2[i] -> a[i]; S1[i] -> b[i-1] }";
2990 S
= "{ S1[i] -> [i,0]; S2[i] -> [i,1] }";
2991 if (test_one_schedule(ctx
, D
, W
, R
, S
, 0, 0) < 0)
2994 D
= "[N] -> { S1[i] : 1 <= i <= N; S2[i,j] : 1 <= i,j <= N }";
2995 W
= "{ S1[i] -> a[0,i]; S2[i,j] -> a[i,j] }";
2996 R
= "{ S2[i,j] -> a[i-1,j] }";
2997 S
= "{ S1[i] -> [0,i,0]; S2[i,j] -> [1,i,j] }";
2998 if (test_one_schedule(ctx
, D
, W
, R
, S
, 2, 1) < 0)
3001 D
= "[N] -> { S1[i] : 1 <= i <= N; S2[i,j] : 1 <= i,j <= N }";
3002 W
= "{ S1[i] -> a[i,0]; S2[i,j] -> a[i,j] }";
3003 R
= "{ S2[i,j] -> a[i,j-1] }";
3004 S
= "{ S1[i] -> [0,i,0]; S2[i,j] -> [1,i,j] }";
3005 if (test_one_schedule(ctx
, D
, W
, R
, S
, 2, 1) < 0)
3008 D
= "[N] -> { S_0[]; S_1[i] : i >= 0 and i <= -1 + N; S_2[] }";
3009 W
= "[N] -> { S_0[] -> a[0]; S_2[] -> b[0]; "
3010 "S_1[i] -> a[1 + i] : i >= 0 and i <= -1 + N }";
3011 R
= "[N] -> { S_2[] -> a[N]; S_1[i] -> a[i] : i >= 0 and i <= -1 + N }";
3012 S
= "[N] -> { S_1[i] -> [1, i, 0]; S_2[] -> [2, 0, 1]; "
3013 "S_0[] -> [0, 0, 0] }";
3014 if (test_one_schedule(ctx
, D
, W
, R
, S
, 1, 0) < 0)
3016 ctx
->opt
->schedule_parametric
= 0;
3017 if (test_one_schedule(ctx
, D
, W
, R
, S
, 0, 0) < 0)
3019 ctx
->opt
->schedule_parametric
= 1;
3021 D
= "[N] -> { S1[i] : 1 <= i <= N; S2[i] : 1 <= i <= N; "
3022 "S3[i,j] : 1 <= i,j <= N; S4[i] : 1 <= i <= N }";
3023 W
= "{ S1[i] -> a[i,0]; S2[i] -> a[0,i]; S3[i,j] -> a[i,j] }";
3024 R
= "[N] -> { S3[i,j] -> a[i-1,j]; S3[i,j] -> a[i,j-1]; "
3025 "S4[i] -> a[i,N] }";
3026 S
= "{ S1[i] -> [0,i,0]; S2[i] -> [1,i,0]; S3[i,j] -> [2,i,j]; "
3027 "S4[i] -> [4,i,0] }";
3028 if (test_one_schedule(ctx
, D
, W
, R
, S
, 2, 0) < 0)
3031 D
= "[N] -> { S_0[i, j] : i >= 1 and i <= N and j >= 1 and j <= N }";
3032 W
= "[N] -> { S_0[i, j] -> s[0] : i >= 1 and i <= N and j >= 1 and "
3034 R
= "[N] -> { S_0[i, j] -> s[0] : i >= 1 and i <= N and j >= 1 and "
3036 "S_0[i, j] -> a[i, j] : i >= 1 and i <= N and j >= 1 and "
3038 S
= "[N] -> { S_0[i, j] -> [0, i, 0, j, 0] }";
3039 if (test_one_schedule(ctx
, D
, W
, R
, S
, 0, 0) < 0)
3042 D
= "[N] -> { S_0[t] : t >= 0 and t <= -1 + N; "
3043 " S_2[t] : t >= 0 and t <= -1 + N; "
3044 " S_1[t, i] : t >= 0 and t <= -1 + N and i >= 0 and "
3046 W
= "[N] -> { S_0[t] -> a[t, 0] : t >= 0 and t <= -1 + N; "
3047 " S_2[t] -> b[t] : t >= 0 and t <= -1 + N; "
3048 " S_1[t, i] -> a[t, 1 + i] : t >= 0 and t <= -1 + N and "
3049 "i >= 0 and i <= -1 + N }";
3050 R
= "[N] -> { S_1[t, i] -> a[t, i] : t >= 0 and t <= -1 + N and "
3051 "i >= 0 and i <= -1 + N; "
3052 " S_2[t] -> a[t, N] : t >= 0 and t <= -1 + N }";
3053 S
= "[N] -> { S_2[t] -> [0, t, 2]; S_1[t, i] -> [0, t, 1, i, 0]; "
3054 " S_0[t] -> [0, t, 0] }";
3056 if (test_one_schedule(ctx
, D
, W
, R
, S
, 2, 1) < 0)
3058 ctx
->opt
->schedule_parametric
= 0;
3059 if (test_one_schedule(ctx
, D
, W
, R
, S
, 0, 0) < 0)
3061 ctx
->opt
->schedule_parametric
= 1;
3063 D
= "[N] -> { S1[i,j] : 0 <= i,j < N; S2[i,j] : 0 <= i,j < N }";
3064 S
= "{ S1[i,j] -> [0,i,j]; S2[i,j] -> [1,i,j] }";
3065 if (test_one_schedule(ctx
, D
, "{}", "{}", S
, 2, 2) < 0)
3068 D
= "[M, N] -> { S_1[i] : i >= 0 and i <= -1 + M; "
3069 "S_0[i, j] : i >= 0 and i <= -1 + M and j >= 0 and j <= -1 + N }";
3070 W
= "[M, N] -> { S_0[i, j] -> a[j] : i >= 0 and i <= -1 + M and "
3071 "j >= 0 and j <= -1 + N; "
3072 "S_1[i] -> b[0] : i >= 0 and i <= -1 + M }";
3073 R
= "[M, N] -> { S_0[i, j] -> a[0] : i >= 0 and i <= -1 + M and "
3074 "j >= 0 and j <= -1 + N; "
3075 "S_1[i] -> b[0] : i >= 0 and i <= -1 + M }";
3076 S
= "[M, N] -> { S_1[i] -> [1, i, 0]; S_0[i, j] -> [0, i, 0, j, 0] }";
3077 if (test_one_schedule(ctx
, D
, W
, R
, S
, 0, 0) < 0)
3080 D
= "{ S_0[i] : i >= 0 }";
3081 W
= "{ S_0[i] -> a[i] : i >= 0 }";
3082 R
= "{ S_0[i] -> a[0] : i >= 0 }";
3083 S
= "{ S_0[i] -> [0, i, 0] }";
3084 if (test_one_schedule(ctx
, D
, W
, R
, S
, 0, 0) < 0)
3087 D
= "{ S_0[i] : i >= 0; S_1[i] : i >= 0 }";
3088 W
= "{ S_0[i] -> a[i] : i >= 0; S_1[i] -> b[i] : i >= 0 }";
3089 R
= "{ S_0[i] -> b[0] : i >= 0; S_1[i] -> a[i] : i >= 0 }";
3090 S
= "{ S_1[i] -> [0, i, 1]; S_0[i] -> [0, i, 0] }";
3091 if (test_one_schedule(ctx
, D
, W
, R
, S
, 0, 0) < 0)
3094 D
= "[n] -> { S_0[j, k] : j <= -1 + n and j >= 0 and "
3095 "k <= -1 + n and k >= 0 }";
3096 W
= "[n] -> { S_0[j, k] -> B[j] : j <= -1 + n and j >= 0 and " "k <= -1 + n and k >= 0 }";
3097 R
= "[n] -> { S_0[j, k] -> B[j] : j <= -1 + n and j >= 0 and "
3098 "k <= -1 + n and k >= 0; "
3099 "S_0[j, k] -> B[k] : j <= -1 + n and j >= 0 and "
3100 "k <= -1 + n and k >= 0; "
3101 "S_0[j, k] -> A[k] : j <= -1 + n and j >= 0 and "
3102 "k <= -1 + n and k >= 0 }";
3103 S
= "[n] -> { S_0[j, k] -> [2, j, k] }";
3104 ctx
->opt
->schedule_outer_coincidence
= 1;
3105 if (test_one_schedule(ctx
, D
, W
, R
, S
, 0, 0) < 0)
3107 ctx
->opt
->schedule_outer_coincidence
= 0;
3109 D
= "{Stmt_for_body24[i0, i1, i2, i3]:"
3110 "i0 >= 0 and i0 <= 1 and i1 >= 0 and i1 <= 6 and i2 >= 2 and "
3111 "i2 <= 6 - i1 and i3 >= 0 and i3 <= -1 + i2;"
3112 "Stmt_for_body24[i0, i1, 1, 0]:"
3113 "i0 >= 0 and i0 <= 1 and i1 >= 0 and i1 <= 5;"
3114 "Stmt_for_body7[i0, i1, i2]:"
3115 "i0 >= 0 and i0 <= 1 and i1 >= 0 and i1 <= 7 and i2 >= 0 and "
3118 V
= "{Stmt_for_body24[0, i1, i2, i3] -> "
3119 "Stmt_for_body24[1, i1, i2, i3]:"
3120 "i3 >= 0 and i3 <= -1 + i2 and i1 >= 0 and i2 <= 6 - i1 and "
3122 "Stmt_for_body24[0, i1, i2, i3] -> "
3123 "Stmt_for_body7[1, 1 + i1 + i3, 1 + i1 + i2]:"
3124 "i3 <= -1 + i2 and i2 <= 6 - i1 and i2 >= 1 and i1 >= 0 and "
3126 "Stmt_for_body24[0, i1, i2, i3] ->"
3127 "Stmt_for_body7[1, i1, 1 + i1 + i3]:"
3128 "i3 >= 0 and i2 <= 6 - i1 and i1 >= 0 and i3 <= -1 + i2;"
3129 "Stmt_for_body7[0, i1, i2] -> Stmt_for_body7[1, i1, i2]:"
3130 "(i2 >= 1 + i1 and i2 <= 6 and i1 >= 0 and i1 <= 4) or "
3131 "(i2 >= 3 and i2 <= 7 and i1 >= 1 and i2 >= 1 + i1) or "
3132 "(i2 >= 0 and i2 <= i1 and i2 >= -7 + i1 and i1 <= 7);"
3133 "Stmt_for_body7[0, i1, 1 + i1] -> Stmt_for_body7[1, i1, 1 + i1]:"
3134 "i1 <= 6 and i1 >= 0;"
3135 "Stmt_for_body7[0, 0, 7] -> Stmt_for_body7[1, 0, 7];"
3136 "Stmt_for_body7[i0, i1, i2] -> "
3137 "Stmt_for_body24[i0, o1, -1 + i2 - o1, -1 + i1 - o1]:"
3138 "i0 >= 0 and i0 <= 1 and o1 >= 0 and i2 >= 1 + i1 and "
3139 "o1 <= -2 + i2 and i2 <= 7 and o1 <= -1 + i1;"
3140 "Stmt_for_body7[i0, i1, i2] -> "
3141 "Stmt_for_body24[i0, i1, o2, -1 - i1 + i2]:"
3142 "i0 >= 0 and i0 <= 1 and i1 >= 0 and o2 >= -i1 + i2 and "
3143 "o2 >= 1 and o2 <= 6 - i1 and i2 >= 1 + i1 }";
3145 S
= "{ Stmt_for_body24[i0, i1, i2, i3] -> "
3146 "[i0, 5i0 + i1, 6i0 + i1 + i2, 1 + 6i0 + i1 + i2 + i3, 1];"
3147 "Stmt_for_body7[i0, i1, i2] -> [0, 5i0, 6i0 + i1, 6i0 + i2, 0] }";
3149 if (test_special_schedule(ctx
, D
, V
, P
, S
) < 0)
3152 D
= "{ S_0[i, j] : i >= 1 and i <= 10 and j >= 1 and j <= 8 }";
3153 V
= "{ S_0[i, j] -> S_0[i, 1 + j] : i >= 1 and i <= 10 and "
3154 "j >= 1 and j <= 7;"
3155 "S_0[i, j] -> S_0[1 + i, j] : i >= 1 and i <= 9 and "
3156 "j >= 1 and j <= 8 }";
3158 S
= "{ S_0[i, j] -> [i + j, j] }";
3159 ctx
->opt
->schedule_algorithm
= ISL_SCHEDULE_ALGORITHM_FEAUTRIER
;
3160 if (test_special_schedule(ctx
, D
, V
, P
, S
) < 0)
3162 ctx
->opt
->schedule_algorithm
= ISL_SCHEDULE_ALGORITHM_ISL
;
3164 /* Fig. 1 from Feautrier's "Some Efficient Solutions..." pt. 2, 1992 */
3165 D
= "[N] -> { S_0[i, j] : i >= 0 and i <= -1 + N and "
3166 "j >= 0 and j <= -1 + i }";
3167 V
= "[N] -> { S_0[i, j] -> S_0[i, 1 + j] : j <= -2 + i and "
3168 "i <= -1 + N and j >= 0;"
3169 "S_0[i, -1 + i] -> S_0[1 + i, 0] : i >= 1 and "
3172 S
= "{ S_0[i, j] -> [i, j] }";
3173 ctx
->opt
->schedule_algorithm
= ISL_SCHEDULE_ALGORITHM_FEAUTRIER
;
3174 if (test_special_schedule(ctx
, D
, V
, P
, S
) < 0)
3176 ctx
->opt
->schedule_algorithm
= ISL_SCHEDULE_ALGORITHM_ISL
;
3178 /* Test both algorithms on a case with only proximity dependences. */
3179 D
= "{ S[i,j] : 0 <= i <= 10 }";
3181 P
= "{ S[i,j] -> S[i+1,j] : 0 <= i,j <= 10 }";
3182 S
= "{ S[i, j] -> [j, i] }";
3183 ctx
->opt
->schedule_algorithm
= ISL_SCHEDULE_ALGORITHM_FEAUTRIER
;
3184 if (test_special_schedule(ctx
, D
, V
, P
, S
) < 0)
3186 ctx
->opt
->schedule_algorithm
= ISL_SCHEDULE_ALGORITHM_ISL
;
3187 if (test_special_schedule(ctx
, D
, V
, P
, S
) < 0)
3190 D
= "{ A[a]; B[] }";
3192 P
= "{ A[a] -> B[] }";
3193 if (test_has_schedule(ctx
, D
, V
, P
) < 0)
3196 if (test_padded_schedule(ctx
) < 0)
3199 /* Check that check for progress is not confused by rational
3202 D
= "[N] -> { S0[i, j] : i >= 0 and i <= N and j >= 0 and j <= N }";
3203 V
= "[N] -> { S0[i0, -1 + N] -> S0[2 + i0, 0] : i0 >= 0 and "
3205 "S0[i0, i1] -> S0[i0, 1 + i1] : i0 >= 0 and "
3206 "i0 <= N and i1 >= 0 and i1 <= -1 + N }";
3208 ctx
->opt
->schedule_algorithm
= ISL_SCHEDULE_ALGORITHM_FEAUTRIER
;
3209 if (test_has_schedule(ctx
, D
, V
, P
) < 0)
3211 ctx
->opt
->schedule_algorithm
= ISL_SCHEDULE_ALGORITHM_ISL
;
3213 /* Check that we allow schedule rows that are only non-trivial
3214 * on some full-dimensional domains.
3216 D
= "{ S1[j] : 0 <= j <= 1; S0[]; S2[k] : 0 <= k <= 1 }";
3217 V
= "{ S0[] -> S1[j] : 0 <= j <= 1; S2[0] -> S0[];"
3218 "S1[j] -> S2[1] : 0 <= j <= 1 }";
3220 ctx
->opt
->schedule_algorithm
= ISL_SCHEDULE_ALGORITHM_FEAUTRIER
;
3221 if (test_has_schedule(ctx
, D
, V
, P
) < 0)
3223 ctx
->opt
->schedule_algorithm
= ISL_SCHEDULE_ALGORITHM_ISL
;
3225 if (test_conditional_schedule_constraints(ctx
) < 0)
3231 int test_plain_injective(isl_ctx
*ctx
, const char *str
, int injective
)
3233 isl_union_map
*umap
;
3236 umap
= isl_union_map_read_from_str(ctx
, str
);
3237 test
= isl_union_map_plain_is_injective(umap
);
3238 isl_union_map_free(umap
);
3241 if (test
== injective
)
3244 isl_die(ctx
, isl_error_unknown
,
3245 "map not detected as injective", return -1);
3247 isl_die(ctx
, isl_error_unknown
,
3248 "map detected as injective", return -1);
3251 int test_injective(isl_ctx
*ctx
)
3255 if (test_plain_injective(ctx
, "{S[i,j] -> A[0]; T[i,j] -> B[1]}", 0))
3257 if (test_plain_injective(ctx
, "{S[] -> A[0]; T[] -> B[0]}", 1))
3259 if (test_plain_injective(ctx
, "{S[] -> A[0]; T[] -> A[1]}", 1))
3261 if (test_plain_injective(ctx
, "{S[] -> A[0]; T[] -> A[0]}", 0))
3263 if (test_plain_injective(ctx
, "{S[i] -> A[i,0]; T[i] -> A[i,1]}", 1))
3265 if (test_plain_injective(ctx
, "{S[i] -> A[i]; T[i] -> A[i]}", 0))
3267 if (test_plain_injective(ctx
, "{S[] -> A[0,0]; T[] -> A[0,1]}", 1))
3269 if (test_plain_injective(ctx
, "{S[] -> A[0,0]; T[] -> A[1,0]}", 1))
3272 str
= "{S[] -> A[0,0]; T[] -> A[0,1]; U[] -> A[1,0]}";
3273 if (test_plain_injective(ctx
, str
, 1))
3275 str
= "{S[] -> A[0,0]; T[] -> A[0,1]; U[] -> A[0,0]}";
3276 if (test_plain_injective(ctx
, str
, 0))
3282 static int aff_plain_is_equal(__isl_keep isl_aff
*aff
, const char *str
)
3290 aff2
= isl_aff_read_from_str(isl_aff_get_ctx(aff
), str
);
3291 equal
= isl_aff_plain_is_equal(aff
, aff2
);
3297 static int aff_check_plain_equal(__isl_keep isl_aff
*aff
, const char *str
)
3301 equal
= aff_plain_is_equal(aff
, str
);
3305 isl_die(isl_aff_get_ctx(aff
), isl_error_unknown
,
3306 "result not as expected", return -1);
3311 __isl_give isl_aff
*(*fn
)(__isl_take isl_aff
*aff1
,
3312 __isl_take isl_aff
*aff2
);
3314 ['+'] = { &isl_aff_add
},
3315 ['-'] = { &isl_aff_sub
},
3316 ['*'] = { &isl_aff_mul
},
3317 ['/'] = { &isl_aff_div
},
3325 } aff_bin_tests
[] = {
3326 { "{ [i] -> [i] }", '+', "{ [i] -> [i] }",
3327 "{ [i] -> [2i] }" },
3328 { "{ [i] -> [i] }", '-', "{ [i] -> [i] }",
3330 { "{ [i] -> [i] }", '*', "{ [i] -> [2] }",
3331 "{ [i] -> [2i] }" },
3332 { "{ [i] -> [2] }", '*', "{ [i] -> [i] }",
3333 "{ [i] -> [2i] }" },
3334 { "{ [i] -> [i] }", '/', "{ [i] -> [2] }",
3335 "{ [i] -> [i/2] }" },
3336 { "{ [i] -> [2i] }", '/', "{ [i] -> [2] }",
3338 { "{ [i] -> [i] }", '+', "{ [i] -> [NaN] }",
3339 "{ [i] -> [NaN] }" },
3340 { "{ [i] -> [i] }", '-', "{ [i] -> [NaN] }",
3341 "{ [i] -> [NaN] }" },
3342 { "{ [i] -> [i] }", '*', "{ [i] -> [NaN] }",
3343 "{ [i] -> [NaN] }" },
3344 { "{ [i] -> [2] }", '*', "{ [i] -> [NaN] }",
3345 "{ [i] -> [NaN] }" },
3346 { "{ [i] -> [i] }", '/', "{ [i] -> [NaN] }",
3347 "{ [i] -> [NaN] }" },
3348 { "{ [i] -> [2] }", '/', "{ [i] -> [NaN] }",
3349 "{ [i] -> [NaN] }" },
3350 { "{ [i] -> [NaN] }", '+', "{ [i] -> [i] }",
3351 "{ [i] -> [NaN] }" },
3352 { "{ [i] -> [NaN] }", '-', "{ [i] -> [i] }",
3353 "{ [i] -> [NaN] }" },
3354 { "{ [i] -> [NaN] }", '*', "{ [i] -> [2] }",
3355 "{ [i] -> [NaN] }" },
3356 { "{ [i] -> [NaN] }", '*', "{ [i] -> [i] }",
3357 "{ [i] -> [NaN] }" },
3358 { "{ [i] -> [NaN] }", '/', "{ [i] -> [2] }",
3359 "{ [i] -> [NaN] }" },
3360 { "{ [i] -> [NaN] }", '/', "{ [i] -> [i] }",
3361 "{ [i] -> [NaN] }" },
3364 /* Perform some basic tests of binary operations on isl_aff objects.
3366 static int test_bin_aff(isl_ctx
*ctx
)
3369 isl_aff
*aff1
, *aff2
, *res
;
3370 __isl_give isl_aff
*(*fn
)(__isl_take isl_aff
*aff1
,
3371 __isl_take isl_aff
*aff2
);
3374 for (i
= 0; i
< ARRAY_SIZE(aff_bin_tests
); ++i
) {
3375 aff1
= isl_aff_read_from_str(ctx
, aff_bin_tests
[i
].arg1
);
3376 aff2
= isl_aff_read_from_str(ctx
, aff_bin_tests
[i
].arg2
);
3377 res
= isl_aff_read_from_str(ctx
, aff_bin_tests
[i
].res
);
3378 fn
= aff_bin_op
[aff_bin_tests
[i
].op
].fn
;
3379 aff1
= fn(aff1
, aff2
);
3380 if (isl_aff_is_nan(res
))
3381 ok
= isl_aff_is_nan(aff1
);
3383 ok
= isl_aff_plain_is_equal(aff1
, res
);
3389 isl_die(ctx
, isl_error_unknown
,
3390 "unexpected result", return -1);
3396 int test_aff(isl_ctx
*ctx
)
3401 isl_local_space
*ls
;
3405 if (test_bin_aff(ctx
) < 0)
3408 space
= isl_space_set_alloc(ctx
, 0, 1);
3409 ls
= isl_local_space_from_space(space
);
3410 aff
= isl_aff_zero_on_domain(ls
);
3412 aff
= isl_aff_add_coefficient_si(aff
, isl_dim_in
, 0, 1);
3413 aff
= isl_aff_scale_down_ui(aff
, 3);
3414 aff
= isl_aff_floor(aff
);
3415 aff
= isl_aff_add_coefficient_si(aff
, isl_dim_in
, 0, 1);
3416 aff
= isl_aff_scale_down_ui(aff
, 2);
3417 aff
= isl_aff_floor(aff
);
3418 aff
= isl_aff_add_coefficient_si(aff
, isl_dim_in
, 0, 1);
3421 set
= isl_set_read_from_str(ctx
, str
);
3422 aff
= isl_aff_gist(aff
, set
);
3424 aff
= isl_aff_add_constant_si(aff
, -16);
3425 zero
= isl_aff_plain_is_zero(aff
);
3431 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
3433 aff
= isl_aff_read_from_str(ctx
, "{ [-1] }");
3434 aff
= isl_aff_scale_down_ui(aff
, 64);
3435 aff
= isl_aff_floor(aff
);
3436 equal
= aff_check_plain_equal(aff
, "{ [-1] }");
3444 int test_dim_max(isl_ctx
*ctx
)
3448 isl_set
*set1
, *set2
;
3453 str
= "[N] -> { [i] : 0 <= i <= min(N,10) }";
3454 set
= isl_set_read_from_str(ctx
, str
);
3455 pwaff
= isl_set_dim_max(set
, 0);
3456 set1
= isl_set_from_pw_aff(pwaff
);
3457 str
= "[N] -> { [10] : N >= 10; [N] : N <= 9 and N >= 0 }";
3458 set2
= isl_set_read_from_str(ctx
, str
);
3459 equal
= isl_set_is_equal(set1
, set2
);
3465 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
3467 str
= "[N] -> { [i] : 0 <= i <= max(2N,N+6) }";
3468 set
= isl_set_read_from_str(ctx
, str
);
3469 pwaff
= isl_set_dim_max(set
, 0);
3470 set1
= isl_set_from_pw_aff(pwaff
);
3471 str
= "[N] -> { [6 + N] : -6 <= N <= 5; [2N] : N >= 6 }";
3472 set2
= isl_set_read_from_str(ctx
, str
);
3473 equal
= isl_set_is_equal(set1
, set2
);
3479 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
3481 str
= "[N] -> { [i] : 0 <= i <= 2N or 0 <= i <= N+6 }";
3482 set
= isl_set_read_from_str(ctx
, str
);
3483 pwaff
= isl_set_dim_max(set
, 0);
3484 set1
= isl_set_from_pw_aff(pwaff
);
3485 str
= "[N] -> { [6 + N] : -6 <= N <= 5; [2N] : N >= 6 }";
3486 set2
= isl_set_read_from_str(ctx
, str
);
3487 equal
= isl_set_is_equal(set1
, set2
);
3493 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
3495 str
= "[N,M] -> { [i,j] -> [([i/16]), i%16, ([j/16]), j%16] : "
3496 "0 <= i < N and 0 <= j < M }";
3497 map
= isl_map_read_from_str(ctx
, str
);
3498 set
= isl_map_range(map
);
3500 pwaff
= isl_set_dim_max(isl_set_copy(set
), 0);
3501 set1
= isl_set_from_pw_aff(pwaff
);
3502 str
= "[N,M] -> { [([(N-1)/16])] : M,N > 0 }";
3503 set2
= isl_set_read_from_str(ctx
, str
);
3504 equal
= isl_set_is_equal(set1
, set2
);
3508 pwaff
= isl_set_dim_max(isl_set_copy(set
), 3);
3509 set1
= isl_set_from_pw_aff(pwaff
);
3510 str
= "[N,M] -> { [t] : t = min(M-1,15) and M,N > 0 }";
3511 set2
= isl_set_read_from_str(ctx
, str
);
3512 if (equal
>= 0 && equal
)
3513 equal
= isl_set_is_equal(set1
, set2
);
3522 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
3524 /* Check that solutions are properly merged. */
3525 str
= "[n] -> { [a, b, c] : c >= -4a - 2b and "
3526 "c <= -1 + n - 4a - 2b and c >= -2b and "
3527 "4a >= -4 + n and c >= 0 }";
3528 set
= isl_set_read_from_str(ctx
, str
);
3529 pwaff
= isl_set_dim_min(set
, 2);
3530 set1
= isl_set_from_pw_aff(pwaff
);
3531 str
= "[n] -> { [(0)] : n >= 1 }";
3532 set2
= isl_set_read_from_str(ctx
, str
);
3533 equal
= isl_set_is_equal(set1
, set2
);
3540 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
3542 /* Check that empty solution lie in the right space. */
3543 str
= "[n] -> { [t,a] : 1 = 0 }";
3544 set
= isl_set_read_from_str(ctx
, str
);
3545 pwaff
= isl_set_dim_max(set
, 0);
3546 set1
= isl_set_from_pw_aff(pwaff
);
3547 str
= "[n] -> { [t] : 1 = 0 }";
3548 set2
= isl_set_read_from_str(ctx
, str
);
3549 equal
= isl_set_is_equal(set1
, set2
);
3556 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
3561 /* Is "pma" obviously equal to the isl_pw_multi_aff represented by "str"?
3563 static int pw_multi_aff_plain_is_equal(__isl_keep isl_pw_multi_aff
*pma
,
3567 isl_pw_multi_aff
*pma2
;
3573 ctx
= isl_pw_multi_aff_get_ctx(pma
);
3574 pma2
= isl_pw_multi_aff_read_from_str(ctx
, str
);
3575 equal
= isl_pw_multi_aff_plain_is_equal(pma
, pma2
);
3576 isl_pw_multi_aff_free(pma2
);
3581 /* Check that "pma" is obviously equal to the isl_pw_multi_aff
3582 * represented by "str".
3584 static int pw_multi_aff_check_plain_equal(__isl_keep isl_pw_multi_aff
*pma
,
3589 equal
= pw_multi_aff_plain_is_equal(pma
, str
);
3593 isl_die(isl_pw_multi_aff_get_ctx(pma
), isl_error_unknown
,
3594 "result not as expected", return -1);
3598 /* Basic test for isl_pw_multi_aff_product.
3600 * Check that multiple pieces are properly handled.
3602 static int test_product_pma(isl_ctx
*ctx
)
3606 isl_pw_multi_aff
*pma1
, *pma2
;
3608 str
= "{ A[i] -> B[1] : i < 0; A[i] -> B[2] : i >= 0 }";
3609 pma1
= isl_pw_multi_aff_read_from_str(ctx
, str
);
3610 str
= "{ C[] -> D[] }";
3611 pma2
= isl_pw_multi_aff_read_from_str(ctx
, str
);
3612 pma1
= isl_pw_multi_aff_product(pma1
, pma2
);
3613 str
= "{ [A[i] -> C[]] -> [B[(1)] -> D[]] : i < 0;"
3614 "[A[i] -> C[]] -> [B[(2)] -> D[]] : i >= 0 }";
3615 equal
= pw_multi_aff_check_plain_equal(pma1
, str
);
3616 isl_pw_multi_aff_free(pma1
);
3623 int test_product(isl_ctx
*ctx
)
3627 isl_union_set
*uset1
, *uset2
;
3631 set
= isl_set_read_from_str(ctx
, str
);
3632 set
= isl_set_product(set
, isl_set_copy(set
));
3633 ok
= isl_set_is_wrapping(set
);
3638 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
3641 uset1
= isl_union_set_read_from_str(ctx
, str
);
3642 uset1
= isl_union_set_product(uset1
, isl_union_set_copy(uset1
));
3643 str
= "{ [[] -> []] }";
3644 uset2
= isl_union_set_read_from_str(ctx
, str
);
3645 ok
= isl_union_set_is_equal(uset1
, uset2
);
3646 isl_union_set_free(uset1
);
3647 isl_union_set_free(uset2
);
3651 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
3653 if (test_product_pma(ctx
) < 0)
3659 /* Check that two sets are not considered disjoint just because
3660 * they have a different set of (named) parameters.
3662 static int test_disjoint(isl_ctx
*ctx
)
3665 isl_set
*set
, *set2
;
3668 str
= "[n] -> { [[]->[]] }";
3669 set
= isl_set_read_from_str(ctx
, str
);
3670 str
= "{ [[]->[]] }";
3671 set2
= isl_set_read_from_str(ctx
, str
);
3672 disjoint
= isl_set_is_disjoint(set
, set2
);
3678 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
3683 int test_equal(isl_ctx
*ctx
)
3686 isl_set
*set
, *set2
;
3690 set
= isl_set_read_from_str(ctx
, str
);
3692 set2
= isl_set_read_from_str(ctx
, str
);
3693 equal
= isl_set_is_equal(set
, set2
);
3699 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
3704 static int test_plain_fixed(isl_ctx
*ctx
, __isl_take isl_map
*map
,
3705 enum isl_dim_type type
, unsigned pos
, int fixed
)
3709 test
= isl_map_plain_is_fixed(map
, type
, pos
, NULL
);
3716 isl_die(ctx
, isl_error_unknown
,
3717 "map not detected as fixed", return -1);
3719 isl_die(ctx
, isl_error_unknown
,
3720 "map detected as fixed", return -1);
3723 int test_fixed(isl_ctx
*ctx
)
3728 str
= "{ [i] -> [i] }";
3729 map
= isl_map_read_from_str(ctx
, str
);
3730 if (test_plain_fixed(ctx
, map
, isl_dim_out
, 0, 0))
3732 str
= "{ [i] -> [1] }";
3733 map
= isl_map_read_from_str(ctx
, str
);
3734 if (test_plain_fixed(ctx
, map
, isl_dim_out
, 0, 1))
3736 str
= "{ S_1[p1] -> [o0] : o0 = -2 and p1 >= 1 and p1 <= 7 }";
3737 map
= isl_map_read_from_str(ctx
, str
);
3738 if (test_plain_fixed(ctx
, map
, isl_dim_out
, 0, 1))
3740 map
= isl_map_read_from_str(ctx
, str
);
3741 map
= isl_map_neg(map
);
3742 if (test_plain_fixed(ctx
, map
, isl_dim_out
, 0, 1))
3748 struct isl_vertices_test_data
{
3751 const char *vertex
[2];
3752 } vertices_tests
[] = {
3753 { "{ A[t, i] : t = 12 and i >= 4 and i <= 12 }",
3754 2, { "{ A[12, 4] }", "{ A[12, 12] }" } },
3755 { "{ A[t, i] : t = 14 and i = 1 }",
3756 1, { "{ A[14, 1] }" } },
3759 /* Check that "vertex" corresponds to one of the vertices in data->vertex.
3761 static int find_vertex(__isl_take isl_vertex
*vertex
, void *user
)
3763 struct isl_vertices_test_data
*data
= user
;
3766 isl_basic_set
*bset
;
3767 isl_pw_multi_aff
*pma
;
3771 ctx
= isl_vertex_get_ctx(vertex
);
3772 bset
= isl_vertex_get_domain(vertex
);
3773 ma
= isl_vertex_get_expr(vertex
);
3774 pma
= isl_pw_multi_aff_alloc(isl_set_from_basic_set(bset
), ma
);
3776 for (i
= 0; i
< data
->n
; ++i
) {
3777 isl_pw_multi_aff
*pma_i
;
3779 pma_i
= isl_pw_multi_aff_read_from_str(ctx
, data
->vertex
[i
]);
3780 equal
= isl_pw_multi_aff_plain_is_equal(pma
, pma_i
);
3781 isl_pw_multi_aff_free(pma_i
);
3783 if (equal
< 0 || equal
)
3787 isl_pw_multi_aff_free(pma
);
3788 isl_vertex_free(vertex
);
3793 return equal
? 0 : - 1;
3796 int test_vertices(isl_ctx
*ctx
)
3800 for (i
= 0; i
< ARRAY_SIZE(vertices_tests
); ++i
) {
3801 isl_basic_set
*bset
;
3802 isl_vertices
*vertices
;
3806 bset
= isl_basic_set_read_from_str(ctx
, vertices_tests
[i
].set
);
3807 vertices
= isl_basic_set_compute_vertices(bset
);
3808 n
= isl_vertices_get_n_vertices(vertices
);
3809 if (vertices_tests
[i
].n
!= n
)
3811 if (isl_vertices_foreach_vertex(vertices
, &find_vertex
,
3812 &vertices_tests
[i
]) < 0)
3814 isl_vertices_free(vertices
);
3815 isl_basic_set_free(bset
);
3820 isl_die(ctx
, isl_error_unknown
, "unexpected vertices",
3827 int test_union_pw(isl_ctx
*ctx
)
3831 isl_union_set
*uset
;
3832 isl_union_pw_qpolynomial
*upwqp1
, *upwqp2
;
3834 str
= "{ [x] -> x^2 }";
3835 upwqp1
= isl_union_pw_qpolynomial_read_from_str(ctx
, str
);
3836 upwqp2
= isl_union_pw_qpolynomial_copy(upwqp1
);
3837 uset
= isl_union_pw_qpolynomial_domain(upwqp1
);
3838 upwqp1
= isl_union_pw_qpolynomial_copy(upwqp2
);
3839 upwqp1
= isl_union_pw_qpolynomial_intersect_domain(upwqp1
, uset
);
3840 equal
= isl_union_pw_qpolynomial_plain_is_equal(upwqp1
, upwqp2
);
3841 isl_union_pw_qpolynomial_free(upwqp1
);
3842 isl_union_pw_qpolynomial_free(upwqp2
);
3846 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
3851 int test_output(isl_ctx
*ctx
)
3859 str
= "[x] -> { [1] : x % 4 <= 2; [2] : x = 3 }";
3860 pa
= isl_pw_aff_read_from_str(ctx
, str
);
3862 p
= isl_printer_to_str(ctx
);
3863 p
= isl_printer_set_output_format(p
, ISL_FORMAT_C
);
3864 p
= isl_printer_print_pw_aff(p
, pa
);
3865 s
= isl_printer_get_str(p
);
3866 isl_printer_free(p
);
3867 isl_pw_aff_free(pa
);
3871 equal
= !strcmp(s
, "4 * floord(x, 4) + 2 >= x ? 1 : 2");
3876 isl_die(ctx
, isl_error_unknown
, "unexpected result", return -1);
3881 int test_sample(isl_ctx
*ctx
)
3884 isl_basic_set
*bset1
, *bset2
;
3887 str
= "{ [a, b, c, d, e, f, g, h, i, j, k] : "
3888 "3i >= 1073741823b - c - 1073741823e + f and c >= 0 and "
3889 "3i >= -1 + 3221225466b + c + d - 3221225466e - f and "
3890 "2e >= a - b and 3e <= 2a and 3k <= -a and f <= -1 + a and "
3891 "3i <= 4 - a + 4b + 2c - e - 2f and 3k <= -a + c - f and "
3892 "3h >= -2 + a and 3g >= -3 - a and 3k >= -2 - a and "
3893 "3i >= -2 - a - 2c + 3e + 2f and 3h <= a + c - f and "
3894 "3h >= a + 2147483646b + 2c - 2147483646e - 2f and "
3895 "3g <= -1 - a and 3i <= 1 + c + d - f and a <= 1073741823 and "
3896 "f >= 1 - a + 1073741822b + c + d - 1073741822e and "
3897 "3i >= 1 + 2b - 2c + e + 2f + 3g and "
3898 "1073741822f <= 1073741822 - a + 1073741821b + 1073741822c +"
3899 "d - 1073741821e and "
3900 "3j <= 3 - a + 3b and 3g <= -2 - 2b + c + d - e - f and "
3901 "3j >= 1 - a + b + 2e and "
3902 "3f >= -3 + a + 3221225462b + 3c + d - 3221225465e and "
3903 "3i <= 4 - a + 4b - e and "
3904 "f <= 1073741822 + 1073741822b - 1073741822e and 3h <= a and "
3905 "f >= 0 and 2e <= 4 - a + 5b - d and 2e <= a - b + d and "
3906 "c <= -1 + a and 3i >= -2 - a + 3e and "
3907 "1073741822e <= 1073741823 - a + 1073741822b + c and "
3908 "3g >= -4 + 3221225464b + 3c + d - 3221225467e - 3f and "
3909 "3i >= -1 + 3221225466b + 3c + d - 3221225466e - 3f and "
3910 "1073741823e >= 1 + 1073741823b - d and "
3911 "3i >= 1073741823b + c - 1073741823e - f and "
3912 "3i >= 1 + 2b + e + 3g }";
3913 bset1
= isl_basic_set_read_from_str(ctx
, str
);
3914 bset2
= isl_basic_set_sample(isl_basic_set_copy(bset1
));
3915 empty
= isl_basic_set_is_empty(bset2
);
3916 subset
= isl_basic_set_is_subset(bset2
, bset1
);
3917 isl_basic_set_free(bset1
);
3918 isl_basic_set_free(bset2
);
3919 if (empty
< 0 || subset
< 0)
3922 isl_die(ctx
, isl_error_unknown
, "point not found", return -1);
3924 isl_die(ctx
, isl_error_unknown
, "bad point found", return -1);
3929 int test_fixed_power(isl_ctx
*ctx
)
3937 str
= "{ [i] -> [i + 1] }";
3938 map
= isl_map_read_from_str(ctx
, str
);
3939 isl_int_set_si(exp
, 23);
3940 map
= isl_map_fixed_power(map
, exp
);
3941 equal
= map_check_equal(map
, "{ [i] -> [i + 23] }");
3950 int test_slice(isl_ctx
*ctx
)
3956 str
= "{ [i] -> [j] }";
3957 map
= isl_map_read_from_str(ctx
, str
);
3958 map
= isl_map_equate(map
, isl_dim_in
, 0, isl_dim_out
, 0);
3959 equal
= map_check_equal(map
, "{ [i] -> [i] }");
3964 str
= "{ [i] -> [j] }";
3965 map
= isl_map_read_from_str(ctx
, str
);
3966 map
= isl_map_equate(map
, isl_dim_in
, 0, isl_dim_in
, 0);
3967 equal
= map_check_equal(map
, "{ [i] -> [j] }");
3972 str
= "{ [i] -> [j] }";
3973 map
= isl_map_read_from_str(ctx
, str
);
3974 map
= isl_map_oppose(map
, isl_dim_in
, 0, isl_dim_out
, 0);
3975 equal
= map_check_equal(map
, "{ [i] -> [-i] }");
3980 str
= "{ [i] -> [j] }";
3981 map
= isl_map_read_from_str(ctx
, str
);
3982 map
= isl_map_oppose(map
, isl_dim_in
, 0, isl_dim_in
, 0);
3983 equal
= map_check_equal(map
, "{ [0] -> [j] }");
3988 str
= "{ [i] -> [j] }";
3989 map
= isl_map_read_from_str(ctx
, str
);
3990 map
= isl_map_order_gt(map
, isl_dim_in
, 0, isl_dim_out
, 0);
3991 equal
= map_check_equal(map
, "{ [i] -> [j] : i > j }");
3996 str
= "{ [i] -> [j] }";
3997 map
= isl_map_read_from_str(ctx
, str
);
3998 map
= isl_map_order_gt(map
, isl_dim_in
, 0, isl_dim_in
, 0);
3999 equal
= map_check_equal(map
, "{ [i] -> [j] : false }");
4007 int test_eliminate(isl_ctx
*ctx
)
4013 str
= "{ [i] -> [j] : i = 2j }";
4014 map
= isl_map_read_from_str(ctx
, str
);
4015 map
= isl_map_eliminate(map
, isl_dim_out
, 0, 1);
4016 equal
= map_check_equal(map
, "{ [i] -> [j] : exists a : i = 2a }");
4024 /* Check that isl_set_dim_residue_class detects that the values of j
4025 * in the set below are all odd and that it does not detect any spurious
4028 static int test_residue_class(isl_ctx
*ctx
)
4035 str
= "{ [i,j] : j = 4 i + 1 and 0 <= i <= 100; "
4036 "[i,j] : j = 4 i + 3 and 500 <= i <= 600 }";
4037 set
= isl_set_read_from_str(ctx
, str
);
4040 res
= isl_set_dim_residue_class(set
, 1, &m
, &r
);
4042 (isl_int_cmp_si(m
, 2) != 0 || isl_int_cmp_si(r
, 1) != 0))
4043 isl_die(ctx
, isl_error_unknown
, "incorrect residue class",
4052 int test_align_parameters(isl_ctx
*ctx
)
4056 isl_multi_aff
*ma1
, *ma2
;
4059 str
= "{ A[B[] -> C[]] -> D[E[] -> F[]] }";
4060 ma1
= isl_multi_aff_read_from_str(ctx
, str
);
4062 space
= isl_space_params_alloc(ctx
, 1);
4063 space
= isl_space_set_dim_name(space
, isl_dim_param
, 0, "N");
4064 ma1
= isl_multi_aff_align_params(ma1
, space
);
4066 str
= "[N] -> { A[B[] -> C[]] -> D[E[] -> F[]] }";
4067 ma2
= isl_multi_aff_read_from_str(ctx
, str
);
4069 equal
= isl_multi_aff_plain_is_equal(ma1
, ma2
);
4071 isl_multi_aff_free(ma1
);
4072 isl_multi_aff_free(ma2
);
4077 isl_die(ctx
, isl_error_unknown
,
4078 "result not as expected", return -1);
4083 static int test_list(isl_ctx
*ctx
)
4085 isl_id
*a
, *b
, *c
, *d
, *id
;
4089 a
= isl_id_alloc(ctx
, "a", NULL
);
4090 b
= isl_id_alloc(ctx
, "b", NULL
);
4091 c
= isl_id_alloc(ctx
, "c", NULL
);
4092 d
= isl_id_alloc(ctx
, "d", NULL
);
4094 list
= isl_id_list_alloc(ctx
, 4);
4095 list
= isl_id_list_add(list
, a
);
4096 list
= isl_id_list_add(list
, b
);
4097 list
= isl_id_list_add(list
, c
);
4098 list
= isl_id_list_add(list
, d
);
4099 list
= isl_id_list_drop(list
, 1, 1);
4101 if (isl_id_list_n_id(list
) != 3) {
4102 isl_id_list_free(list
);
4103 isl_die(ctx
, isl_error_unknown
,
4104 "unexpected number of elements in list", return -1);
4107 id
= isl_id_list_get_id(list
, 0);
4110 id
= isl_id_list_get_id(list
, 1);
4113 id
= isl_id_list_get_id(list
, 2);
4117 isl_id_list_free(list
);
4120 isl_die(ctx
, isl_error_unknown
,
4121 "unexpected elements in list", return -1);
4126 const char *set_conversion_tests
[] = {
4127 "[N] -> { [i] : N - 1 <= 2 i <= N }",
4128 "[N] -> { [i] : exists a : i = 4 a and N - 1 <= i <= N }",
4129 "[N] -> { [i,j] : exists a : i = 4 a and N - 1 <= i, 2j <= N }",
4130 "[N] -> { [[i]->[j]] : exists a : i = 4 a and N - 1 <= i, 2j <= N }",
4131 "[N] -> { [3*floor(N/2) + 5*floor(N/3)] }",
4134 /* Check that converting from isl_set to isl_pw_multi_aff and back
4135 * to isl_set produces the original isl_set.
4137 static int test_set_conversion(isl_ctx
*ctx
)
4141 isl_set
*set1
, *set2
;
4142 isl_pw_multi_aff
*pma
;
4145 for (i
= 0; i
< ARRAY_SIZE(set_conversion_tests
); ++i
) {
4146 str
= set_conversion_tests
[i
];
4147 set1
= isl_set_read_from_str(ctx
, str
);
4148 pma
= isl_pw_multi_aff_from_set(isl_set_copy(set1
));
4149 set2
= isl_set_from_pw_multi_aff(pma
);
4150 equal
= isl_set_is_equal(set1
, set2
);
4157 isl_die(ctx
, isl_error_unknown
, "bad conversion",
4164 /* Check that converting from isl_map to isl_pw_multi_aff and back
4165 * to isl_map produces the original isl_map.
4167 static int test_map_conversion(isl_ctx
*ctx
)
4170 isl_map
*map1
, *map2
;
4171 isl_pw_multi_aff
*pma
;
4174 str
= "{ [a, b, c, d] -> s0[a, b, e, f] : "
4175 "exists (e0 = [(a - 2c)/3], e1 = [(-4 + b - 5d)/9], "
4176 "e2 = [(-d + f)/9]: 3e0 = a - 2c and 9e1 = -4 + b - 5d and "
4177 "9e2 = -d + f and f >= 0 and f <= 8 and 9e >= -5 - 2a and "
4179 map1
= isl_map_read_from_str(ctx
, str
);
4180 pma
= isl_pw_multi_aff_from_map(isl_map_copy(map1
));
4181 map2
= isl_map_from_pw_multi_aff(pma
);
4182 equal
= isl_map_is_equal(map1
, map2
);
4189 isl_die(ctx
, isl_error_unknown
, "bad conversion", return -1);
4194 static int test_conversion(isl_ctx
*ctx
)
4196 if (test_set_conversion(ctx
) < 0)
4198 if (test_map_conversion(ctx
) < 0)
4203 /* Check that isl_basic_map_curry does not modify input.
4205 static int test_curry(isl_ctx
*ctx
)
4208 isl_basic_map
*bmap1
, *bmap2
;
4211 str
= "{ [A[] -> B[]] -> C[] }";
4212 bmap1
= isl_basic_map_read_from_str(ctx
, str
);
4213 bmap2
= isl_basic_map_curry(isl_basic_map_copy(bmap1
));
4214 equal
= isl_basic_map_is_equal(bmap1
, bmap2
);
4215 isl_basic_map_free(bmap1
);
4216 isl_basic_map_free(bmap2
);
4221 isl_die(ctx
, isl_error_unknown
,
4222 "curried map should not be equal to original",
4232 } preimage_tests
[] = {
4233 { "{ B[i,j] : 0 <= i < 10 and 0 <= j < 100 }",
4234 "{ A[j,i] -> B[i,j] }",
4235 "{ A[j,i] : 0 <= i < 10 and 0 <= j < 100 }" },
4236 { "{ rat: B[i,j] : 0 <= i, j and 3 i + 5 j <= 100 }",
4237 "{ A[a,b] -> B[a/2,b/6] }",
4238 "{ rat: A[a,b] : 0 <= a, b and 9 a + 5 b <= 600 }" },
4239 { "{ B[i,j] : 0 <= i, j and 3 i + 5 j <= 100 }",
4240 "{ A[a,b] -> B[a/2,b/6] }",
4241 "{ A[a,b] : 0 <= a, b and 9 a + 5 b <= 600 and "
4242 "exists i,j : a = 2 i and b = 6 j }" },
4243 { "[n] -> { S[i] : 0 <= i <= 100 }", "[n] -> { S[n] }",
4244 "[n] -> { : 0 <= n <= 100 }" },
4245 { "{ B[i] : 0 <= i < 100 and exists a : i = 4 a }",
4246 "{ A[a] -> B[2a] }",
4247 "{ A[a] : 0 <= a < 50 and exists b : a = 2 b }" },
4248 { "{ B[i] : 0 <= i < 100 and exists a : i = 4 a }",
4249 "{ A[a] -> B[([a/2])] }",
4250 "{ A[a] : 0 <= a < 200 and exists b : [a/2] = 4 b }" },
4251 { "{ B[i,j,k] : 0 <= i,j,k <= 100 }",
4252 "{ A[a] -> B[a,a,a/3] }",
4253 "{ A[a] : 0 <= a <= 100 and exists b : a = 3 b }" },
4254 { "{ B[i,j] : j = [(i)/2] } ", "{ A[i,j] -> B[i/3,j] }",
4255 "{ A[i,j] : j = [(i)/6] and exists a : i = 3 a }" },
4258 static int test_preimage_basic_set(isl_ctx
*ctx
)
4261 isl_basic_set
*bset1
, *bset2
;
4265 for (i
= 0; i
< ARRAY_SIZE(preimage_tests
); ++i
) {
4266 bset1
= isl_basic_set_read_from_str(ctx
, preimage_tests
[i
].set
);
4267 ma
= isl_multi_aff_read_from_str(ctx
, preimage_tests
[i
].ma
);
4268 bset2
= isl_basic_set_read_from_str(ctx
, preimage_tests
[i
].res
);
4269 bset1
= isl_basic_set_preimage_multi_aff(bset1
, ma
);
4270 equal
= isl_basic_set_is_equal(bset1
, bset2
);
4271 isl_basic_set_free(bset1
);
4272 isl_basic_set_free(bset2
);
4276 isl_die(ctx
, isl_error_unknown
, "bad preimage",
4287 } preimage_domain_tests
[] = {
4288 { "{ B[i,j] -> C[2i + 3j] : 0 <= i < 10 and 0 <= j < 100 }",
4289 "{ A[j,i] -> B[i,j] }",
4290 "{ A[j,i] -> C[2i + 3j] : 0 <= i < 10 and 0 <= j < 100 }" },
4291 { "{ B[i] -> C[i]; D[i] -> E[i] }",
4292 "{ A[i] -> B[i + 1] }",
4293 "{ A[i] -> C[i + 1] }" },
4294 { "{ B[i] -> C[i]; B[i] -> E[i] }",
4295 "{ A[i] -> B[i + 1] }",
4296 "{ A[i] -> C[i + 1]; A[i] -> E[i + 1] }" },
4297 { "{ B[i] -> C[([i/2])] }",
4298 "{ A[i] -> B[2i] }",
4299 "{ A[i] -> C[i] }" },
4300 { "{ B[i,j] -> C[([i/2]), ([(i+j)/3])] }",
4301 "{ A[i] -> B[([i/5]), ([i/7])] }",
4302 "{ A[i] -> C[([([i/5])/2]), ([(([i/5])+([i/7]))/3])] }" },
4303 { "[N] -> { B[i] -> C[([N/2]), i, ([N/3])] }",
4304 "[N] -> { A[] -> B[([N/5])] }",
4305 "[N] -> { A[] -> C[([N/2]), ([N/5]), ([N/3])] }" },
4306 { "{ B[i] -> C[i] : exists a : i = 5 a }",
4307 "{ A[i] -> B[2i] }",
4308 "{ A[i] -> C[2i] : exists a : 2i = 5 a }" },
4309 { "{ B[i] -> C[i] : exists a : i = 2 a; "
4310 "B[i] -> D[i] : exists a : i = 2 a + 1 }",
4311 "{ A[i] -> B[2i] }",
4312 "{ A[i] -> C[2i] }" },
4315 static int test_preimage_union_map(isl_ctx
*ctx
)
4318 isl_union_map
*umap1
, *umap2
;
4322 for (i
= 0; i
< ARRAY_SIZE(preimage_domain_tests
); ++i
) {
4323 umap1
= isl_union_map_read_from_str(ctx
,
4324 preimage_domain_tests
[i
].map
);
4325 ma
= isl_multi_aff_read_from_str(ctx
,
4326 preimage_domain_tests
[i
].ma
);
4327 umap2
= isl_union_map_read_from_str(ctx
,
4328 preimage_domain_tests
[i
].res
);
4329 umap1
= isl_union_map_preimage_domain_multi_aff(umap1
, ma
);
4330 equal
= isl_union_map_is_equal(umap1
, umap2
);
4331 isl_union_map_free(umap1
);
4332 isl_union_map_free(umap2
);
4336 isl_die(ctx
, isl_error_unknown
, "bad preimage",
4343 static int test_preimage(isl_ctx
*ctx
)
4345 if (test_preimage_basic_set(ctx
) < 0)
4347 if (test_preimage_union_map(ctx
) < 0)
4357 } pullback_tests
[] = {
4358 { "{ B[i,j] -> C[i + 2j] }" , "{ A[a,b] -> B[b,a] }",
4359 "{ A[a,b] -> C[b + 2a] }" },
4360 { "{ B[i] -> C[2i] }", "{ A[a] -> B[(a)/2] }", "{ A[a] -> C[a] }" },
4361 { "{ B[i] -> C[(i)/2] }", "{ A[a] -> B[2a] }", "{ A[a] -> C[a] }" },
4362 { "{ B[i] -> C[(i)/2] }", "{ A[a] -> B[(a)/3] }",
4363 "{ A[a] -> C[(a)/6] }" },
4364 { "{ B[i] -> C[2i] }", "{ A[a] -> B[5a] }", "{ A[a] -> C[10a] }" },
4365 { "{ B[i] -> C[2i] }", "{ A[a] -> B[(a)/3] }",
4366 "{ A[a] -> C[(2a)/3] }" },
4367 { "{ B[i,j] -> C[i + j] }", "{ A[a] -> B[a,a] }", "{ A[a] -> C[2a] }"},
4368 { "{ B[a] -> C[a,a] }", "{ A[i,j] -> B[i + j] }",
4369 "{ A[i,j] -> C[i + j, i + j] }"},
4370 { "{ B[i] -> C[([i/2])] }", "{ B[5] }", "{ C[2] }" },
4371 { "[n] -> { B[i,j] -> C[([i/2]) + 2j] }",
4372 "[n] -> { B[n,[n/3]] }", "[n] -> { C[([n/2]) + 2*[n/3]] }", },
4373 { "{ [i, j] -> [floor((i)/4) + floor((2*i+j)/5)] }",
4374 "{ [i, j] -> [floor((i)/3), j] }",
4375 "{ [i, j] -> [(floor((i)/12) + floor((j + 2*floor((i)/3))/5))] }" },
4378 static int test_pullback(isl_ctx
*ctx
)
4381 isl_multi_aff
*ma1
, *ma2
;
4385 for (i
= 0; i
< ARRAY_SIZE(pullback_tests
); ++i
) {
4386 ma1
= isl_multi_aff_read_from_str(ctx
, pullback_tests
[i
].ma1
);
4387 ma
= isl_multi_aff_read_from_str(ctx
, pullback_tests
[i
].ma
);
4388 ma2
= isl_multi_aff_read_from_str(ctx
, pullback_tests
[i
].res
);
4389 ma1
= isl_multi_aff_pullback_multi_aff(ma1
, ma
);
4390 equal
= isl_multi_aff_plain_is_equal(ma1
, ma2
);
4391 isl_multi_aff_free(ma1
);
4392 isl_multi_aff_free(ma2
);
4396 isl_die(ctx
, isl_error_unknown
, "bad pullback",
4403 /* Check that negation is printed correctly and that equal expressions
4404 * are correctly identified.
4406 static int test_ast(isl_ctx
*ctx
)
4408 isl_ast_expr
*expr
, *expr1
, *expr2
, *expr3
;
4412 expr1
= isl_ast_expr_from_id(isl_id_alloc(ctx
, "A", NULL
));
4413 expr2
= isl_ast_expr_from_id(isl_id_alloc(ctx
, "B", NULL
));
4414 expr
= isl_ast_expr_add(expr1
, expr2
);
4415 expr2
= isl_ast_expr_copy(expr
);
4416 expr
= isl_ast_expr_neg(expr
);
4417 expr2
= isl_ast_expr_neg(expr2
);
4418 equal
= isl_ast_expr_is_equal(expr
, expr2
);
4419 str
= isl_ast_expr_to_str(expr
);
4420 ok
= str
? !strcmp(str
, "-(A + B)") : -1;
4422 isl_ast_expr_free(expr
);
4423 isl_ast_expr_free(expr2
);
4425 if (ok
< 0 || equal
< 0)
4428 isl_die(ctx
, isl_error_unknown
,
4429 "equal expressions not considered equal", return -1);
4431 isl_die(ctx
, isl_error_unknown
,
4432 "isl_ast_expr printed incorrectly", return -1);
4434 expr1
= isl_ast_expr_from_id(isl_id_alloc(ctx
, "A", NULL
));
4435 expr2
= isl_ast_expr_from_id(isl_id_alloc(ctx
, "B", NULL
));
4436 expr
= isl_ast_expr_add(expr1
, expr2
);
4437 expr3
= isl_ast_expr_from_id(isl_id_alloc(ctx
, "C", NULL
));
4438 expr
= isl_ast_expr_sub(expr3
, expr
);
4439 str
= isl_ast_expr_to_str(expr
);
4440 ok
= str
? !strcmp(str
, "C - (A + B)") : -1;
4442 isl_ast_expr_free(expr
);
4447 isl_die(ctx
, isl_error_unknown
,
4448 "isl_ast_expr printed incorrectly", return -1);
4453 /* Check that isl_ast_build_expr_from_set returns a valid expression
4454 * for an empty set. Note that isl_ast_build_expr_from_set getting
4455 * called on an empty set probably indicates a bug in the caller.
4457 static int test_ast_build(isl_ctx
*ctx
)
4460 isl_ast_build
*build
;
4463 set
= isl_set_universe(isl_space_params_alloc(ctx
, 0));
4464 build
= isl_ast_build_from_context(set
);
4466 set
= isl_set_empty(isl_space_params_alloc(ctx
, 0));
4467 expr
= isl_ast_build_expr_from_set(build
, set
);
4469 isl_ast_expr_free(expr
);
4470 isl_ast_build_free(build
);
4478 /* Internal data structure for before_for and after_for callbacks.
4480 * depth is the current depth
4481 * before is the number of times before_for has been called
4482 * after is the number of times after_for has been called
4484 struct isl_test_codegen_data
{
4490 /* This function is called before each for loop in the AST generated
4491 * from test_ast_gen1.
4493 * Increment the number of calls and the depth.
4494 * Check that the space returned by isl_ast_build_get_schedule_space
4495 * matches the target space of the schedule returned by
4496 * isl_ast_build_get_schedule.
4497 * Return an isl_id that is checked by the corresponding call
4500 static __isl_give isl_id
*before_for(__isl_keep isl_ast_build
*build
,
4503 struct isl_test_codegen_data
*data
= user
;
4506 isl_union_map
*schedule
;
4507 isl_union_set
*uset
;
4512 ctx
= isl_ast_build_get_ctx(build
);
4514 if (data
->before
>= 3)
4515 isl_die(ctx
, isl_error_unknown
,
4516 "unexpected number of for nodes", return NULL
);
4517 if (data
->depth
>= 2)
4518 isl_die(ctx
, isl_error_unknown
,
4519 "unexpected depth", return NULL
);
4521 snprintf(name
, sizeof(name
), "d%d", data
->depth
);
4525 schedule
= isl_ast_build_get_schedule(build
);
4526 uset
= isl_union_map_range(schedule
);
4529 if (isl_union_set_n_set(uset
) != 1) {
4530 isl_union_set_free(uset
);
4531 isl_die(ctx
, isl_error_unknown
,
4532 "expecting single range space", return NULL
);
4535 space
= isl_ast_build_get_schedule_space(build
);
4536 set
= isl_union_set_extract_set(uset
, space
);
4537 isl_union_set_free(uset
);
4538 empty
= isl_set_is_empty(set
);
4544 isl_die(ctx
, isl_error_unknown
,
4545 "spaces don't match", return NULL
);
4547 return isl_id_alloc(ctx
, name
, NULL
);
4550 /* This function is called after each for loop in the AST generated
4551 * from test_ast_gen1.
4553 * Increment the number of calls and decrement the depth.
4554 * Check that the annotation attached to the node matches
4555 * the isl_id returned by the corresponding call to before_for.
4557 static __isl_give isl_ast_node
*after_for(__isl_take isl_ast_node
*node
,
4558 __isl_keep isl_ast_build
*build
, void *user
)
4560 struct isl_test_codegen_data
*data
= user
;
4568 if (data
->after
> data
->before
)
4569 isl_die(isl_ast_node_get_ctx(node
), isl_error_unknown
,
4570 "mismatch in number of for nodes",
4571 return isl_ast_node_free(node
));
4573 id
= isl_ast_node_get_annotation(node
);
4575 isl_die(isl_ast_node_get_ctx(node
), isl_error_unknown
,
4576 "missing annotation", return isl_ast_node_free(node
));
4578 name
= isl_id_get_name(id
);
4579 valid
= name
&& atoi(name
+ 1) == data
->depth
;
4583 isl_die(isl_ast_node_get_ctx(node
), isl_error_unknown
,
4584 "wrong annotation", return isl_ast_node_free(node
));
4589 /* Check that the before_each_for and after_each_for callbacks
4590 * are called for each for loop in the generated code,
4591 * that they are called in the right order and that the isl_id
4592 * returned from the before_each_for callback is attached to
4593 * the isl_ast_node passed to the corresponding after_each_for call.
4595 static int test_ast_gen1(isl_ctx
*ctx
)
4599 isl_union_map
*schedule
;
4600 isl_ast_build
*build
;
4602 struct isl_test_codegen_data data
;
4604 str
= "[N] -> { : N >= 10 }";
4605 set
= isl_set_read_from_str(ctx
, str
);
4606 str
= "[N] -> { A[i,j] -> S[8,i,3,j] : 0 <= i,j <= N; "
4607 "B[i,j] -> S[8,j,9,i] : 0 <= i,j <= N }";
4608 schedule
= isl_union_map_read_from_str(ctx
, str
);
4613 build
= isl_ast_build_from_context(set
);
4614 build
= isl_ast_build_set_before_each_for(build
,
4615 &before_for
, &data
);
4616 build
= isl_ast_build_set_after_each_for(build
,
4618 tree
= isl_ast_build_ast_from_schedule(build
, schedule
);
4619 isl_ast_build_free(build
);
4623 isl_ast_node_free(tree
);
4625 if (data
.before
!= 3 || data
.after
!= 3)
4626 isl_die(ctx
, isl_error_unknown
,
4627 "unexpected number of for nodes", return -1);
4632 /* Check that the AST generator handles domains that are integrally disjoint
4633 * but not ratinoally disjoint.
4635 static int test_ast_gen2(isl_ctx
*ctx
)
4639 isl_union_map
*schedule
;
4640 isl_union_map
*options
;
4641 isl_ast_build
*build
;
4644 str
= "{ A[i,j] -> [i,j] : 0 <= i,j <= 1 }";
4645 schedule
= isl_union_map_read_from_str(ctx
, str
);
4646 set
= isl_set_universe(isl_space_params_alloc(ctx
, 0));
4647 build
= isl_ast_build_from_context(set
);
4649 str
= "{ [i,j] -> atomic[1] : i + j = 1; [i,j] -> unroll[1] : i = j }";
4650 options
= isl_union_map_read_from_str(ctx
, str
);
4651 build
= isl_ast_build_set_options(build
, options
);
4652 tree
= isl_ast_build_ast_from_schedule(build
, schedule
);
4653 isl_ast_build_free(build
);
4656 isl_ast_node_free(tree
);
4661 /* Increment *user on each call.
4663 static __isl_give isl_ast_node
*count_domains(__isl_take isl_ast_node
*node
,
4664 __isl_keep isl_ast_build
*build
, void *user
)
4673 /* Test that unrolling tries to minimize the number of instances.
4674 * In particular, for the schedule given below, make sure it generates
4675 * 3 nodes (rather than 101).
4677 static int test_ast_gen3(isl_ctx
*ctx
)
4681 isl_union_map
*schedule
;
4682 isl_union_map
*options
;
4683 isl_ast_build
*build
;
4687 str
= "[n] -> { A[i] -> [i] : 0 <= i <= 100 and n <= i <= n + 2 }";
4688 schedule
= isl_union_map_read_from_str(ctx
, str
);
4689 set
= isl_set_universe(isl_space_params_alloc(ctx
, 0));
4691 str
= "{ [i] -> unroll[0] }";
4692 options
= isl_union_map_read_from_str(ctx
, str
);
4694 build
= isl_ast_build_from_context(set
);
4695 build
= isl_ast_build_set_options(build
, options
);
4696 build
= isl_ast_build_set_at_each_domain(build
,
4697 &count_domains
, &n_domain
);
4698 tree
= isl_ast_build_ast_from_schedule(build
, schedule
);
4699 isl_ast_build_free(build
);
4703 isl_ast_node_free(tree
);
4706 isl_die(ctx
, isl_error_unknown
,
4707 "unexpected number of for nodes", return -1);
4712 /* Check that if the ast_build_exploit_nested_bounds options is set,
4713 * we do not get an outer if node in the generated AST,
4714 * while we do get such an outer if node if the options is not set.
4716 static int test_ast_gen4(isl_ctx
*ctx
)
4720 isl_union_map
*schedule
;
4721 isl_ast_build
*build
;
4723 enum isl_ast_node_type type
;
4726 enb
= isl_options_get_ast_build_exploit_nested_bounds(ctx
);
4727 str
= "[N,M] -> { A[i,j] -> [i,j] : 0 <= i <= N and 0 <= j <= M }";
4729 isl_options_set_ast_build_exploit_nested_bounds(ctx
, 1);
4731 schedule
= isl_union_map_read_from_str(ctx
, str
);
4732 set
= isl_set_universe(isl_space_params_alloc(ctx
, 0));
4733 build
= isl_ast_build_from_context(set
);
4734 tree
= isl_ast_build_ast_from_schedule(build
, schedule
);
4735 isl_ast_build_free(build
);
4739 type
= isl_ast_node_get_type(tree
);
4740 isl_ast_node_free(tree
);
4742 if (type
== isl_ast_node_if
)
4743 isl_die(ctx
, isl_error_unknown
,
4744 "not expecting if node", return -1);
4746 isl_options_set_ast_build_exploit_nested_bounds(ctx
, 0);
4748 schedule
= isl_union_map_read_from_str(ctx
, str
);
4749 set
= isl_set_universe(isl_space_params_alloc(ctx
, 0));
4750 build
= isl_ast_build_from_context(set
);
4751 tree
= isl_ast_build_ast_from_schedule(build
, schedule
);
4752 isl_ast_build_free(build
);
4756 type
= isl_ast_node_get_type(tree
);
4757 isl_ast_node_free(tree
);
4759 if (type
!= isl_ast_node_if
)
4760 isl_die(ctx
, isl_error_unknown
,
4761 "expecting if node", return -1);
4763 isl_options_set_ast_build_exploit_nested_bounds(ctx
, enb
);
4768 /* This function is called for each leaf in the AST generated
4769 * from test_ast_gen5.
4771 * We finalize the AST generation by extending the outer schedule
4772 * with a zero-dimensional schedule. If this results in any for loops,
4773 * then this means that we did not pass along enough information
4774 * about the outer schedule to the inner AST generation.
4776 static __isl_give isl_ast_node
*create_leaf(__isl_take isl_ast_build
*build
,
4779 isl_union_map
*schedule
, *extra
;
4782 schedule
= isl_ast_build_get_schedule(build
);
4783 extra
= isl_union_map_copy(schedule
);
4784 extra
= isl_union_map_from_domain(isl_union_map_domain(extra
));
4785 schedule
= isl_union_map_range_product(schedule
, extra
);
4786 tree
= isl_ast_build_ast_from_schedule(build
, schedule
);
4787 isl_ast_build_free(build
);
4792 if (isl_ast_node_get_type(tree
) == isl_ast_node_for
)
4793 isl_die(isl_ast_node_get_ctx(tree
), isl_error_unknown
,
4794 "code should not contain any for loop",
4795 return isl_ast_node_free(tree
));
4800 /* Check that we do not lose any information when going back and
4801 * forth between internal and external schedule.
4803 * In particular, we create an AST where we unroll the only
4804 * non-constant dimension in the schedule. We therefore do
4805 * not expect any for loops in the AST. However, older versions
4806 * of isl would not pass along enough information about the outer
4807 * schedule when performing an inner code generation from a create_leaf
4808 * callback, resulting in the inner code generation producing a for loop.
4810 static int test_ast_gen5(isl_ctx
*ctx
)
4814 isl_union_map
*schedule
, *options
;
4815 isl_ast_build
*build
;
4818 str
= "{ A[] -> [1, 1, 2]; B[i] -> [1, i, 0] : i >= 1 and i <= 2 }";
4819 schedule
= isl_union_map_read_from_str(ctx
, str
);
4821 str
= "{ [a, b, c] -> unroll[1] : exists (e0 = [(a)/4]: "
4822 "4e0 >= -1 + a - b and 4e0 <= -2 + a + b) }";
4823 options
= isl_union_map_read_from_str(ctx
, str
);
4825 set
= isl_set_universe(isl_space_params_alloc(ctx
, 0));
4826 build
= isl_ast_build_from_context(set
);
4827 build
= isl_ast_build_set_options(build
, options
);
4828 build
= isl_ast_build_set_create_leaf(build
, &create_leaf
, NULL
);
4829 tree
= isl_ast_build_ast_from_schedule(build
, schedule
);
4830 isl_ast_build_free(build
);
4831 isl_ast_node_free(tree
);
4838 static int test_ast_gen(isl_ctx
*ctx
)
4840 if (test_ast_gen1(ctx
) < 0)
4842 if (test_ast_gen2(ctx
) < 0)
4844 if (test_ast_gen3(ctx
) < 0)
4846 if (test_ast_gen4(ctx
) < 0)
4848 if (test_ast_gen5(ctx
) < 0)
4853 /* Check if dropping output dimensions from an isl_pw_multi_aff
4856 static int test_pw_multi_aff(isl_ctx
*ctx
)
4859 isl_pw_multi_aff
*pma1
, *pma2
;
4862 str
= "{ [i,j] -> [i+j, 4i-j] }";
4863 pma1
= isl_pw_multi_aff_read_from_str(ctx
, str
);
4864 str
= "{ [i,j] -> [4i-j] }";
4865 pma2
= isl_pw_multi_aff_read_from_str(ctx
, str
);
4867 pma1
= isl_pw_multi_aff_drop_dims(pma1
, isl_dim_out
, 0, 1);
4869 equal
= isl_pw_multi_aff_plain_is_equal(pma1
, pma2
);
4871 isl_pw_multi_aff_free(pma1
);
4872 isl_pw_multi_aff_free(pma2
);
4876 isl_die(ctx
, isl_error_unknown
,
4877 "expressions not equal", return -1);
4882 /* Check that we can properly parse multi piecewise affine expressions
4883 * where the piecewise affine expressions have different domains.
4885 static int test_multi_pw_aff(isl_ctx
*ctx
)
4888 isl_set
*dom
, *dom2
;
4889 isl_multi_pw_aff
*mpa1
, *mpa2
;
4894 mpa1
= isl_multi_pw_aff_read_from_str(ctx
, "{ [i] -> [i] }");
4895 dom
= isl_set_read_from_str(ctx
, "{ [i] : i > 0 }");
4896 mpa1
= isl_multi_pw_aff_intersect_domain(mpa1
, dom
);
4897 mpa2
= isl_multi_pw_aff_read_from_str(ctx
, "{ [i] -> [2i] }");
4898 mpa2
= isl_multi_pw_aff_flat_range_product(mpa1
, mpa2
);
4899 str
= "{ [i] -> [(i : i > 0), 2i] }";
4900 mpa1
= isl_multi_pw_aff_read_from_str(ctx
, str
);
4902 equal
= isl_multi_pw_aff_plain_is_equal(mpa1
, mpa2
);
4904 pa
= isl_multi_pw_aff_get_pw_aff(mpa1
, 0);
4905 dom
= isl_pw_aff_domain(pa
);
4906 pa
= isl_multi_pw_aff_get_pw_aff(mpa1
, 1);
4907 dom2
= isl_pw_aff_domain(pa
);
4908 equal_domain
= isl_set_is_equal(dom
, dom2
);
4912 isl_multi_pw_aff_free(mpa1
);
4913 isl_multi_pw_aff_free(mpa2
);
4918 isl_die(ctx
, isl_error_unknown
,
4919 "expressions not equal", return -1);
4921 if (equal_domain
< 0)
4924 isl_die(ctx
, isl_error_unknown
,
4925 "domains unexpectedly equal", return -1);
4930 /* This is a regression test for a bug where isl_basic_map_simplify
4931 * would end up in an infinite loop. In particular, we construct
4932 * an empty basic set that is not obviously empty.
4933 * isl_basic_set_is_empty marks the basic set as empty.
4934 * After projecting out i3, the variable can be dropped completely,
4935 * but isl_basic_map_simplify refrains from doing so if the basic set
4936 * is empty and would end up in an infinite loop if it didn't test
4937 * explicitly for empty basic maps in the outer loop.
4939 static int test_simplify(isl_ctx
*ctx
)
4942 isl_basic_set
*bset
;
4945 str
= "{ [i0, i1, i2, i3] : i0 >= -2 and 6i2 <= 4 + i0 + 5i1 and "
4946 "i2 <= 22 and 75i2 <= 111 + 13i0 + 60i1 and "
4947 "25i2 >= 38 + 6i0 + 20i1 and i0 <= -1 and i2 >= 20 and "
4949 bset
= isl_basic_set_read_from_str(ctx
, str
);
4950 empty
= isl_basic_set_is_empty(bset
);
4951 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 3, 1);
4952 isl_basic_set_free(bset
);
4956 isl_die(ctx
, isl_error_unknown
,
4957 "basic set should be empty", return -1);
4962 /* This is a regression test for a bug where isl_tab_basic_map_partial_lexopt
4963 * with gbr context would fail to disable the use of the shifted tableau
4964 * when transferring equalities for the input to the context, resulting
4965 * in invalid sample values.
4967 static int test_partial_lexmin(isl_ctx
*ctx
)
4970 isl_basic_set
*bset
;
4971 isl_basic_map
*bmap
;
4974 str
= "{ [1, b, c, 1 - c] -> [e] : 2e <= -c and 2e >= -3 + c }";
4975 bmap
= isl_basic_map_read_from_str(ctx
, str
);
4976 str
= "{ [a, b, c, d] : c <= 1 and 2d >= 6 - 4b - c }";
4977 bset
= isl_basic_set_read_from_str(ctx
, str
);
4978 map
= isl_basic_map_partial_lexmin(bmap
, bset
, NULL
);
4987 /* Check that the variable compression performed on the existentially
4988 * quantified variables inside isl_basic_set_compute_divs is not confused
4989 * by the implicit equalities among the parameters.
4991 static int test_compute_divs(isl_ctx
*ctx
)
4994 isl_basic_set
*bset
;
4997 str
= "[a, b, c, d, e] -> { [] : exists (e0: 2d = b and a <= 124 and "
4998 "b <= 2046 and b >= 0 and b <= 60 + 64a and 2e >= b + 2c and "
4999 "2e >= b and 2e <= 1 + b and 2e <= 1 + b + 2c and "
5000 "32768e0 >= -124 + a and 2097152e0 <= 60 + 64a - b) }";
5001 bset
= isl_basic_set_read_from_str(ctx
, str
);
5002 set
= isl_basic_set_compute_divs(bset
);
5014 { "{ rat: [i] : 0 <= i <= 10 }",
5015 "{ rat: coefficients[[cst] -> [a]] : cst >= 0 and 10a + cst >= 0 }" },
5016 { "{ rat: [i] : FALSE }",
5017 "{ rat: coefficients[[cst] -> [a]] }" },
5019 "{ rat: coefficients[[cst] -> [0]] : cst >= 0 }" },
5026 { "{ rat: coefficients[[cst] -> [a]] : cst >= 0 and 10a + cst >= 0 }",
5027 "{ rat: [i] : 0 <= i <= 10 }" },
5028 { "{ rat: coefficients[[cst] -> [a]] : FALSE }",
5030 { "{ rat: coefficients[[cst] -> [a]] }",
5031 "{ rat: [i] : FALSE }" },
5034 /* Test the basic functionality of isl_basic_set_coefficients and
5035 * isl_basic_set_solutions.
5037 static int test_dual(isl_ctx
*ctx
)
5041 for (i
= 0; i
< ARRAY_SIZE(coef_tests
); ++i
) {
5043 isl_basic_set
*bset1
, *bset2
;
5045 bset1
= isl_basic_set_read_from_str(ctx
, coef_tests
[i
].set
);
5046 bset2
= isl_basic_set_read_from_str(ctx
, coef_tests
[i
].dual
);
5047 bset1
= isl_basic_set_coefficients(bset1
);
5048 equal
= isl_basic_set_is_equal(bset1
, bset2
);
5049 isl_basic_set_free(bset1
);
5050 isl_basic_set_free(bset2
);
5054 isl_die(ctx
, isl_error_unknown
,
5055 "incorrect dual", return -1);
5058 for (i
= 0; i
< ARRAY_SIZE(sol_tests
); ++i
) {
5060 isl_basic_set
*bset1
, *bset2
;
5062 bset1
= isl_basic_set_read_from_str(ctx
, sol_tests
[i
].set
);
5063 bset2
= isl_basic_set_read_from_str(ctx
, sol_tests
[i
].dual
);
5064 bset1
= isl_basic_set_solutions(bset1
);
5065 equal
= isl_basic_set_is_equal(bset1
, bset2
);
5066 isl_basic_set_free(bset1
);
5067 isl_basic_set_free(bset2
);
5071 isl_die(ctx
, isl_error_unknown
,
5072 "incorrect dual", return -1);
5080 int (*fn
)(isl_ctx
*ctx
);
5082 { "dual", &test_dual
},
5083 { "dependence analysis", &test_flow
},
5084 { "val", &test_val
},
5085 { "compute divs", &test_compute_divs
},
5086 { "partial lexmin", &test_partial_lexmin
},
5087 { "simplify", &test_simplify
},
5088 { "curry", &test_curry
},
5089 { "piecewise multi affine expressions", &test_pw_multi_aff
},
5090 { "multi piecewise affine expressions", &test_multi_pw_aff
},
5091 { "conversion", &test_conversion
},
5092 { "list", &test_list
},
5093 { "align parameters", &test_align_parameters
},
5094 { "preimage", &test_preimage
},
5095 { "pullback", &test_pullback
},
5096 { "AST", &test_ast
},
5097 { "AST build", &test_ast_build
},
5098 { "AST generation", &test_ast_gen
},
5099 { "eliminate", &test_eliminate
},
5100 { "residue class", &test_residue_class
},
5101 { "div", &test_div
},
5102 { "slice", &test_slice
},
5103 { "fixed power", &test_fixed_power
},
5104 { "sample", &test_sample
},
5105 { "output", &test_output
},
5106 { "vertices", &test_vertices
},
5107 { "fixed", &test_fixed
},
5108 { "equal", &test_equal
},
5109 { "disjoint", &test_disjoint
},
5110 { "product", &test_product
},
5111 { "dim_max", &test_dim_max
},
5112 { "affine", &test_aff
},
5113 { "injective", &test_injective
},
5114 { "schedule", &test_schedule
},
5115 { "union_pw", &test_union_pw
},
5116 { "parse", &test_parse
},
5117 { "single-valued", &test_sv
},
5118 { "affine hull", &test_affine_hull
},
5119 { "coalesce", &test_coalesce
},
5120 { "factorize", &test_factorize
},
5121 { "subset", &test_subset
},
5122 { "subtract", &test_subtract
},
5123 { "lexmin", &test_lexmin
},
5124 { "min", &test_min
},
5125 { "gist", &test_gist
},
5126 { "piecewise quasi-polynomials", &test_pwqp
},
5129 int main(int argc
, char **argv
)
5132 struct isl_ctx
*ctx
;
5133 struct isl_options
*options
;
5135 srcdir
= getenv("srcdir");
5138 options
= isl_options_new_with_defaults();
5140 argc
= isl_options_parse(options
, argc
, argv
, ISL_ARG_ALL
);
5142 ctx
= isl_ctx_alloc_with_options(&isl_options_args
, options
);
5143 for (i
= 0; i
< ARRAY_SIZE(tests
); ++i
) {
5144 printf("%s\n", tests
[i
].name
);
5145 if (tests
[i
].fn(ctx
) < 0)
5151 test_split_periods(ctx
);
5153 test_bijective(ctx
);
5157 test_construction(ctx
);
5159 test_application(ctx
);
5160 test_convex_hull(ctx
);