]> git.ozlabs.org Git - hiprofile/blob - share/hiprofile/binary.html
Add --opreport and --opannotate options
[hiprofile] / share / hiprofile / binary.html
1 {% extends "base.html" %}
2
3 {% block heading %}
4 Binary: {{ binary.shortname }}
5 {% endblock %}
6
7 {% block content %}
8 <table class="meta">
9  <tr>
10   <th>Total samples:</th>
11   <td>{{ binary.count }}</td>
12  </tr>
13  <tr>
14   <th>Full path:</th>
15   <td><span class="path">{{ binary.name }}</span></td>
16  </tr>
17 </table>
18
19 <table>
20  <tr>
21   <th>Symbol</th>
22   <th>Samples</th>
23   <th>%</th>
24  </tr>
25 {% for symbol in binary.references %}
26  <tr>
27   <td><a href="{{ symbol.filename }}">{{ symbol.name }}</a></td>
28   <td>{{ symbol.count }}</td>
29   <td>{{ symbol.percentage|floatformat:2 }}</td>
30   <td><img src="bar.png" height="10"
31    width="{% widthratio symbol.percentage 100 100 %}"
32    alt="{{ symbol.percentage|floatformat:1 }}%"/></td>
33  </tr>
34 {% endfor %}
35 </table>
36
37 {% endblock %}