aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@qt.io>2018-01-17 16:38:21 +0100
committerRobin Burchell <robin.burchell@crimson.no>2018-01-18 10:21:06 +0000
commit524b539bad059e44225c9f645eca361b69bcc858 (patch)
treece9c75ecbfae58bfa14cc0aa54bc61e2b710881d
parent7aa11881aea370e7459c63fada594b72f9e710a6 (diff)
README.md: explain results
Mention that higher frames for the frame-count shell is better, lower CoV is better, etc. Change-Id: I33daa2ae168c7e64d59eb418f4e9df7232e24fce Reviewed-by: Robin Burchell <robin.burchell@crimson.no>
-rw-r--r--README.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/README.md b/README.md
index 163c672..6aa3240 100644
--- a/README.md
+++ b/README.md
@@ -120,3 +120,30 @@ You can also run a subset of them by providing that directory instead:
Or even individual tests, by passing the filenames directly.
+## the results
+
+Here's an example of running `src/qmlbench --shell frame-count /Users/mitch/dev/qmlbench/benchmarks/auto/creation/quick.controls2/delegates_tumbler.qml` on macOS:
+
+ ID:
+ OS: macOS High Sierra (10.13)
+ QPA: cocoa
+ GL_VENDOR: ATI Technologies Inc.
+ GL_RENDERER: AMD Radeon Pro 460 OpenGL Engine
+ GL_VERSION: 2.1 ATI-1.60.24
+ running: /Users/mitch/dev/qmlbench/benchmarks/auto/creation/quick.controls2/delegates_tumbler.qml
+ 153 frames
+ 152 frames
+ 154 frames
+ 154 frames
+ 153 frames
+ Average: 153.2 frames; MedianAll=153; StdDev=0.83666, CoV=0.00546123
+ All done...
+
+The test was repeated 5 times, and for each run, the frames are printed. For the frame-count shell, the higher the number of frames is, the better.
+
+- "Average: 153.2 frames" - this is the average of each run.
+- "MedianAll=153" - the [median](https://en.wikipedia.org/wiki/Median) of all of the runs:
+ (152, 153, 153, 154, 154)
+ ^
+- "StdDev=0.83666" - the [standard deviation](https://en.wikipedia.org/wiki/Standard_deviation). The lower the better.
+- "CoV=0.00546123" - the [coefficient of variation](https://en.wikipedia.org/wiki/Coefficient_of_variation). The lower the better; a general guide is to aim for less than 5% CoV.