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

..09-Dec-2020-

cmake/H03-May-2022-181157

docs/H03-May-2022-8,8347,533

include/polly/H09-Dec-2020-12,6424,219

lib/H03-May-2022-435,544330,624

test/H03-May-2022-90,86176,622

tools/GPURuntime/H03-May-2022-1,9811,458

unittests/H03-May-2022-1,6621,263

utils/H09-Dec-2020-3,1402,206

www/H03-May-2022-625536

.arclintH A D09-Dec-2020662 2625

.gitattributesH A D09-Dec-202092 54

.gitignoreH A D09-Dec-202054 43

READMEH A D09-Dec-2020709 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