[ScopDetect / ScopInfo] Get statistics for scops without any loop correctly
[polly-mirror.git] / www / menu.html.incl
blob5459473bd63239e12cd40e0b907ffed21853c0bf
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>
9 </div>
10 <div id="menu">
11   <a href="http://llvm.org">llvm.org</a>
12   <div class="submenu">
13     <label>Information</label>
14     <a href="/index.html">Overview and News</a>
15     <a href="/get_started.html">Get and Install</a>
16     </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>
24   </div>
26   <div class="submenu">
27     <label>Development </label>
28     <a href="http://lists.llvm.org/mailman/listinfo/llvm-commits">
29       Mailing List (patches)
30     </a>
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://buildd-clang.debian.net/scan-build/">Static analysis</a>
36     <a href="/doxygen/">Doxygen</a>
37     <a href="https://github.com/llvm-mirror/polly">Source @ GitHub</a>
38   </div>
40   <div class="submenu">
41     <label>Resources</label>
42     <br>
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>
47     </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>
51     </div>
52     <br>
53   </div>
54 </div>
56 <script>
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');
65 </script>
67 <script
68 src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
70 <script>
72 $(document).ready(function() {
73     
74     var yql =
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";
76     
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>";
86         }
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);
90     }, "jsonp");
92     var yql_polyinfo =
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";
94     
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>";
104         }
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);
108         console.log(str);
109     }, "jsonp");
110     
113 </script>