{{ title }}

{% if commit_sha %} {% if commit_sha|length > 7 and repo_url %} {{ commit_sha[:7] }} {% else %} {{ commit_sha[:7] if commit_sha|length > 7 else commit_sha }} {% endif %} {% endif %} {% if branch %} {{ branch }} {% endif %} {% if pr_number and repo_url %} PR #{{ pr_number }} {% elif pr_number %} PR #{{ pr_number }} {% endif %} {% if run_url %} CI Run {% endif %} {% if nightly_url %} Nightly Latest {% endif %} {% if main_url %} Main Latest {% endif %} {% if stable_url %} Stable Latest {% endif %} {{ bench_count }} benchmark{{ "s" if bench_count != 1 }} {% if sections %}
{% endif %} {{ generated_at }}
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 %}
{% if cell.mean_str and cell.mean_str != "—" %}
μ {{ cell.mean_str }}
{% if cell.std_str and cell.std_str != "—" %}
σ {{ cell.std_str }}
{% endif %}
{% endif %}
{% else %} {% endif %} {% endmacro %} {% macro bench_label(bench) %} {{ bench.name }} {% if bench.time_event %}{{ bench.time_event }}{% endif %} {% endmacro %} {% for section in sections %}

{{ section.category }}

{# One column per metric: read down a column to compare that metric across benchmarks. #}
{% for metric in section.metrics %} {% endfor %} {% for bench in section.benchmarks %} {% for cell in bench.cells %}{{ data_cell(cell) }}{% endfor %} {% endfor %}
Benchmark{{ metric }}
{{ bench_label(bench) }}
{# One column per benchmark: read down a column to compare a benchmark's metrics against each other on a shared (aligned) time axis. #}
{% for bench in section.benchmarks %} {% endfor %} {% for metric in section.metrics %} {% set metric_i = loop.index0 %} {% for bench in section.benchmarks %}{{ data_cell(bench.cells[metric_i]) }}{% endfor %} {% endfor %}
Metric{{ bench_label(bench) }}
{{ metric }}
{% else %}
No benchmark summaries found.
{% endfor %} {% if link_sections %} {% endif %}