diff options
author | Martin Peres <martin.peres@linux.intel.com> | 2015-08-31 19:56:43 +0300 |
---|---|---|
committer | Martin Peres <martin.peres@linux.intel.com> | 2015-08-31 19:58:14 +0300 |
commit | c7718267c8385aad726315614f4d3d30e0300576 (patch) | |
tree | 5a3717d59734261a3662051612c721cecd99a2dc /stats | |
parent | f0128fe878bcc101314a818c621e98c7b97aa35c (diff) |
stats/gen_report: add a way to report the unit of the test (FPS or ms)
Diffstat (limited to 'stats')
-rwxr-xr-x | stats/gen_report.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stats/gen_report.py b/stats/gen_report.py index f916bf8..cae3f89 100755 --- a/stats/gen_report.py +++ b/stats/gen_report.py @@ -187,7 +187,7 @@ html_template=""" <th>Commit</th> <th>Geometric mean</th> % for benchmark in benchmarks: - <th>${benchmark.full_name}</th> + <th>${benchmark.full_name} (${result.unit_str})</th> % endfor </tr> </%def> |