2015-02-05 04:55:43 +08:00
|
|
|
isl is a thread-safe C library for manipulating sets and relations
|
|
|
|
of integer points bounded by affine constraints. The descriptions of
|
|
|
|
the sets and relations may involve both parameters and existentially
|
|
|
|
quantified variables. All computations are performed in exact integer
|
|
|
|
arithmetic using GMP.
|
|
|
|
|
|
|
|
isl is released under the MIT license, but depends on the LGPL GMP
|
|
|
|
library.
|
|
|
|
|
|
|
|
Minimal compilation instructions:
|
|
|
|
|
|
|
|
./configure
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
|
|
|
If you are taking the source from the git repository, then you first
|
|
|
|
need to do
|
|
|
|
|
|
|
|
git clone git://repo.or.cz/isl.git
|
|
|
|
./autogen.sh
|
|
|
|
|
|
|
|
For more information, see doc/user.pod or the generated documentation.
|
|
|
|
|
[Polly] Update ISL to isl-0.22.1-87-gfee05a13.
The primary motivation is to fix an assertion failure in
isl_basic_map_alloc_equality:
isl_assert(ctx, room_for_con(bmap, 1), return -1);
Although the assertion does not occur anymore, I could not identify
which of ISL's commits fixed it.
Compared to the previous ISL version, Polly requires some changes for this update
* Since ISL commit
20d3574 "perform parameter alignment by modifying both arguments to function"
isl_*_gist_* and similar functions do not always align the paramter
list anymore. This caused the parameter lists in JScop files to
become out-of-sync. Since many regression tests use JScop files with
a fixed parameter list and order, we explicitly call align_params to
ensure a predictable parameter list.
* ISL changed some return types to isl_size, a typedef of (signed) int.
This caused some issues where the return type was unsigned int before:
- No overload for std::max(unsigned,isl_size)
- It cause additional 'mixed signed/unsigned comparison' warnings.
Since they do not break compilation, and sizes larger than 2^31
were never supported, I am going to fix it separately.
* With the change to isl_size, commit
57d547 "isl_*_list_size: return isl_size"
also changed the return value in case of an error from 0 to -1. This
caused undefined looping over isl_iterator since the 'end iterator'
got index -1, never reached from the 'begin iterator' with index 0.
* Some internal changes in ISL caused the number of operations to
increase when determining access ranges to determine aliasing
overlaps. In one test, this caused exceeding the default limit of
800000. The operations-limit was disabled for this test.
2020-02-11 04:51:33 +08:00
|
|
|
New releases are announced on http://groups.google.com/group/isl-announce
|
2015-02-05 04:55:43 +08:00
|
|
|
|
|
|
|
If you use isl, you can let me know by stacking
|
[Polly] Update ISL to isl-0.22.1-87-gfee05a13.
The primary motivation is to fix an assertion failure in
isl_basic_map_alloc_equality:
isl_assert(ctx, room_for_con(bmap, 1), return -1);
Although the assertion does not occur anymore, I could not identify
which of ISL's commits fixed it.
Compared to the previous ISL version, Polly requires some changes for this update
* Since ISL commit
20d3574 "perform parameter alignment by modifying both arguments to function"
isl_*_gist_* and similar functions do not always align the paramter
list anymore. This caused the parameter lists in JScop files to
become out-of-sync. Since many regression tests use JScop files with
a fixed parameter list and order, we explicitly call align_params to
ensure a predictable parameter list.
* ISL changed some return types to isl_size, a typedef of (signed) int.
This caused some issues where the return type was unsigned int before:
- No overload for std::max(unsigned,isl_size)
- It cause additional 'mixed signed/unsigned comparison' warnings.
Since they do not break compilation, and sizes larger than 2^31
were never supported, I am going to fix it separately.
* With the change to isl_size, commit
57d547 "isl_*_list_size: return isl_size"
also changed the return value in case of an error from 0 to -1. This
caused undefined looping over isl_iterator since the 'end iterator'
got index -1, never reached from the 'begin iterator' with index 0.
* Some internal changes in ISL caused the number of operations to
increase when determining access ranges to determine aliasing
overlaps. In one test, this caused exceeding the default limit of
800000. The operations-limit was disabled for this test.
2020-02-11 04:51:33 +08:00
|
|
|
https://www.openhub.net/p/isl on Open Hub.
|
2015-02-05 04:55:43 +08:00
|
|
|
|
|
|
|
For bug reports, feature requests and questions,
|
|
|
|
contact http://groups.google.com/group/isl-development
|
|
|
|
|
|
|
|
Whenever you report a bug, please mention the exact version of isl
|
|
|
|
that you are using (output of "./isl_cat --version"). If you are unable
|
|
|
|
to compile isl, then report the git version (output of "git describe")
|
|
|
|
or the version included in the name of the tarball.
|
|
|
|
|
|
|
|
If you use isl for your research, you are invited do cite
|
|
|
|
the following paper and/or the paper(s) describing the specific
|
|
|
|
operations you use.
|
|
|
|
|
|
|
|
@incollection{Verdoolaege2010isl,
|
|
|
|
author = {Verdoolaege, Sven},
|
|
|
|
title = {isl: An Integer Set Library for the Polyhedral Model},
|
|
|
|
booktitle = {Mathematical Software - ICMS 2010},
|
|
|
|
series = {Lecture Notes in Computer Science},
|
|
|
|
editor = {Fukuda, Komei and Hoeven, Joris and Joswig, Michael and
|
|
|
|
Takayama, Nobuki},
|
|
|
|
publisher = {Springer},
|
|
|
|
isbn = {978-3-642-15581-9},
|
|
|
|
pages = {299-302},
|
|
|
|
volume = {6327},
|
|
|
|
year = {2010}
|
|
|
|
}
|