www: Merge Examples with Documentation section

llvm-svn: 152306
This commit is contained in:
Tobias Grosser 2012-03-08 11:37:39 +00:00
parent f9250a1cb0
commit e586f0ec5c
3 changed files with 25 additions and 22 deletions

View File

@ -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>

View File

@ -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>

View File

@ -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>