aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--bench/nanobench.cpp203
-rw-r--r--gyp/bench.gyp36
-rw-r--r--gyp/bench.gypi10
-rw-r--r--gyp/most.gyp2
4 files changed, 230 insertions, 21 deletions
diff --git a/bench/nanobench.cpp b/bench/nanobench.cpp
new file mode 100644
index 0000000000..77df430c07
--- /dev/null
+++ b/bench/nanobench.cpp
@@ -0,0 +1,203 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include "Benchmark.h"
+#include "CrashHandler.h"
+#include "Stats.h"
+#include "Timer.h"
+
+#include "SkCanvas.h"
+#include "SkCommandLineFlags.h"
+#include "SkForceLinking.h"
+#include "SkGraphics.h"
+#include "SkString.h"
+#include "SkSurface.h"
+
+__SK_FORCE_IMAGE_DECODER_LINKING;
+
+DEFINE_int32(samples, 10, "Number of samples to measure for each bench.");
+DEFINE_int32(overheadLoops, 100000, "Loops to estimate timer overhead.");
+DEFINE_double(overheadGoal, 0.0001,
+ "Loop until timer overhead is at most this fraction of our measurments.");
+DEFINE_string(match, "", "The usual filters on file names of benchmarks to measure.");
+DEFINE_bool2(quiet, q, false, "Print only bench name and minimum sample.");
+DEFINE_bool2(verbose, v, false, "Print all samples.");
+DEFINE_string(config, "8888 nonrendering",
+ "Configs to measure. Options: 565 8888 nonrendering");
+
+// TODO: GPU benches
+
+static SkString humanize(double ms) {
+ if (ms > 1e+3) return SkStringPrintf("%.3gs", ms/1e3);
+ if (ms < 1e-3) return SkStringPrintf("%.3gns", ms*1e6);
+ if (ms < 1) return SkStringPrintf("%.3gµs", ms*1e3);
+ return SkStringPrintf("%.3gms", ms);
+}
+
+static double estimate_timer_overhead() {
+ double overhead = 0;
+ WallTimer timer;
+ for (int i = 0; i < FLAGS_overheadLoops; i++) {
+ timer.start();
+ timer.end();
+ overhead += timer.fWall;
+ }
+ return overhead / FLAGS_overheadLoops;
+}
+
+static void safe_flush(SkCanvas* canvas) {
+ if (canvas) {
+ canvas->flush();
+ }
+}
+
+static int guess_loops(double overhead, Benchmark* bench, SkCanvas* canvas) {
+ WallTimer timer;
+
+ // Measure timer overhead and bench time together.
+ do {
+ timer.start();
+ bench->draw(1, canvas);
+ safe_flush(canvas);
+ timer.end();
+ } while (timer.fWall < overhead); // Shouldn't normally happen.
+
+ // Later we'll just start and stop the timer once, but loop N times.
+ // We'll pick N to make timer overhead negligible:
+ //
+ // Timer Overhead
+ // ------------------------------- < FLAGS_overheadGoal
+ // Timer Overhead + N * Bench Time
+ //
+ // where timer.fWall ≈ Timer Overhead + Bench Time.
+ //
+ // Doing some math, we get:
+ //
+ // (Timer Overhead / FLAGS_overheadGoal) - Timer Overhead
+ // ----------------------------------------------------- < N
+ // (timer.fWall - Timer Overhead)
+ //
+ // Luckily, this also works well in practice. :)
+ const double numer = overhead / FLAGS_overheadGoal - overhead;
+ const double denom = timer.fWall - overhead;
+ return (int)ceil(numer / denom);
+}
+
+static bool push_config_if_enabled(const char* config, SkTDArray<const char*>* configs) {
+ if (FLAGS_config.contains(config)) {
+ configs->push(config);
+ return true;
+ }
+ return false;
+}
+
+static void create_surfaces(Benchmark* bench,
+ SkTDArray<SkSurface*>* surfaces,
+ SkTDArray<const char*>* configs) {
+
+ if (bench->isSuitableFor(Benchmark::kNonRendering_Backend)
+ && push_config_if_enabled("nonrendering", configs)) {
+ surfaces->push(NULL);
+ }
+
+ if (bench->isSuitableFor(Benchmark::kRaster_Backend)) {
+ const int w = bench->getSize().fX,
+ h = bench->getSize().fY;
+
+ if (push_config_if_enabled("8888", configs)) {
+ const SkImageInfo info = { w, h, kN32_SkColorType, kPremul_SkAlphaType };
+ surfaces->push(SkSurface::NewRaster(info));
+ }
+
+ if (push_config_if_enabled("565", configs)) {
+ const SkImageInfo info = { w, h, kRGB_565_SkColorType, kOpaque_SkAlphaType };
+ surfaces->push(SkSurface::NewRaster(info));
+ }
+ }
+}
+
+int tool_main(int argc, char** argv);
+int tool_main(int argc, char** argv) {
+ SetupCrashHandler();
+ SkAutoGraphics ag;
+ SkCommandLineFlags::Parse(argc, argv);
+
+ const double overhead = estimate_timer_overhead();
+
+ if (FLAGS_verbose) {
+ // No header.
+ } else if (FLAGS_quiet) {
+ SkDebugf("min\tbench\tconfig\n");
+ } else {
+ SkDebugf("loops\tmin\tmean\tmax\tstddev\tbench\tconfig\n");
+ }
+
+ for (const BenchRegistry* r = BenchRegistry::Head(); r != NULL; r = r->next()) {
+ SkAutoTDelete<Benchmark> bench(r->factory()(NULL));
+ if (SkCommandLineFlags::ShouldSkip(FLAGS_match, bench->getName())) {
+ continue;
+ }
+
+ SkTDArray<SkSurface*> surfaces;
+ SkTDArray<const char*> configs;
+ create_surfaces(bench.get(), &surfaces, &configs);
+
+ bench->preDraw();
+ for (int j = 0; j < surfaces.count(); j++) {
+ SkCanvas* canvas = surfaces[j] ? surfaces[j]->getCanvas() : NULL;
+ const char* config = configs[j];
+
+ bench->draw(1, canvas); // Just paranoid warmup.
+ safe_flush(canvas);
+ const int loops = guess_loops(overhead, bench.get(), canvas);
+
+ SkAutoTMalloc<double> samples(FLAGS_samples);
+ WallTimer timer;
+ for (int i = 0; i < FLAGS_samples; i++) {
+ timer.start();
+ bench->draw(loops, canvas);
+ safe_flush(canvas);
+ timer.end();
+ samples[i] = timer.fWall / loops;
+ }
+
+ Stats stats(samples.get(), FLAGS_samples);
+
+ if (FLAGS_verbose) {
+ for (int i = 0; i < FLAGS_samples; i++) {
+ SkDebugf("%s ", humanize(samples[i]).c_str());
+ }
+ SkDebugf("%s\n", bench->getName());
+ } else if (FLAGS_quiet) {
+ if (configs.count() == 1) {
+ config = ""; // Only print the config if we run the same bench on more than one.
+ }
+ SkDebugf("%s\t%s\t%s\n", humanize(stats.min).c_str(), bench->getName(), config);
+ } else {
+ const double stddev_percent = 100 * sqrt(stats.var) / stats.mean;
+ SkDebugf("%d\t%s\t%s\t%s\t%.0f%%\t%s\t%s\n"
+ , loops
+ , humanize(stats.min).c_str()
+ , humanize(stats.mean).c_str()
+ , humanize(stats.max).c_str()
+ , stddev_percent
+ , bench->getName()
+ , config
+ );
+ }
+ }
+ surfaces.deleteAll();
+ }
+
+ return 0;
+}
+
+#if !defined SK_BUILD_FOR_IOS
+int main(int argc, char * const argv[]) {
+ return tool_main(argc, (char**) argv);
+}
+#endif
diff --git a/gyp/bench.gyp b/gyp/bench.gyp
index 9089bf8bc0..cbbf27f9a7 100644
--- a/gyp/bench.gyp
+++ b/gyp/bench.gyp
@@ -9,13 +9,10 @@
'target_name': 'bench',
'type': 'executable',
'dependencies': [
- 'etc1.gyp:libetc1',
'flags.gyp:flags',
'jsoncpp.gyp:jsoncpp',
'skia_lib.gyp:skia_lib',
'tools.gyp:crash_handler',
- 'tools.gyp:resources',
- 'tools.gyp:sk_tool_utils',
'tools.gyp:timer',
],
'sources': [
@@ -27,28 +24,27 @@
'../bench/benchmain.cpp',
],
'conditions': [
- ['skia_gpu == 1',
- {
- 'include_dirs' : [
- '../src/gpu',
- ],
- 'dependencies': [
- 'gputest.gyp:skgputest',
- ],
- },
- ],
- ['skia_android_framework == 1',
- {
- 'libraries': [
- '-lskia',
- ],
- },
- ],
+ ['skia_android_framework == 1', {
+ 'libraries': [ '-lskia' ],
+ }],
],
'includes': [
'bench.gypi',
'gmslides.gypi',
],
},
+ {
+ 'target_name': 'nanobench',
+ 'type': 'executable',
+ 'sources': [
+ '../bench/nanobench.cpp',
+ ],
+ 'includes': [ 'bench.gypi' ],
+ 'dependencies': [
+ 'flags.gyp:flags',
+ 'tools.gyp:crash_handler',
+ 'tools.gyp:timer',
+ ],
+ },
],
}
diff --git a/gyp/bench.gypi b/gyp/bench.gypi
index 798fdd4c37..064814aa4b 100644
--- a/gyp/bench.gypi
+++ b/gyp/bench.gypi
@@ -2,11 +2,21 @@
'include_dirs': [
'../src/core',
'../src/effects',
+ '../src/gpu',
'../src/utils',
'../tools',
],
'dependencies': [
+ 'etc1.gyp:libetc1',
'skia_lib.gyp:skia_lib',
+ 'tools.gyp:resources',
+ 'tools.gyp:sk_tool_utils',
+ ],
+ 'conditions': [
+ ['skia_gpu == 1', {
+ 'include_dirs': [ '../src/gpu' ],
+ 'dependencies': [ 'gputest.gyp:skgputest' ],
+ }],
],
'sources': [
'../bench/Benchmark.cpp',
diff --git a/gyp/most.gyp b/gyp/most.gyp
index 3b1fa3da63..ba189316e9 100644
--- a/gyp/most.gyp
+++ b/gyp/most.gyp
@@ -15,7 +15,7 @@
# The minimal set of static libraries for basic Skia functionality.
'skia_lib.gyp:skia_lib',
- 'bench.gyp:bench',
+ 'bench.gyp:*',
'gm.gyp:gm',
'SampleApp.gyp:SampleApp',
'tests.gyp:tests',