README 709 B

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