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 %}
{% endfor %}
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 }}
Code
Best
{% for island in islands %}
{% if island.best_code %}
Island {{ island.index }}
{% endif %}
{% endfor %}
Log
{% if best_code %}
{% else %}
{% for island in islands %}
{% if island.best_code %}
Global best · Score {{ "%.4f"|format(status.best_score) }} · Speedup {{ "%.2f"|format(status.best_speedup) }}x
{{ best_code }}No best kernel yet
{% endif %}
Island {{ island.index }} best · Score {{ "%.3f"|format(island.best_score) }} · Speedup {{ "%.2f"|format(island.best_speedup) }}x
{{ island.best_code }}
{% for line in log_lines %}
{{ line }}
{% endfor %}