regression check:
regressed
passed
improved
trend only (no regression check yet)
sparkline = mean-over-time line + ±std band with a node per run; right-edge dots = per-run distribution; μ = mean
{% macro data_cell(cell) %}
{% if cell %}
{{ cell.svg|safe }}
{{ cell.latest_str }}
{% if cell.change_str %}{{ cell.change_str }}
{% endif %}
μ {{ cell.mean_str }}
{% if cell.std_str and cell.std_str != "—" %}σ {{ cell.std_str }}
{% endif %}
{{ section.category }}
{# One column per metric: read down a column to compare that metric across benchmarks. #}| Benchmark | {% for metric in section.metrics %}{{ metric }} | {% endfor %}
|---|---|
| {{ bench_label(bench) }} | {% for cell in bench.cells %}{{ data_cell(cell) }}{% endfor %}
| Metric | {% for bench in section.benchmarks %}{{ bench_label(bench) }} | {% endfor %}
|---|---|
| {{ metric }} | {% for bench in section.benchmarks %}{{ data_cell(bench.cells[metric_i]) }}{% endfor %}
No benchmark summaries found.
{% endfor %}
{% if link_sections %}
Reports without metrics
{% for section in link_sections %}{{ section.category }}
-
{% for link in section.links %}
- {{ link.name }} {% endfor %}