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

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

Issue 839303002: Document some skia perf interesting queries. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 11 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 unified diff | Download patch
« no previous file with comments | « site/dev/tools/index.md ('k') | 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
(Empty)
1 Skia Perf
2 =========
3
4 [Skia Perf](https://skiaperf.com) is a web based interface for exploring
5 performance data produced by `nanobench` and the code size bot. The data
6 includes:
7
8 * The nanobench test times in ms.
9 * Total memory consumed during a nanobench run.
10 * Code size for various symbol types in bytes.
11
12 All of the data can be plotted and also can be [analyzed using k-means
13 clustering](https://skiaperf.com/clusters/).
14
15 Calculations
16 ------------
17
18 Skia Perf has the ability to perform calculations over the test data
19 allowing you to build up interesting queries.
20
21 For example, this query displays the [total code size of the library over time]( https://skiaperf.com/#1877):
22
23 sum(fill(filter("config=memory&sub_result=bytes")))
24
25 This query displays [the ratio of playback time in ms to the number of ops for d esk\_wowwiki.skp](https://skiaperf.com/#1876):
26
27 ratio(
28 ave(fill(filter("name=desk_wowwiki.skp&sub_result=min_ms"))),
29 ave(fill(filter("name=desk_wowwiki.skp&sub_result=ops")))
30 )
31
32 You can also use the data to answer questions like [how many tests were run per commit](https://skiaperf.com/#1878).
33
34 count(filter(""))
35
36 See Skia Perf for the [full list of functions available](https://skiaperf.com/he lp).
mtklein 2015/01/09 18:22:00 I had no idea there was a skiaperf.com/help page.
jcgregorio 2015/01/09 19:09:12 It's actually the '?' next to the formula input, b
OLDNEW
« no previous file with comments | « site/dev/tools/index.md ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698