llvm-project/polly
Michael Kruse d9cdeb453d [Cmake] Bump required cmake version to 3.4.3.
This is currently the minimum required version by LLVM. Since LLVM is
needed to build Polly, we also require at least that version.

Suggested-by: Philip Pfaffe <philip.pfaffe@gmail.com>
llvm-svn: 295672
2017-02-20 17:06:31 +00:00
..
cmake
docs
include/polly [ScopInfo] Add statistics to count loops after scop modeling 2017-02-17 08:12:36 +00:00
lib [Cmake] Install the isl headers into the install tree. 2017-02-20 16:57:14 +00:00
test [ScopInfo] Count read-only arrays when computing complexity of alias check 2017-02-18 20:51:29 +00:00
tools
unittests
utils
www
.arcconfig
.arclint
.gitattributes
.gitignore
CMakeLists.txt [Cmake] Bump required cmake version to 3.4.3. 2017-02-20 17:06:31 +00:00
CREDITS.txt
LICENSE.txt
README

README

Polly - Polyhedral optimizations for LLVM
-----------------------------------------
http://polly.llvm.org/

Polly uses a mathematical representation, the polyhedral model, to represent and
transform loops and other control flow structures. Using an abstract
representation it is possible to reason about transformations in a more general
way and to use highly optimized linear programming libraries to figure out the
optimal loop structure. These transformations can be used to do constant
propagation through arrays, remove dead loop iterations, optimize loops for
cache locality, optimize arrays, apply advanced automatic parallelization, drive
vectorization, or they can be used to do software pipelining.