[llvm-commits] [polly] r156256 - in /polly/trunk/www: example_load_Polly_into_clang.html example_manual_matmul.html experiments/matmul/runall.sh

Hongbin Zheng etherzhhb at gmail.com
Sun May 6 03:22:57 PDT 2012


Author: ether
Date: Sun May  6 05:22:57 2012
New Revision: 156256

URL: http://llvm.org/viewvc/llvm-project?rev=156256&view=rev
Log:
WWW: Adapt the vectorize option change.

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=156256&r1=156255&r2=156256&view=diff
==============================================================================
--- polly/trunk/www/example_load_Polly_into_clang.html (original)
+++ polly/trunk/www/example_load_Polly_into_clang.html Sun May  6 05:22:57 2012
@@ -55,9 +55,9 @@
 <h2>Automatic Vector code generation</h2>
 
 Automatic vector code generation can be enabled by adding <b>-mllvm
--enable-polly-vector</b> to your CFLAGS.
+-polly-vectorizer=polly</b> to your CFLAGS.
 
-<pre class="code">pollycc -O3 -mllvm -polly -mllvm -enable-polly-vector file.c</pre>
+<pre class="code">pollycc -O3 -mllvm -polly -mllvm -polly-vectorizer=polly file.c</pre>
 
 <h2>Extract a preoptimized LLVM-IR file</h2>
 

Modified: polly/trunk/www/example_manual_matmul.html
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/www/example_manual_matmul.html?rev=156256&r1=156255&r2=156256&view=diff
==============================================================================
--- polly/trunk/www/example_manual_matmul.html (original)
+++ polly/trunk/www/example_manual_matmul.html Sun May  6 05:22:57 2012
@@ -390,7 +390,7 @@
 <pre class="code">
 opt -basicaa \
     -polly-import-jscop -polly-import-jscop-postfix=interchanged+tiled+vector \
-    -polly-codegen -enable-polly-vector matmul.preopt.ll \
+    -polly-codegen -polly-vectorizer=polly matmul.preopt.ll \
    | opt -O3 > matmul.polly.interchanged+tiled+vector.ll</pre>
 <pre>
 Reading JScop '%1 => %19' in function 'init_array' from
@@ -402,7 +402,7 @@
 <pre class="code">
 opt -basicaa \
     -polly-import-jscop -polly-import-jscop-postfix=interchanged+tiled+vector \
-    -polly-codegen -enable-polly-vector -enable-polly-openmp matmul.preopt.ll \
+    -polly-codegen -polly-vectorizer=polly -enable-polly-openmp matmul.preopt.ll \
   | opt -O3 > matmul.polly.interchanged+tiled+openmp.ll</pre>
 <pre>
 Reading JScop '%1 => %19' 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=156256&r1=156255&r2=156256&view=diff
==============================================================================
--- polly/trunk/www/experiments/matmul/runall.sh (original)
+++ polly/trunk/www/experiments/matmul/runall.sh Sun May  6 05:22:57 2012
@@ -56,11 +56,11 @@
     matmul.preopt.ll | opt -O3 > matmul.polly.interchanged+tiled.ll
 opt -basicaa -polly-import-jscop \
     -polly-import-jscop-postfix=interchanged+tiled+vector -polly-codegen \
-    matmul.preopt.ll -enable-polly-vector\
+    matmul.preopt.ll -polly-vectorizer=polly\
     | 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 -enable-polly-vector -enable-polly-openmp\
+    matmul.preopt.ll -polly-vectorizer=polly -enable-polly-openmp\
     | 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