{% extends "base.html" %} {% block title %}Dashboard — FreeWeight{% endblock %} {% block content %}
Every figure on this page is one stored measurement from one named run — the latest completed run of that suite for that model. Nothing here is averaged across runs, and every number links to the samples that produced it.
{% if error %}{{ error }}
If the database has never been migrated, run freeweight db upgrade and reload.
No completed run matches this scope. Start one from the Run page, or on the command line:
freeweight run start --model <model> --suite native.echo
native.echo is the harness self-test: it proves the machine can run a benchmark
at all, in under a minute, before you spend an hour on a real one.
In this scope.
Across {{ dashboard.cards.suites_run }} suites.
Every figure below drills to one of these.
Things this machine could not measure. Shown as — everywhere, never 0.
{% if dashboard.cards.machines > 1 %} More than one: speed, memory and energy figures below are not comparable across them. {% else %} One machine, so hardware figures are comparable. {% endif %}
Completed.
One headline metric per suite, from the latest completed run. An empty cell means that model has never completed that suite — not that it scored zero.
{% if dashboard.heatmap.separated %}| Model | {% for suite in dashboard.heatmap.suites %}
{{ suite }} {{ dashboard.heatmap.headline_metric[suite] }} |
{% endfor %}
|---|---|
| {{ model }} | {% for suite in dashboard.heatmap.suites %} {% set cell = dashboard.heatmap.cell(model, suite) %}{% if cell is none %} — {% elif cell.value is none %} — {{ cell.unavailable_reason }} {% else %} {{ '%.4g' % cell.value }} {{ cell.unit }} {% endif %} | {% endfor %}
No suite in this scope has a declared headline metric yet. The panels below still show everything that was measured.
{{ panel.description }}
{% if panel.is_empty %}Nothing measured for this panel in this scope yet.
| Model | Suite | Metric | Value | Unit | n | Excluded | Raw source |
|---|---|---|---|---|---|---|---|
| {{ row.model_canonical_id }} | {{ row.suite_key }} | {{ row.metric_key }} | {% if row.value is none %} — {% else %}{{ '%.6g' % row.value }}{% endif %} | {{ row.unit }} | {{ row.sample_count }} | {{ row.excluded_count }} | {{ row.run_test_key or 'run' }} {{ row.run_id[:8] }} |