Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(121)

Unified Diff: tools/testing/perf_testing/create_graph.py

Issue 9071015: Changing display of perf graphs to make them more readable. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 8 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/testing/perf_testing/appengine/app.yaml ('k') | tools/testing/perf_testing/index.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/perf_testing/create_graph.py
===================================================================
--- tools/testing/perf_testing/create_graph.py (revision 2918)
+++ tools/testing/perf_testing/create_graph.py (working copy)
@@ -364,16 +364,13 @@
(title, y_axis, size_x, size_y, loc, filename) = \
('Geometric Mean of benchmark %s performance' % self.platform_type,
'Speed (bigger = better)', 16, 5, 'center', 'avg'+png_filename)
+ clear_axis = True
for platform in self.platform_list:
self.syle_and_save_perf_plot(title, y_axis, size_x, size_y, loc, filename,
- [platform], [V8], [V8_MEAN], True)
+ [platform], [V8], [V8_MEAN], clear_axis)
+ clear_axis = False
self.syle_and_save_perf_plot(title, y_axis, size_x, size_y, loc, filename,
- [platform], [FROG], [FROG_MEAN], False)
- self.write_html('table',
- self.revision_dict[platform][V8],
- 'V8 mean', self.values_dict[platform][V8][V8_MEAN],
- 'Frog mean', self.values_dict[platform][FROG][FROG_MEAN],
- True)
+ [platform], [FROG], [FROG_MEAN], clear_axis)
def plot_results(self, png_filename):
self.plot_all_perf(png_filename)
@@ -742,7 +739,10 @@
BrowserPerformanceTestRunner('browser-perf').run()
if PERFBOT_MODE:
- upload_to_app_engine()
+ # TODO(efortuna): Temporarily disabled until you make a safe way to provide
+ # your username/password for the uploading process.
+ #upload_to_app_engine()
+ pass
def main():
global PERFBOT_MODE, VERBOSE
« no previous file with comments | « tools/testing/perf_testing/appengine/app.yaml ('k') | tools/testing/perf_testing/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698