1 <div id="head" style="position: relative">
2 <h1><span><a href="/">Polly</a></span></h1>
3 <h2><span>LLVM Framework for High-Level Loop and Data-Locality
4 Optimizations</span></h2>
7 <p> Hexagonal tiling in 3D</p>
11 <a href="http://llvm.org">llvm.org</a>
13 <label>Information</label>
14 <a href="/index.html">Overview and News</a>
15 <a href="/get_started.html">Get and Install</a>
17 <a href="/docs">Documentation</a>
18 <a href="/performance.html">Performance</a>
19 <a href="/publications.html">Publications</a>
20 <a href="/contributors.html">Contributors</a>
21 <a href="/todo.html">TODO</a>
22 <a href="/changelog.html">ChangeLog</a>
23 <a href="/projects.html">Open Projects</a>
27 <label>Development </label>
28 <a href="http://lists.llvm.org/mailman/listinfo/llvm-commits">
29 Mailing List (patches)
31 <a href="http://groups.google.com/group/polly-dev">Mailing List (discussion)</a>
32 <a href="/bugs.html">Bug Reports</a>
33 <a href="http://lab.llvm.org:8011/console?category=polly">Buildbot</a>
34 <a href="http://lab.llvm.org:8080/coverage/coverage-reports/polly/index.html">Code Coverage</a>
35 <a href="http://llvm.org/reports/scan-build/">Static analysis</a>
36 <a href="/doxygen/">Doxygen</a>
37 <a href="https://github.com/llvm/llvm-project/tree/main/polly">Source @ GitHub</a>
41 <label>Resources</label>
43 <a href="https://www.pollylabs.org"><img style="padding-left: 3.5em;
44 padding-right: 1em; width:10em" src="/images/pollylabs.png" /></a>
45 <div class="container" style="width: 240px">
46 <div class="inner_pollylabs" style="width: 240px"></div>
48 <a href="https://www.polyhedral.info">polyhedral.info</a>
49 <div class="container" style="width: 240px">
50 <div class="inner_polyinfo" style="width: 240px"></div>
57 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
58 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
59 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
60 })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
62 ga('create', 'UA-66123869-2', 'auto');
63 ga('send', 'pageview');
68 src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
72 $(document).ready(function() {
75 "https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20rss%20where%20url%3D%22http%3A%2F%2Fpollylabs.org%2Frss.xml%22%20LIMIT%205&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys";
77 $.getJSON(yql, function(res) {
78 str = "<div class=\"rss-box\"><ul>";
79 for (var i = 0; i < res.query.count; i++) {
80 var it = res.query.results.item[i];
81 var date = it.pubDate.substr(5, 11);
82 str = str + "<li class=\"rss-item\" ><a href=\"" + it.link + "\">";
83 str = str + "<span class=\"rss-title\">" + res.query.results.item[i].title + "</span> ";
84 str = str + "<span class=\"rss-date\">(" + date + ")</span>";
85 str = str + "</a></li>";
87 str = str + "<li class=\"rss-item\"><a href=\"http://pollylabs.org/blog.html\"><span class=\"rss-title\"> ... more news </span></a></li>";
88 str = str + "</ul></div>";
89 $( ".inner_pollylabs" ).append(str);
93 "https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20rss%20where%20url%3D%22http%3A%2F%2Fpolyhedral.info%2Frss.xml%22%20LIMIT%205&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys";
95 $.getJSON(yql_polyinfo, function(res) {
96 str = "<div class=\"rss-box\"><ul>";
97 for (var i = 0; i < res.query.count; i++) {
98 var it = res.query.results.item[i];
99 var date = it.pubDate.substr(5, 11);
100 str = str + "<li class=\"rss-item\" ><a href=\"" + it.link + "\">";
101 str = str + "<span class=\"rss-title\">" + res.query.results.item[i].title + "</span> ";
102 str = str + "<span class=\"rss-date\">(" + date + ")</span>";
103 str = str + "</a></li>";
105 str = str + "<li class=\"rss-item\"><a href=\"http://polyhedral.info/blog.html\"><span class=\"rss-title\"> ... more news </span></a></li>";
106 str = str + "</ul></div>";
107 $( ".inner_polyinfo" ).append(str);