forked from OSchip/llvm-project
www: Do not use a fixed with, but use max-width
Further: o ensure that the header is properly readable even on smaller screen sizes. o Shorten the table of contents of the documentation section. llvm-svn: 197794
This commit is contained in:
parent
b2ecb3c8f5
commit
eb145bb449
|
@ -9,7 +9,7 @@ html, body {
|
|||
#box {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
width: 80em;
|
||||
max-width: 80em;
|
||||
}
|
||||
[id=content] {
|
||||
/* ***** EDIT THIS VALUE IF CONTENT OVERLAPS MENU ***** */
|
||||
|
@ -53,7 +53,7 @@ tr { vertical-align:top }
|
|||
#news P {padding: 0px; margin: 0px; border: 0px}
|
||||
|
||||
#head {
|
||||
height: 15em;
|
||||
min-height: 15em;
|
||||
background-image:url(images/header-background.png);
|
||||
background-repeat:no-repeat;
|
||||
background-position: right;
|
||||
|
@ -94,10 +94,11 @@ tr { vertical-align:top }
|
|||
|
||||
#head h2 {
|
||||
color: #3b4567;
|
||||
margin-left: 10em;
|
||||
text-align: center;
|
||||
padding-top: 0em;
|
||||
margin-top: 0em;
|
||||
padding-left: .5em;
|
||||
padding-bottom: .5em;
|
||||
}
|
||||
|
||||
#head h2 span {
|
||||
|
|
|
@ -17,34 +17,22 @@
|
|||
<!--*********************************************************************-->
|
||||
|
||||
<ul>
|
||||
<li><h2><a href="documentation/architecture.html">The architecture
|
||||
</a></h2></li>
|
||||
<li><h2><a href="example_load_Polly_into_clang.html">Load Polly into clang and automatically
|
||||
run it at -O3</a></h2>
|
||||
<li><a href="documentation/architecture.html">The Architecture of Polly</a></li>
|
||||
<li><a href="example_load_Polly_into_clang.html">Use Polly in clang/clang++</a>
|
||||
|
||||
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_load_Polly_into_dragonegg.html">Use Polly in dragonegg</a></h2>
|
||||
How to load and use Polly within dragonegg.
|
||||
<li><a href="example_load_Polly_into_dragonegg.html">Use Polly in dragonegg</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h2><a href="example_manual_matmul.html">Execute the individual Polly passes
|
||||
manually</a></h2>
|
||||
<a href="example_manual_matmul.html">Inside Polly - How to manually use the
|
||||
individual pieces of Polly</a>
|
||||
|
||||
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>
|
||||
<li><a href="documentation/passes.html">A list of the LLVM passes available
|
||||
in Polly</a></li>
|
||||
<li><a href="documentation/memaccess.html">Polly - Memory access optimizations
|
||||
</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<!--#include virtual="../menu.html.incl"-->
|
||||
<div id="content">
|
||||
<!--*********************************************************************-->
|
||||
<h1>The architecture</h1>
|
||||
<h1>The Architecture Diagram of Polly</h1>
|
||||
<!--*********************************************************************-->
|
||||
<img src='../images/architecture.png' />
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue