<%inherit file="run_base.html" /> <%def name="style()"> <%block name="breadcrumbs">
  • Runs |
  • ${run_id} |
  • Stats
  • % if run.stats:
    % if run.stats.total_calls != run.stats.prim_calls: % endif
    Function calls${run.stats.total_calls}
    Primitive calls${run.stats.prim_calls}
    Total time${run.stats.total_tt}
    % for s in stats_data: % endfor
    ncalls tottime percall cumtime percall function filename lineno
    ${s['ncalls']} ${'%8.3f' % s['tottime']} ${'%8.3f' % s['percall_nc']} ${'%8.3f' % s['cumtime']} ${'%8.3f' % s['percall_cc']} ${s['function']} % if s['file_url']: ${s['filename']|self.display_filename} % else: ${s['filename']|self.display_filename} % endif ${s['lineno']}
    % else:

    No profile data was collected.

    % endif