• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

cmake/23-Nov-2023-300260

docs/23-Nov-2023-8,9387,625

include/polly/23-Nov-2023-12,7604,265

lib/23-Nov-2023-481,145367,005

test/23-Nov-2023-91,33277,013

tools/23-Nov-2023-2,3181,728

unittests/23-Nov-2023-1,7141,305

utils/23-Nov-2023-3,1402,206

www/23-Nov-2023-4,5293,789

.arclintD23-Nov-2023662 2625

.gitattributesD23-Nov-202392 54

.gitignoreD23-Nov-202354 43

CMakeLists.txtD23-Nov-20235.5 KiB186155

CREDITS.txtD23-Nov-20231.3 KiB4335

LICENSE.txtD23-Nov-202314.7 KiB274226

READMED23-Nov-2023709 1311

README

1Polly - Polyhedral optimizations for LLVM
2-----------------------------------------
3http://polly.llvm.org/
4
5Polly uses a mathematical representation, the polyhedral model, to represent and
6transform loops and other control flow structures. Using an abstract
7representation it is possible to reason about transformations in a more general
8way and to use highly optimized linear programming libraries to figure out the
9optimal loop structure. These transformations can be used to do constant
10propagation through arrays, remove dead loop iterations, optimize loops for
11cache locality, optimize arrays, apply advanced automatic parallelization, drive
12vectorization, or they can be used to do software pipelining.
13