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

Side by Side Diff: site/dev/testing/skiaperf.md

Issue 1462583002: Add an example of embedding a Skia Perf graph to the site docs. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Skia Perf 1 Skia Perf
2 ========= 2 =========
3 3
4 [Skia Perf](https://perf.skia.org) is a web based interface for exploring 4 [Skia Perf](https://perf.skia.org) is a web based interface for exploring
5 performance data produced by `nanobench` and the code size bot. The data 5 performance data produced by `nanobench` and the code size bot. The data
6 includes: 6 includes:
7 7
8 * The nanobench test times in ms. 8 * The nanobench test times in ms.
9 * Total memory consumed during a nanobench run. 9 * Total memory consumed during a nanobench run.
10 * Code size for various symbol types in bytes. 10 * Code size for various symbol types in bytes.
(...skipping 16 matching lines...) Expand all
27 ratio( 27 ratio(
28 ave(fill(filter("name=desk_wowwiki.skp&sub_result=min_ms"))), 28 ave(fill(filter("name=desk_wowwiki.skp&sub_result=min_ms"))),
29 ave(fill(filter("name=desk_wowwiki.skp&sub_result=ops"))) 29 ave(fill(filter("name=desk_wowwiki.skp&sub_result=ops")))
30 ) 30 )
31 31
32 You can also use the data to answer questions like [how many tests were run per commit](https://perf.skia.org/#1878). 32 You can also use the data to answer questions like [how many tests were run per commit](https://perf.skia.org/#1878).
33 33
34 count(filter("")) 34 count(filter(""))
35 35
36 See Skia Perf for the [full list of functions available](https://perf.skia.org/h elp). 36 See Skia Perf for the [full list of functions available](https://perf.skia.org/h elp).
37
38 Embedding
39 ---------
40
41 Once you create a shortcut, which may or may not include calculations, you
42 will be presented with the code to embed that graph as an iframe. For example,
43 here is an embedding code for showing the ratio of all 565 tests over all 8888
44 tests:
45
46 <iframe src='https://perf.skia.org/frame/#4518' width=500 height=300 framebo rder=0></iframe>
47
48 And the embedded graph appears as:
49
50 <iframe src='https://perf.skia.org/frame/#4518' width=500 height=300 framebord er=0></iframe>
51
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698