{% extends "layout.html" %} {% block title %} Compare Benchmarks {% endblock %} {% block content %}

Benchmark System



{% if file1 is not none and file2 is not none %} {% for name, ratio, r1, r2 in comparisons['comps'] %} {% if ratio is none %} {% else %} {% endif %} {% if r1 is none %} {% else %} {% endif %} {% if r2 is none %} {% else %} {% endif %} {% endfor %}
name ratio of first to second {% if benchmarks1['sha'] is not none %} {{ benchmarks1['sha'] }} {% else %} unknown {% endif %} {% if benchmarks2['sha'] is not none %} {{ benchmarks2['sha'] }} {% else %} unknown {% endif %}
{{ name }} {{ ratio }}% {{ r1 }} {{ r2 }}
{% if comparisons['harmonic_mean'] is not none %}

Harmonic Mean: {{ comparisons['harmonic_mean'] }}%

Geometric Mean: {{ comparisons['geometric_mean'] }}%

Arithmetic Mean: {{ comparisons['arithmetic_mean'] }}%

Median: {{ comparisons['median'] }}%

{% endif %} {% endif %} {% endblock %}