Skip to content

backend_driver.py overhaul #8069

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 9 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ENH: tweak output a bit to be more readable
  • Loading branch information
tacaswell authored and dstansby committed Jul 18, 2019
commit df8d44692fb38956d2da65d8990c55f2f9e1966f
4 changes: 3 additions & 1 deletion examples/tests/backend_driver_sgskip.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,9 @@ def parse_options():
print('Backend %s took %1.2f minutes to complete' % (backend, elapsed))
failed = failures[backend]
if failed:
print(' Failures: %s' % failed)
print(' Failures: ')
for f in failed:
print(' {!r}'.format(f))
if 'template' in times:
print('\ttemplate ratio %1.3f, template residual %1.3f' % (
elapsed / times['template'], elapsed - times['template']))