-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 890 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
layout: default
---
<div class="home">
<h1 class="page-heading">Benchmarks Cloudlab Server (2 socket)</h1>
<table class="post-table">
<tr>
<th>Date</th>
<th>Commit</th>
<th>CREW</th>
<th>EREW</th>
<th>Comments</th>
</tr>
{% for post in site.data.cloudlab %}
<tr>
<td>{{ post.date }}</td>
<td><a href="https://github.com/utah-scs/monster/tree/{{ post.revision }}">{{ post.revision }}</a></td>
<td> {% if post.crewbench %}
<a href="{{ site.baseurl }}/cloudlab/crew/{{ post.revision }}/{{ post.crewbench }}">CREW</a>{% endif %}
</td>
<td> {% if post.erewbench %}
<a href="{{ site.baseurl }}/cloudlab/erew/{{ post.revision }}/{{ post.erewbench }}">EREW</a>{%
endif %}
</td>
<td style="font-size:16px">{{ post.comments }}</td>
</tr>
{% endfor %}
</table>
</div>