[llvm-commits] [polly] r152306 - in /polly/trunk/www: documentation.html examples.html menu.html.incl
Tobias Grosser
grosser at fim.uni-passau.de
Thu Mar 8 03:37:40 PST 2012
Author: grosser
Date: Thu Mar 8 05:37:39 2012
New Revision: 152306
URL: http://llvm.org/viewvc/llvm-project?rev=152306&view=rev
Log:
www: Merge Examples with Documentation section
Modified:
polly/trunk/www/documentation.html
polly/trunk/www/examples.html
polly/trunk/www/menu.html.incl
Modified: polly/trunk/www/documentation.html
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/www/documentation.html?rev=152306&r1=152305&r2=152306&view=diff
==============================================================================
--- polly/trunk/www/documentation.html (original)
+++ polly/trunk/www/documentation.html Thu Mar 8 05:37:39 2012
@@ -16,10 +16,29 @@
<!--*********************************************************************-->
<ul>
-<li><a href="documentation/passes.html">The LLVM passes available in
-Polly</a></li>
-<li><a href="documentation/memaccess.html">Polly - Memory access optimizations
-</a></li>
+<li><h2><a href="example_load_Polly_into_clang.html">Load Polly into clang and automatically
+run it at -O3</a></h2>
+
+This example is for users of Polly. It explains how you can load Polly into
+clang such that the polyhedral optimzations are available during normal
+compilation. Using Polly is not more complicated than just adding a new flag
+to CFLAGS.
+</li>
+
+<li>
+<h2><a href="example_manual_matmul.html">Execute the individual Polly passes
+manually</a></h2>
+
+This example presents the individual passes that are involved when optimizing
+code with Polly. We show how to execute them individually and explain for each
+which analysis is performed or what transformation is applied. In this example
+the polyhedral transformation is user-provided to show how much performance
+improvement can be expected by an optimal automatic optimizer.
+</li>
+<li><h2><a href="documentation/passes.html">The LLVM passes available in
+Polly</a></h2></li>
+<li><h2><a href="documentation/memaccess.html">Polly - Memory access optimizations
+</a></h2></li>
</ul>
</div>
</body>
Modified: polly/trunk/www/examples.html
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/www/examples.html?rev=152306&r1=152305&r2=152306&view=diff
==============================================================================
--- polly/trunk/www/examples.html (original)
+++ polly/trunk/www/examples.html Thu Mar 8 05:37:39 2012
@@ -7,6 +7,8 @@
<title>Polly - Examples</title>
<link type="text/css" rel="stylesheet" href="menu.css">
<link type="text/css" rel="stylesheet" href="content.css">
+ <meta http-equiv="REFRESH"
+ content="0;url=documentation.html"></HEAD>
</head>
<body>
<!--#include virtual="menu.html.incl"-->
@@ -14,23 +16,6 @@
<!--=====================================================================-->
<h1>Polly: Examples</h1>
<!--=====================================================================-->
-<h2><a href="example_load_Polly_into_clang.html">Load Polly into clang and automatically
-run it at -O3</a></h2>
-
-This example is for users of Polly. It explains how you can load Polly into
-clang such that the polyhedral optimzations are available during normal
-compilation. Using Polly is not more complicated than just adding a new flag
-to CFLAGS.
-
-
-<h2><a href="example_manual_matmul.html">Execute the individual Polly passes
-manually</a></h2>
-
-This example presents the individual passes that are involved when optimizing
-code with Polly. We show how to execute them individually and explain for each
-which analysis is performed or what transformation is applied. In this example
-the polyhedral transformation is user-provided to show how much performance
-improvement can be expected by an optimal automatic optimizer.
</div>
</body>
Modified: polly/trunk/www/menu.html.incl
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/www/menu.html.incl?rev=152306&r1=152305&r2=152306&view=diff
==============================================================================
--- polly/trunk/www/menu.html.incl (original)
+++ polly/trunk/www/menu.html.incl Thu Mar 8 05:37:39 2012
@@ -4,7 +4,6 @@
<a href="/index.html">About</a>
<a href="/todo.html">TODO</a>
<a href="/documentation.html">Documentation</a>
- <a href="/examples.html">Examples</a>
<a href="/performance.html">Performance</a>
<a href="/publications.html">Publications</a>
<a href="/contributors.html">Contributors</a>
More information about the llvm-commits
mailing list