Skip to content
Snippets Groups Projects
Commit 5a8a7b2c authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Merge pull request #5 from rckirby/extract_time

updated auto_test_vs_ref to return a dictionary of computed times
parents ae326839 d4f04401
No related branches found
No related tags found
No related merge requests found
...@@ -633,6 +633,19 @@ def auto_test_vs_ref( ...@@ -633,6 +633,19 @@ def auto_test_vs_ref(
# }}} # }}}
result_dict = {}
result_dict["elapsed"] = elapsed
result_dict["elapsed_evt_2"] = elapsed_evt_2
result_dict["elapsed_wall"] = elapsed_wall
result_dict["timing_rounds"] = timing_rounds
result_dict["rates"] = rates
result_dict["ref_elapsed"] = elapsed
result_dict["ref_elapsed_wall"] = elapsed_wall
result_dict["ref_rates"] = ref_rates
return result_dict
# }}} # }}}
# vim: foldmethod=marker # vim: foldmethod=marker
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment