{% import "simple_utils.html" as simple_utils %} {% import "utils.html" as utils %} {% set db = request.get_db() %} {% set run = db.getRun(id) %} {% set machine = run.machine %} {% extends "layout.html" %} {% set components = [(tag, db_url_for("simple_overview", tag=tag)), ('machine', db_url_for("simple_machine", tag=tag, id=machine.id)), ('run', db_url_for("simple_run", tag=tag, id=machine.id))] %} {% block head %} {% endblock %} {% block title %}Run Results{% endblock %} {# Add JS to initialize the graph. #} {% block onload %}init(){% endblock %} {% block javascript %} function init() { graph = new Graph2D("graph"); graph.clearColor = [1, 1, 1]; {{ graph_plots }} graph.xAxis.format = graph.xAxis.formats.normal; graph.draw(); } {% endblock %} {% block body %} {% call simple_utils.simple_run_page(tag, machine, run, compare_to, neighboring_runs) %} {{ utils.render_popup_begin('view_options', 'View Options', true) }}
{{ utils.render_popup_end() }}
| |||||
Shift-Left Mouse: Pan Alt/Meta-Left Mouse: Zoom Wheel: Zoom (Shift Slows) |
Plots: {{ num_plots }}
Num Points: {{ num_points }}
Revision | Value | MAD | Med - Min | |||||||
---|---|---|---|---|---|---|---|---|---|---|
Current | Previous | Delta (%) | Current | Previous | # Revs | Current | Previous | Current | Previous | |
{{r1}} | {{r0}} | {{pct|aspctcell(delta=true)|safe}}{{ "%.4f" % t1 }} | {{ "%.4f" % t0}} | {{ r1 - r0 }} | {{ "%.4f" % mad1 }} | {{ "%.4f" % mad0 }} | {{ "%.4f" % (med1-t1) }} | {{ "%.4f" % (med0-t0) }} |
{% endcall %} {% endblock %}