hanchenye-llvm-project/polly
Tobias Grosser 7c5ba83015 ScheduleOpt: Prevectorize the innermost parallel loop
Only prevectorize loops that are actually parallel and can
be vectorized. Take the innermost loop that is eligible.

llvm-svn: 134187
2011-06-30 20:29:20 +00:00
..
autoconf
cmake
docs
include ScheduleOpt: Use band forest to get the schedules 2011-06-30 20:01:02 +00:00
lib ScheduleOpt: Prevectorize the innermost parallel loop 2011-06-30 20:29:20 +00:00
test CodeGeneration: Do not delete the old version of the Scop. 2011-05-14 19:01:49 +00:00
tools
utils ScheduleOpt: Add first version of prevectorization 2011-06-30 20:29:13 +00:00
www www: Fix typos. 2011-06-30 14:43:35 +00:00
CMakeLists.txt Buildsystem: Add -no-rtti 2011-06-30 19:50:04 +00:00
CREDITS.txt Add e-mail to credits file. 2011-04-29 07:54:20 +00:00
LICENSE.txt
Makefile
Makefile.common.in
Makefile.config.in Buildsystem: Add -no-rtti 2011-06-30 19:50:04 +00:00
README
configure

README

Polly - Polyhedral optimizations for LLVM

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.