{% extends 'mark_base.html' %} {% macro renderRun(run) %}
{{ run.title }} - time: {{ run.time }}, output size: {{ run.size }} bytes

Output size

The size of the output is:

{{ run.size }} bytes

Time

The command:

{{ run.cmd | e }}

finished in:

{{ run.time }}
{% endmacro %} {% block content %}

Benchmarks

These benchmarks were generated at {{ now }}

{% for mark in marks %}
{{ mark.title }}

What's being executed

Code executed:

{{ mark.source | e }}
{% for run in mark.runs %} {{ renderRun(run) }} {% endfor %}

Executed on

{{ mark.sysinfo }}
{% endfor %} {% endblock %}