kbench

{{ run_name }}
{% if status.running %}
Running
{% elif status.completed %}
Completed
{% endif %}
Iteration
{{ status.iteration }}/{{ status.max_iterations }}
Best Speedup
{{ "%.2f"|format(status.best_speedup) }}x
Best Score
{{ "%.4f"|format(status.best_score) }}
Programs
{{ total_programs }}
ETA
{{ eta or '—' }}
{{ "%.1f"|format(progress_pct) }}% complete {% if eta %}~{{ eta }} remaining{% endif %}
Speedup Over Iterations
Evolution Tree
Islands ({{ num_islands }})
{% for island in islands %}
Island {{ island.index }} {% if island.is_current %}ACTIVE{% endif %}
Programs: {{ island.program_count }}
Speedup: {{ "%.2f"|format(island.best_speedup) if island.best_speedup else "—" }}x
Gen: {{ island.generation }}
{% endfor %}
Code
Best
{% for island in islands %} {% if island.best_code %}
Island {{ island.index }}
{% endif %} {% endfor %}
Log
{% if best_code %}
Global best · Score {{ "%.4f"|format(status.best_score) }} · Speedup {{ "%.2f"|format(status.best_speedup) }}x
{{ best_code }}
{% else %}
No best kernel yet
{% endif %}
{% for island in islands %} {% if island.best_code %} {% endif %} {% endfor %}