[polly] r234124 - Adjust documentation to old -enable-polly-openmp -> -polly-parallel rename
Tobias Grosser
tobias at grosser.es
Sun Apr 5 12:52:38 PDT 2015
Author: grosser
Date: Sun Apr 5 14:52:38 2015
New Revision: 234124
URL: http://llvm.org/viewvc/llvm-project?rev=234124&view=rev
Log:
Adjust documentation to old -enable-polly-openmp -> -polly-parallel rename
Reported-by: Tomofumi Yuki <tomofumi.yuki at gmail.com>
Modified:
polly/trunk/www/example_load_Polly_into_clang.html
polly/trunk/www/example_manual_matmul.html
polly/trunk/www/experiments/matmul/runall.sh
Modified: polly/trunk/www/example_load_Polly_into_clang.html
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/www/example_load_Polly_into_clang.html?rev=234124&r1=234123&r2=234124&view=diff
==============================================================================
--- polly/trunk/www/example_load_Polly_into_clang.html (original)
+++ polly/trunk/www/example_load_Polly_into_clang.html Sun Apr 5 14:52:38 2015
@@ -59,9 +59,9 @@ compiler flags (Polly is only available
<h2>Automatic OpenMP code generation</h2>
To automatically detect parallel loops and generate OpenMP code for them you
-also need to add <b>-mllvm -enable-polly-openmp -lgomp</b> to your CFLAGS.
+also need to add <b>-mllvm -polly-parallel -lgomp</b> to your CFLAGS.
-<pre class="code">pollycc -O3 -mllvm -polly -mllvm -enable-polly-openmp -lgomp file.c</pre>
+<pre class="code">pollycc -O3 -mllvm -polly -mllvm -polly-parallel -lgomp file.c</pre>
<h2>Automatic Vector code generation</h2>
Modified: polly/trunk/www/example_manual_matmul.html
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/www/example_manual_matmul.html?rev=234124&r1=234123&r2=234124&view=diff
==============================================================================
--- polly/trunk/www/example_manual_matmul.html (original)
+++ polly/trunk/www/example_manual_matmul.html Sun Apr 5 14:52:38 2015
@@ -401,7 +401,7 @@ Reading JScop 'for.cond => for.end30'
<pre class="code">
opt -basicaa \
-polly-import-jscop -polly-import-jscop-postfix=interchanged+tiled+vector \
- -polly-codegen -polly-vectorizer=polly -enable-polly-openmp matmul.preopt.ll \
+ -polly-codegen -polly-vectorizer=polly -polly-parallel matmul.preopt.ll \
| opt -O3 > matmul.polly.interchanged+tiled+openmp.ll</pre>
<pre>
Reading JScop 'for.cond => for.end19' in function 'init_array' from
Modified: polly/trunk/www/experiments/matmul/runall.sh
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/www/experiments/matmul/runall.sh?rev=234124&r1=234123&r2=234124&view=diff
==============================================================================
--- polly/trunk/www/experiments/matmul/runall.sh (original)
+++ polly/trunk/www/experiments/matmul/runall.sh Sun Apr 5 14:52:38 2015
@@ -60,7 +60,7 @@ opt -basicaa -polly-import-jscop \
| opt -O3 > matmul.polly.interchanged+tiled+vector.ll
opt -basicaa -polly-import-jscop \
-polly-import-jscop-postfix=interchanged+tiled+vector -polly-codegen \
- matmul.preopt.ll -polly-vectorizer=polly -enable-polly-openmp\
+ matmul.preopt.ll -polly-vectorizer=polly -polly-parallel\
| opt -O3 > matmul.polly.interchanged+tiled+vector+openmp.ll
opt matmul.preopt.ll | opt -O3 > matmul.normalopt.ll
More information about the llvm-commits
mailing list