blob: 31efefa4f4fb0034a632143bed2107b18bbe221b [file] [log] [blame]
mtkleinf3723212014-06-25 14:08:00 -07001/*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
mtkleinbb6a0282014-07-01 08:43:42 -07008#include <ctype.h>
9
tomhudsond968a6f2015-03-26 11:28:06 -070010#include "nanobench.h"
11
mtkleinf3723212014-06-25 14:08:00 -070012#include "Benchmark.h"
msarett7f691442015-09-22 11:56:16 -070013#include "BitmapRegionDecoderBench.h"
scroggo60869a42015-04-01 12:09:17 -070014#include "CodecBench.h"
msarett7f691442015-09-22 11:56:16 -070015#include "CodecBenchPriv.h"
mtkleinf3723212014-06-25 14:08:00 -070016#include "CrashHandler.h"
mtkleine714e752014-07-31 12:13:48 -070017#include "GMBench.h"
mtkleinafb43792014-08-19 15:55:55 -070018#include "ProcStats.h"
mtklein60317d0f2014-07-14 11:30:37 -070019#include "ResultsWriter.h"
mtkleinfd731ce2014-09-10 12:19:30 -070020#include "RecordingBench.h"
joshualitt261c3ad2015-04-27 09:16:57 -070021#include "SKPAnimationBench.h"
mtklein92007582014-08-01 07:46:52 -070022#include "SKPBench.h"
mtkleinf3723212014-06-25 14:08:00 -070023#include "Stats.h"
mtkleinf3723212014-06-25 14:08:00 -070024
msarett5cb48852015-11-06 08:56:32 -080025#include "SkBitmapRegionDecoder.h"
mtklein6838d852014-10-29 14:15:10 -070026#include "SkBBoxHierarchy.h"
mtkleinf3723212014-06-25 14:08:00 -070027#include "SkCanvas.h"
scroggo60869a42015-04-01 12:09:17 -070028#include "SkCodec.h"
caryclark17f0b6d2014-07-22 10:15:34 -070029#include "SkCommonFlags.h"
kkinnunen3e980c32015-12-23 01:33:00 -080030#include "SkCommonFlagsConfig.h"
msarett95f192d2015-02-13 09:05:41 -080031#include "SkData.h"
mtkleinf3723212014-06-25 14:08:00 -070032#include "SkForceLinking.h"
33#include "SkGraphics.h"
mtklein20840502014-08-21 15:51:22 -070034#include "SkOSFile.h"
35#include "SkPictureRecorder.h"
mtklein051e56d2014-12-04 08:46:51 -080036#include "SkPictureUtils.h"
mtkleinf3723212014-06-25 14:08:00 -070037#include "SkString.h"
38#include "SkSurface.h"
robertphillips5b693772014-11-21 06:19:36 -080039#include "SkTaskGroup.h"
msarettc149f0e2016-01-04 11:35:43 -080040#include "SkThreadUtils.h"
mtkleinf3723212014-06-25 14:08:00 -070041
bungeman60e0fee2015-08-26 05:15:46 -070042#include <stdlib.h>
43
scroggo38ce0a72016-01-07 07:28:47 -080044#ifndef SK_BUILD_FOR_WIN32
45 #include <unistd.h>
46#endif
47
tomhudsond968a6f2015-03-26 11:28:06 -070048#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
49 #include "nanobenchAndroid.h"
50#endif
51
mtkleinbb6a0282014-07-01 08:43:42 -070052#if SK_SUPPORT_GPU
jcgregoriobf5e5232014-07-17 13:14:16 -070053 #include "gl/GrGLDefines.h"
bsalomon76228632015-05-29 08:02:10 -070054 #include "GrCaps.h"
mtkleinbb6a0282014-07-01 08:43:42 -070055 #include "GrContextFactory.h"
krajcevski69a55602014-08-13 10:46:31 -070056 SkAutoTDelete<GrContextFactory> gGrFactory;
mtkleinbb6a0282014-07-01 08:43:42 -070057#endif
58
bsalomon682c2692015-05-22 14:01:46 -070059 struct GrContextOptions;
60
mtkleinf3723212014-06-25 14:08:00 -070061__SK_FORCE_IMAGE_DECODER_LINKING;
62
reed53249782014-10-10 09:09:52 -070063static const int kAutoTuneLoops = 0;
bsalomon6eb03cc2014-08-07 14:28:50 -070064
mtkleinb5110422014-08-07 15:20:02 -070065static const int kDefaultLoops =
bsalomon6eb03cc2014-08-07 14:28:50 -070066#ifdef SK_DEBUG
67 1;
mtkleina189ccd2014-07-14 12:28:47 -070068#else
bsalomon6eb03cc2014-08-07 14:28:50 -070069 kAutoTuneLoops;
mtkleina189ccd2014-07-14 12:28:47 -070070#endif
71
bsalomon6eb03cc2014-08-07 14:28:50 -070072static SkString loops_help_txt() {
73 SkString help;
74 help.printf("Number of times to run each bench. Set this to %d to auto-"
75 "tune for each bench. Timings are only reported when auto-tuning.",
76 kAutoTuneLoops);
77 return help;
78}
79
cdaltone1b89582015-06-25 19:17:08 -070080static SkString to_string(int n) {
81 SkString str;
82 str.appendS32(n);
83 return str;
84}
85
bsalomon6eb03cc2014-08-07 14:28:50 -070086DEFINE_int32(loops, kDefaultLoops, loops_help_txt().c_str());
87
mtkleinf3723212014-06-25 14:08:00 -070088DEFINE_int32(samples, 10, "Number of samples to measure for each bench.");
mtkleinbbba1682015-10-28 11:36:30 -070089DEFINE_int32(ms, 0, "If >0, run each bench for this many ms instead of obeying --samples.");
mtkleinf3723212014-06-25 14:08:00 -070090DEFINE_int32(overheadLoops, 100000, "Loops to estimate timer overhead.");
91DEFINE_double(overheadGoal, 0.0001,
92 "Loop until timer overhead is at most this fraction of our measurments.");
mtkleinbb6a0282014-07-01 08:43:42 -070093DEFINE_double(gpuMs, 5, "Target bench time in millseconds for GPU.");
cdaltond416a5b2015-06-23 13:23:44 -070094DEFINE_int32(gpuFrameLag, 5, "If unknown, estimated maximum number of frames GPU allows to lag.");
krajcevski12b35442014-08-13 12:06:26 -070095DEFINE_bool(gpuCompressAlphaMasks, false, "Compress masks generated from falling back to "
96 "software path rendering.");
mtkleinf3723212014-06-25 14:08:00 -070097
mtklein60317d0f2014-07-14 11:30:37 -070098DEFINE_string(outResultsFile, "", "If given, write results here as JSON.");
mtklein55b0ffc2014-07-17 08:38:23 -070099DEFINE_int32(maxCalibrationAttempts, 3,
100 "Try up to this many times to guess loops for a bench, or skip the bench.");
101DEFINE_int32(maxLoops, 1000000, "Never run a bench more times than this.");
mtklein92007582014-08-01 07:46:52 -0700102DEFINE_string(clip, "0,0,1000,1000", "Clip for SKPs.");
103DEFINE_string(scales, "1.0", "Space-separated scales for SKPs.");
cdalton63a82852015-06-29 14:06:10 -0700104DEFINE_string(zoom, "1.0,0", "Comma-separated zoomMax,zoomPeriodMs factors for a periodic SKP zoom "
105 "function that ping-pongs between 1.0 and zoomMax.");
mtklein20840502014-08-21 15:51:22 -0700106DEFINE_bool(bbh, true, "Build a BBH for SKPs?");
robertphillips5b693772014-11-21 06:19:36 -0800107DEFINE_bool(mpd, true, "Use MultiPictureDraw for the SKPs?");
cdaltonb4022962015-06-25 10:51:56 -0700108DEFINE_bool(loopSKP, true, "Loop SKPs like we do for micro benches?");
mtkleine070c2b2014-10-14 08:40:43 -0700109DEFINE_int32(flushEvery, 10, "Flush --outResultsFile every Nth run.");
mtklein55e88b22015-01-21 15:50:13 -0800110DEFINE_bool(resetGpuContext, true, "Reset the GrContext before running each test.");
bsalomonb12ea412015-02-02 21:19:50 -0800111DEFINE_bool(gpuStats, false, "Print GPU stats after each gpu benchmark?");
joshualitte45c81c2015-12-02 09:05:37 -0800112DEFINE_bool(gpuStatsDump, false, "Dump GPU states after each benchmark to json");
msarettc149f0e2016-01-04 11:35:43 -0800113DEFINE_bool(keepAlive, false, "Print a message every so often so that we don't time out");
mtklein92007582014-08-01 07:46:52 -0700114
mtklein65dfd2f2016-02-03 10:40:54 -0800115DEFINE_string(sourceType, "",
116 "Apply usual --match rules to source type: bench, gm, skp, image, etc.");
117DEFINE_string(benchType, "",
118 "Apply usual --match rules to bench type: micro, recording, playback, skcodec, etc.");
119
mtkleinbbba1682015-10-28 11:36:30 -0700120static double now_ms() { return SkTime::GetNSecs() * 1e-6; }
121
mtkleinf3723212014-06-25 14:08:00 -0700122static SkString humanize(double ms) {
mtkleindc5bbab2014-09-24 06:34:09 -0700123 if (FLAGS_verbose) return SkStringPrintf("%llu", (uint64_t)(ms*1e6));
mtklein748ca3b2015-01-15 10:56:12 -0800124 return HumanizeMs(ms);
mtkleinf3723212014-06-25 14:08:00 -0700125}
mtklein55b0ffc2014-07-17 08:38:23 -0700126#define HUMANIZE(ms) humanize(ms).c_str()
mtkleinf3723212014-06-25 14:08:00 -0700127
tomhudsond968a6f2015-03-26 11:28:06 -0700128bool Target::init(SkImageInfo info, Benchmark* bench) {
129 if (Benchmark::kRaster_Backend == config.backend) {
130 this->surface.reset(SkSurface::NewRaster(info));
131 if (!this->surface.get()) {
132 return false;
133 }
134 }
135 return true;
136}
137bool Target::capturePixels(SkBitmap* bmp) {
tomhudson75a0ebb2015-03-27 12:11:44 -0700138 SkCanvas* canvas = this->getCanvas();
tomhudsond968a6f2015-03-26 11:28:06 -0700139 if (!canvas) {
140 return false;
141 }
142 bmp->setInfo(canvas->imageInfo());
143 if (!canvas->readPixels(bmp, 0, 0)) {
144 SkDebugf("Can't read canvas pixels.\n");
145 return false;
146 }
147 return true;
148}
149
150#if SK_SUPPORT_GPU
151struct GPUTarget : public Target {
halcanary96fcdcc2015-08-27 07:41:13 -0700152 explicit GPUTarget(const Config& c) : Target(c), gl(nullptr) { }
tomhudsond968a6f2015-03-26 11:28:06 -0700153 SkGLContext* gl;
154
155 void setup() override {
156 this->gl->makeCurrent();
157 // Make sure we're done with whatever came before.
158 SK_GL(*this->gl, Finish());
159 }
160 void endTiming() override {
161 if (this->gl) {
162 SK_GL(*this->gl, Flush());
joshualitt01836ad2016-01-20 13:09:12 -0800163 this->gl->waitOnSyncOrSwap();
tomhudsond968a6f2015-03-26 11:28:06 -0700164 }
165 }
166 void fence() override {
167 SK_GL(*this->gl, Finish());
168 }
mtkleind75c4662015-04-30 07:11:22 -0700169
cdaltond416a5b2015-06-23 13:23:44 -0700170 bool needsFrameTiming(int* maxFrameLag) const override {
171 if (!this->gl->getMaxGpuFrameLag(maxFrameLag)) {
172 // Frame lag is unknown.
173 *maxFrameLag = FLAGS_gpuFrameLag;
174 }
175 return true;
176 }
tomhudsond968a6f2015-03-26 11:28:06 -0700177 bool init(SkImageInfo info, Benchmark* bench) override {
bsalomonafcd7cd2015-08-31 12:39:41 -0700178 uint32_t flags = this->config.useDFText ? SkSurfaceProps::kUseDeviceIndependentFonts_Flag :
179 0;
tomhudsond968a6f2015-03-26 11:28:06 -0700180 SkSurfaceProps props(flags, SkSurfaceProps::kLegacyFontHost_InitType);
kkinnunen5219fd92015-12-10 06:28:13 -0800181 this->surface.reset(SkSurface::NewRenderTarget(gGrFactory->get(this->config.ctxType,
kkinnunen5219fd92015-12-10 06:28:13 -0800182 this->config.ctxOptions),
tomhudsond968a6f2015-03-26 11:28:06 -0700183 SkSurface::kNo_Budgeted, info,
184 this->config.samples, &props));
kkinnunen3e980c32015-12-23 01:33:00 -0800185 this->gl = gGrFactory->getContextInfo(this->config.ctxType,
kkinnunen34058002016-01-06 23:49:30 -0800186 this->config.ctxOptions).fGLContext;
tomhudsond968a6f2015-03-26 11:28:06 -0700187 if (!this->surface.get()) {
188 return false;
189 }
cdaltond416a5b2015-06-23 13:23:44 -0700190 if (!this->gl->fenceSyncSupport()) {
191 SkDebugf("WARNING: GL context for config \"%s\" does not support fence sync. "
svaisanenc47635e2016-01-28 06:05:43 -0800192 "Timings might not be accurate.\n", this->config.name.c_str());
cdaltond416a5b2015-06-23 13:23:44 -0700193 }
tomhudsond968a6f2015-03-26 11:28:06 -0700194 return true;
195 }
196 void fillOptions(ResultsWriter* log) override {
197 const GrGLubyte* version;
198 SK_GL_RET(*this->gl, version, GetString(GR_GL_VERSION));
199 log->configOption("GL_VERSION", (const char*)(version));
200
201 SK_GL_RET(*this->gl, version, GetString(GR_GL_RENDERER));
202 log->configOption("GL_RENDERER", (const char*) version);
203
204 SK_GL_RET(*this->gl, version, GetString(GR_GL_VENDOR));
205 log->configOption("GL_VENDOR", (const char*) version);
206
207 SK_GL_RET(*this->gl, version, GetString(GR_GL_SHADING_LANGUAGE_VERSION));
208 log->configOption("GL_SHADING_LANGUAGE_VERSION", (const char*) version);
209 }
210};
mtkleind75c4662015-04-30 07:11:22 -0700211
tomhudsond968a6f2015-03-26 11:28:06 -0700212#endif
213
tomhudson75a0ebb2015-03-27 12:11:44 -0700214static double time(int loops, Benchmark* bench, Target* target) {
215 SkCanvas* canvas = target->getCanvas();
bsalomon6eb03cc2014-08-07 14:28:50 -0700216 if (canvas) {
217 canvas->clear(SK_ColorWHITE);
218 }
joshualitt8a6697a2015-09-30 12:11:07 -0700219 bench->preDraw(canvas);
mtkleinbbba1682015-10-28 11:36:30 -0700220 double start = now_ms();
tomhudson75a0ebb2015-03-27 12:11:44 -0700221 canvas = target->beginTiming(canvas);
222 bench->draw(loops, canvas);
mtkleinbb6a0282014-07-01 08:43:42 -0700223 if (canvas) {
224 canvas->flush();
225 }
tomhudson75a0ebb2015-03-27 12:11:44 -0700226 target->endTiming();
mtkleinbbba1682015-10-28 11:36:30 -0700227 double elapsed = now_ms() - start;
joshualitt8a6697a2015-09-30 12:11:07 -0700228 bench->postDraw(canvas);
mtkleinbbba1682015-10-28 11:36:30 -0700229 return elapsed;
mtkleinbb6a0282014-07-01 08:43:42 -0700230}
231
mtkleinf3723212014-06-25 14:08:00 -0700232static double estimate_timer_overhead() {
233 double overhead = 0;
mtkleinf3723212014-06-25 14:08:00 -0700234 for (int i = 0; i < FLAGS_overheadLoops; i++) {
mtkleinbbba1682015-10-28 11:36:30 -0700235 double start = now_ms();
236 overhead += now_ms() - start;
mtkleinf3723212014-06-25 14:08:00 -0700237 }
238 return overhead / FLAGS_overheadLoops;
239}
240
reed53249782014-10-10 09:09:52 -0700241static int detect_forever_loops(int loops) {
242 // look for a magic run-forever value
243 if (loops < 0) {
244 loops = SK_MaxS32;
245 }
246 return loops;
247}
248
mtklein55b0ffc2014-07-17 08:38:23 -0700249static int clamp_loops(int loops) {
250 if (loops < 1) {
mtklein527930f2014-11-06 08:04:34 -0800251 SkDebugf("ERROR: clamping loops from %d to 1. "
252 "There's probably something wrong with the bench.\n", loops);
mtklein55b0ffc2014-07-17 08:38:23 -0700253 return 1;
254 }
255 if (loops > FLAGS_maxLoops) {
256 SkDebugf("WARNING: clamping loops from %d to FLAGS_maxLoops, %d.\n", loops, FLAGS_maxLoops);
257 return FLAGS_maxLoops;
258 }
259 return loops;
260}
261
tomhudsond968a6f2015-03-26 11:28:06 -0700262static bool write_canvas_png(Target* target, const SkString& filename) {
263
bsalomon6eb03cc2014-08-07 14:28:50 -0700264 if (filename.isEmpty()) {
265 return false;
266 }
tomhudson75a0ebb2015-03-27 12:11:44 -0700267 if (target->getCanvas() &&
268 kUnknown_SkColorType == target->getCanvas()->imageInfo().colorType()) {
bsalomon6eb03cc2014-08-07 14:28:50 -0700269 return false;
270 }
tomhudsond968a6f2015-03-26 11:28:06 -0700271
bsalomon6eb03cc2014-08-07 14:28:50 -0700272 SkBitmap bmp;
tomhudsond968a6f2015-03-26 11:28:06 -0700273
274 if (!target->capturePixels(&bmp)) {
bsalomon6eb03cc2014-08-07 14:28:50 -0700275 return false;
276 }
tomhudsond968a6f2015-03-26 11:28:06 -0700277
bsalomon6eb03cc2014-08-07 14:28:50 -0700278 SkString dir = SkOSPath::Dirname(filename.c_str());
279 if (!sk_mkdir(dir.c_str())) {
280 SkDebugf("Can't make dir %s.\n", dir.c_str());
281 return false;
282 }
283 SkFILEWStream stream(filename.c_str());
284 if (!stream.isValid()) {
285 SkDebugf("Can't write %s.\n", filename.c_str());
286 return false;
287 }
288 if (!SkImageEncoder::EncodeStream(&stream, bmp, SkImageEncoder::kPNG_Type, 100)) {
289 SkDebugf("Can't encode a PNG.\n");
290 return false;
291 }
292 return true;
293}
294
295static int kFailedLoops = -2;
cdaltone1b89582015-06-25 19:17:08 -0700296static int setup_cpu_bench(const double overhead, Target* target, Benchmark* bench) {
mtkleinbb6a0282014-07-01 08:43:42 -0700297 // First figure out approximately how many loops of bench it takes to make overhead negligible.
mtklein2069e222014-08-04 13:57:39 -0700298 double bench_plus_overhead = 0.0;
mtklein55b0ffc2014-07-17 08:38:23 -0700299 int round = 0;
cdaltonb4022962015-06-25 10:51:56 -0700300 int loops = bench->calculateLoops(FLAGS_loops);
301 if (kAutoTuneLoops == loops) {
bsalomon6eb03cc2014-08-07 14:28:50 -0700302 while (bench_plus_overhead < overhead) {
303 if (round++ == FLAGS_maxCalibrationAttempts) {
304 SkDebugf("WARNING: Can't estimate loops for %s (%s vs. %s); skipping.\n",
mtklein96289052014-09-10 12:05:59 -0700305 bench->getUniqueName(), HUMANIZE(bench_plus_overhead), HUMANIZE(overhead));
bsalomon6eb03cc2014-08-07 14:28:50 -0700306 return kFailedLoops;
307 }
tomhudson75a0ebb2015-03-27 12:11:44 -0700308 bench_plus_overhead = time(1, bench, target);
mtklein55b0ffc2014-07-17 08:38:23 -0700309 }
mtklein2069e222014-08-04 13:57:39 -0700310 }
mtkleinf3723212014-06-25 14:08:00 -0700311
mtkleinbb6a0282014-07-01 08:43:42 -0700312 // Later we'll just start and stop the timer once but loop N times.
mtkleinf3723212014-06-25 14:08:00 -0700313 // We'll pick N to make timer overhead negligible:
314 //
mtkleinbb6a0282014-07-01 08:43:42 -0700315 // overhead
316 // ------------------------- < FLAGS_overheadGoal
317 // overhead + N * Bench Time
mtkleinf3723212014-06-25 14:08:00 -0700318 //
mtkleinbb6a0282014-07-01 08:43:42 -0700319 // where bench_plus_overhead ≈ overhead + Bench Time.
mtkleinf3723212014-06-25 14:08:00 -0700320 //
321 // Doing some math, we get:
322 //
mtkleinbb6a0282014-07-01 08:43:42 -0700323 // (overhead / FLAGS_overheadGoal) - overhead
324 // ------------------------------------------ < N
325 // bench_plus_overhead - overhead)
mtkleinf3723212014-06-25 14:08:00 -0700326 //
327 // Luckily, this also works well in practice. :)
bsalomon6eb03cc2014-08-07 14:28:50 -0700328 if (kAutoTuneLoops == loops) {
329 const double numer = overhead / FLAGS_overheadGoal - overhead;
330 const double denom = bench_plus_overhead - overhead;
331 loops = (int)ceil(numer / denom);
reed53249782014-10-10 09:09:52 -0700332 loops = clamp_loops(loops);
333 } else {
334 loops = detect_forever_loops(loops);
bsalomon6eb03cc2014-08-07 14:28:50 -0700335 }
mtkleinbb6a0282014-07-01 08:43:42 -0700336
mtkleinbb6a0282014-07-01 08:43:42 -0700337 return loops;
mtkleinf3723212014-06-25 14:08:00 -0700338}
339
cdaltone1b89582015-06-25 19:17:08 -0700340static int setup_gpu_bench(Target* target, Benchmark* bench, int maxGpuFrameLag) {
mtkleinbb6a0282014-07-01 08:43:42 -0700341 // First, figure out how many loops it'll take to get a frame up to FLAGS_gpuMs.
cdaltonb4022962015-06-25 10:51:56 -0700342 int loops = bench->calculateLoops(FLAGS_loops);
bsalomon6eb03cc2014-08-07 14:28:50 -0700343 if (kAutoTuneLoops == loops) {
344 loops = 1;
mtkleina189ccd2014-07-14 12:28:47 -0700345 double elapsed = 0;
346 do {
mtklein527930f2014-11-06 08:04:34 -0800347 if (1<<30 == loops) {
348 // We're about to wrap. Something's wrong with the bench.
349 loops = 0;
350 break;
351 }
mtkleina189ccd2014-07-14 12:28:47 -0700352 loops *= 2;
353 // If the GPU lets frames lag at all, we need to make sure we're timing
cdaltond416a5b2015-06-23 13:23:44 -0700354 // _this_ round, not still timing last round.
355 for (int i = 0; i < maxGpuFrameLag; i++) {
tomhudson75a0ebb2015-03-27 12:11:44 -0700356 elapsed = time(loops, bench, target);
mtkleina189ccd2014-07-14 12:28:47 -0700357 }
358 } while (elapsed < FLAGS_gpuMs);
mtkleinbb6a0282014-07-01 08:43:42 -0700359
mtkleina189ccd2014-07-14 12:28:47 -0700360 // We've overshot at least a little. Scale back linearly.
361 loops = (int)ceil(loops * FLAGS_gpuMs / elapsed);
reed53249782014-10-10 09:09:52 -0700362 loops = clamp_loops(loops);
mtkleinbb6a0282014-07-01 08:43:42 -0700363
tomhudsond968a6f2015-03-26 11:28:06 -0700364 // Make sure we're not still timing our calibration.
365 target->fence();
reed53249782014-10-10 09:09:52 -0700366 } else {
367 loops = detect_forever_loops(loops);
mtkleina189ccd2014-07-14 12:28:47 -0700368 }
mtkleinbb6a0282014-07-01 08:43:42 -0700369
370 // Pretty much the same deal as the calibration: do some warmup to make
371 // sure we're timing steady-state pipelined frames.
cdaltond416a5b2015-06-23 13:23:44 -0700372 for (int i = 0; i < maxGpuFrameLag - 1; i++) {
tomhudson75a0ebb2015-03-27 12:11:44 -0700373 time(loops, bench, target);
mtkleinf3723212014-06-25 14:08:00 -0700374 }
mtkleinbb6a0282014-07-01 08:43:42 -0700375
mtkleinbb6a0282014-07-01 08:43:42 -0700376 return loops;
377}
mtkleinbb6a0282014-07-01 08:43:42 -0700378
bsalomonc2553372014-07-22 13:09:05 -0700379#if SK_SUPPORT_GPU
380#define kBogusGLContextType GrContextFactory::kNative_GLContextType
kkinnunen5219fd92015-12-10 06:28:13 -0800381#define kBogusGLContextOptions GrContextFactory::kNone_GLContextOptions
bsalomonc2553372014-07-22 13:09:05 -0700382#else
383#define kBogusGLContextType 0
kkinnunen5219fd92015-12-10 06:28:13 -0800384#define kBogusGLContextOptions 0
mtkleine714e752014-07-31 12:13:48 -0700385#endif
bsalomonc2553372014-07-22 13:09:05 -0700386
svaisanenc47635e2016-01-28 06:05:43 -0800387static void create_config(const SkCommandLineConfig* config, SkTArray<Config>* configs) {
388
389#if SK_SUPPORT_GPU
390 if (const auto* gpuConfig = config->asConfigGpu()) {
391 if (!FLAGS_gpu)
392 return;
393
394 const auto ctxOptions = gpuConfig->getUseNVPR() ? GrContextFactory::kEnableNVPR_GLContextOptions
395 : GrContextFactory::kNone_GLContextOptions;
396 const auto ctxType = gpuConfig->getContextType();
397 const auto sampleCount = gpuConfig->getSamples();
398
399 if (const GrContext* ctx = gGrFactory->get(ctxType, ctxOptions)) {
400 const auto maxSampleCount = ctx->caps()->maxSampleCount();
401 if (sampleCount > ctx->caps()->maxSampleCount()) {
402 SkDebugf("Configuration sample count %d exceeds maximum %d.\n",
403 sampleCount, maxSampleCount);
404 return;
405 }
406 } else {
407 SkDebugf("No context was available matching config type and options.\n");
408 return;
409 }
410
411 Config target = {
412 config->getTag(),
413 Benchmark::kGPU_Backend,
414 kN32_SkColorType,
415 kPremul_SkAlphaType,
416 sampleCount,
417 ctxType,
418 ctxOptions,
419 false };
420
421 configs->push_back(target);
422 return;
423 }
424#endif
425
426 #define CPU_CONFIG(name, backend, color, alpha) \
427 if (config->getTag().equals(#name)) { \
428 Config config = { SkString(#name), Benchmark::backend, color, alpha, 0, \
429 kBogusGLContextType, kBogusGLContextOptions, \
430 false }; \
431 configs->push_back(config); \
432 return; \
mtkleinbb6a0282014-07-01 08:43:42 -0700433 }
mtkleine714e752014-07-31 12:13:48 -0700434
mtklein40b32be2014-07-09 08:46:49 -0700435 if (FLAGS_cpu) {
bsalomonc2553372014-07-22 13:09:05 -0700436 CPU_CONFIG(nonrendering, kNonRendering_Backend, kUnknown_SkColorType, kUnpremul_SkAlphaType)
437 CPU_CONFIG(8888, kRaster_Backend, kN32_SkColorType, kPremul_SkAlphaType)
438 CPU_CONFIG(565, kRaster_Backend, kRGB_565_SkColorType, kOpaque_SkAlphaType)
mtklein40b32be2014-07-09 08:46:49 -0700439 }
mtkleinbb6a0282014-07-01 08:43:42 -0700440
svaisanenc47635e2016-01-28 06:05:43 -0800441 #undef CPU_CONFIG
tomhudsond968a6f2015-03-26 11:28:06 -0700442
443#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
djsollen817c72a2016-01-28 13:57:02 -0800444 if (config->getTag().equals("hwui")) {
445 Config config = { SkString("hwui"), Benchmark::kHWUI_Backend, kRGBA_8888_SkColorType,
kkinnunen5219fd92015-12-10 06:28:13 -0800446 kPremul_SkAlphaType, 0, kBogusGLContextType, kBogusGLContextOptions,
447 false };
svaisanenc47635e2016-01-28 06:05:43 -0800448 configs->push_back(config);
tomhudsond968a6f2015-03-26 11:28:06 -0700449 }
450#endif
mtkleinf3723212014-06-25 14:08:00 -0700451}
452
svaisanenc47635e2016-01-28 06:05:43 -0800453// Append all configs that are enabled and supported.
454void create_configs(SkTArray<Config>* configs) {
455 SkCommandLineConfigArray array;
456 ParseConfigs(FLAGS_config, &array);
457 for (int i = 0; i < array.count(); ++i) {
458 create_config(array[i], configs);
459 }
460}
461
halcanary96fcdcc2015-08-27 07:41:13 -0700462// If bench is enabled for config, returns a Target* for it, otherwise nullptr.
bsalomonc2553372014-07-22 13:09:05 -0700463static Target* is_enabled(Benchmark* bench, const Config& config) {
464 if (!bench->isSuitableFor(config.backend)) {
halcanary96fcdcc2015-08-27 07:41:13 -0700465 return nullptr;
bsalomonc2553372014-07-22 13:09:05 -0700466 }
467
reede5ea5002014-09-03 11:54:58 -0700468 SkImageInfo info = SkImageInfo::Make(bench->getSize().fX, bench->getSize().fY,
469 config.color, config.alpha);
bsalomonc2553372014-07-22 13:09:05 -0700470
halcanary96fcdcc2015-08-27 07:41:13 -0700471 Target* target = nullptr;
bsalomonc2553372014-07-22 13:09:05 -0700472
tomhudsond968a6f2015-03-26 11:28:06 -0700473 switch (config.backend) {
bsalomonc2553372014-07-22 13:09:05 -0700474#if SK_SUPPORT_GPU
tomhudsond968a6f2015-03-26 11:28:06 -0700475 case Benchmark::kGPU_Backend:
476 target = new GPUTarget(config);
477 break;
bsalomonc2553372014-07-22 13:09:05 -0700478#endif
tomhudsond968a6f2015-03-26 11:28:06 -0700479#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
480 case Benchmark::kHWUI_Backend:
481 target = new HWUITarget(config, bench);
482 break;
483#endif
484 default:
485 target = new Target(config);
486 break;
487 }
bsalomonc2553372014-07-22 13:09:05 -0700488
tomhudsond968a6f2015-03-26 11:28:06 -0700489 if (!target->init(info, bench)) {
bsalomonc2553372014-07-22 13:09:05 -0700490 delete target;
halcanary96fcdcc2015-08-27 07:41:13 -0700491 return nullptr;
bsalomonc2553372014-07-22 13:09:05 -0700492 }
493 return target;
494}
495
msarett5cb48852015-11-06 08:56:32 -0800496static bool valid_brd_bench(SkData* encoded, SkBitmapRegionDecoder::Strategy strategy,
msarett7f691442015-09-22 11:56:16 -0700497 SkColorType colorType, uint32_t sampleSize, uint32_t minOutputSize, int* width,
498 int* height) {
msarett5cb48852015-11-06 08:56:32 -0800499 SkAutoTDelete<SkBitmapRegionDecoder> brd(
500 SkBitmapRegionDecoder::Create(encoded, strategy));
msarett7f691442015-09-22 11:56:16 -0700501 if (nullptr == brd.get()) {
502 // This is indicates that subset decoding is not supported for a particular image format.
503 return false;
504 }
505
msarett35e5d1b2015-10-27 12:50:25 -0700506 SkBitmap bitmap;
507 if (!brd->decodeRegion(&bitmap, nullptr, SkIRect::MakeXYWH(0, 0, brd->width(), brd->height()),
508 1, colorType, false)) {
509 return false;
510 }
msarett7f691442015-09-22 11:56:16 -0700511
512 if (sampleSize * minOutputSize > (uint32_t) brd->width() || sampleSize * minOutputSize >
513 (uint32_t) brd->height()) {
514 // This indicates that the image is not large enough to decode a
515 // minOutputSize x minOutputSize subset at the given sampleSize.
516 return false;
517 }
518
519 // Set the image width and height. The calling code will use this to choose subsets to decode.
520 *width = brd->width();
521 *height = brd->height();
522 return true;
523}
524
egdaniel3bf92062015-06-26 08:12:46 -0700525static void cleanup_run(Target* target) {
halcanary385fe4d2015-08-26 13:07:48 -0700526 delete target;
egdaniel3bf92062015-06-26 08:12:46 -0700527#if SK_SUPPORT_GPU
528 if (FLAGS_abandonGpuContext) {
529 gGrFactory->abandonContexts();
530 }
531 if (FLAGS_resetGpuContext || FLAGS_abandonGpuContext) {
532 gGrFactory->destroyContexts();
533 }
534#endif
535}
536
mtkleine714e752014-07-31 12:13:48 -0700537class BenchmarkStream {
538public:
mtklein92007582014-08-01 07:46:52 -0700539 BenchmarkStream() : fBenches(BenchRegistry::Head())
540 , fGMs(skiagm::GMRegistry::Head())
mtkleinfd731ce2014-09-10 12:19:30 -0700541 , fCurrentRecording(0)
mtklein92007582014-08-01 07:46:52 -0700542 , fCurrentScale(0)
robertphillips5b693772014-11-21 06:19:36 -0800543 , fCurrentSKP(0)
msarett95f192d2015-02-13 09:05:41 -0800544 , fCurrentUseMPD(0)
scroggo60869a42015-04-01 12:09:17 -0700545 , fCurrentCodec(0)
msarett7f691442015-09-22 11:56:16 -0700546 , fCurrentBRDImage(0)
msarett95f192d2015-02-13 09:05:41 -0800547 , fCurrentColorType(0)
msarettc7796b92016-01-07 14:20:20 -0800548 , fCurrentAlphaType(0)
msarettb23e6aa2015-06-09 13:56:10 -0700549 , fCurrentSubsetType(0)
msarett7f691442015-09-22 11:56:16 -0700550 , fCurrentBRDStrategy(0)
551 , fCurrentBRDSampleSize(0)
msarettb23e6aa2015-06-09 13:56:10 -0700552 , fCurrentAnimSKP(0) {
mtklein92007582014-08-01 07:46:52 -0700553 for (int i = 0; i < FLAGS_skps.count(); i++) {
554 if (SkStrEndsWith(FLAGS_skps[i], ".skp")) {
555 fSKPs.push_back() = FLAGS_skps[i];
556 } else {
557 SkOSFile::Iter it(FLAGS_skps[i], ".skp");
558 SkString path;
559 while (it.next(&path)) {
560 fSKPs.push_back() = SkOSPath::Join(FLAGS_skps[0], path.c_str());
561 }
562 }
563 }
mtkleine714e752014-07-31 12:13:48 -0700564
mtklein92007582014-08-01 07:46:52 -0700565 if (4 != sscanf(FLAGS_clip[0], "%d,%d,%d,%d",
566 &fClip.fLeft, &fClip.fTop, &fClip.fRight, &fClip.fBottom)) {
567 SkDebugf("Can't parse %s from --clip as an SkIRect.\n", FLAGS_clip[0]);
568 exit(1);
569 }
570
571 for (int i = 0; i < FLAGS_scales.count(); i++) {
572 if (1 != sscanf(FLAGS_scales[i], "%f", &fScales.push_back())) {
573 SkDebugf("Can't parse %s from --scales as an SkScalar.\n", FLAGS_scales[i]);
574 exit(1);
575 }
576 }
robertphillips5b693772014-11-21 06:19:36 -0800577
cdalton63a82852015-06-29 14:06:10 -0700578 if (2 != sscanf(FLAGS_zoom[0], "%f,%lf", &fZoomMax, &fZoomPeriodMs)) {
579 SkDebugf("Can't parse %s from --zoom as a zoomMax,zoomPeriodMs.\n", FLAGS_zoom[0]);
joshualitt261c3ad2015-04-27 09:16:57 -0700580 exit(1);
581 }
582
robertphillips5b693772014-11-21 06:19:36 -0800583 if (FLAGS_mpd) {
584 fUseMPDs.push_back() = true;
585 }
mtkleinc751ecb2015-06-15 08:56:38 -0700586 fUseMPDs.push_back() = false;
mtklein95553d92015-03-12 08:24:21 -0700587
msarett95f192d2015-02-13 09:05:41 -0800588 // Prepare the images for decoding
scroggo86737142016-02-03 12:19:11 -0800589 if (!CollectImages(&fImages)) {
590 exit(1);
msarett95f192d2015-02-13 09:05:41 -0800591 }
mtklein95553d92015-03-12 08:24:21 -0700592
msarett95f192d2015-02-13 09:05:41 -0800593 // Choose the candidate color types for image decoding
594 const SkColorType colorTypes[] =
msarettb23e6aa2015-06-09 13:56:10 -0700595 { kN32_SkColorType,
596 kRGB_565_SkColorType,
597 kAlpha_8_SkColorType,
598 kIndex_8_SkColorType,
599 kGray_8_SkColorType };
msarett74deb982015-10-20 16:45:56 -0700600 fColorTypes.reset(colorTypes, SK_ARRAY_COUNT(colorTypes));
mtklein92007582014-08-01 07:46:52 -0700601 }
602
mtkleinfd731ce2014-09-10 12:19:30 -0700603 static bool ReadPicture(const char* path, SkAutoTUnref<SkPicture>* pic) {
604 // Not strictly necessary, as it will be checked again later,
605 // but helps to avoid a lot of pointless work if we're going to skip it.
606 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, path)) {
607 return false;
608 }
609
scroggoa1193e42015-01-21 12:09:53 -0800610 SkAutoTDelete<SkStream> stream(SkStream::NewFromFile(path));
halcanary96fcdcc2015-08-27 07:41:13 -0700611 if (stream.get() == nullptr) {
mtkleinfd731ce2014-09-10 12:19:30 -0700612 SkDebugf("Could not read %s.\n", path);
613 return false;
614 }
615
mtklein57f27bd2015-02-09 11:58:41 -0800616 pic->reset(SkPicture::CreateFromStream(stream.get()));
halcanary96fcdcc2015-08-27 07:41:13 -0700617 if (pic->get() == nullptr) {
mtkleinfd731ce2014-09-10 12:19:30 -0700618 SkDebugf("Could not read %s as an SkPicture.\n", path);
619 return false;
620 }
621 return true;
622 }
623
mtklein92007582014-08-01 07:46:52 -0700624 Benchmark* next() {
mtklein65dfd2f2016-02-03 10:40:54 -0800625 SkAutoTDelete<Benchmark> bench;
626 do {
627 bench.reset(this->rawNext());
628 if (!bench) {
629 return nullptr;
630 }
631 } while(SkCommandLineFlags::ShouldSkip(FLAGS_sourceType, fSourceType) ||
632 SkCommandLineFlags::ShouldSkip(FLAGS_benchType, fBenchType));
633 return bench.detach();
634 }
635
636 Benchmark* rawNext() {
mtkleine714e752014-07-31 12:13:48 -0700637 if (fBenches) {
halcanary96fcdcc2015-08-27 07:41:13 -0700638 Benchmark* bench = fBenches->factory()(nullptr);
mtkleine714e752014-07-31 12:13:48 -0700639 fBenches = fBenches->next();
mtklein92007582014-08-01 07:46:52 -0700640 fSourceType = "bench";
mtkleinfd731ce2014-09-10 12:19:30 -0700641 fBenchType = "micro";
mtkleine714e752014-07-31 12:13:48 -0700642 return bench;
643 }
mtklein92007582014-08-01 07:46:52 -0700644
mtkleine714e752014-07-31 12:13:48 -0700645 while (fGMs) {
halcanary96fcdcc2015-08-27 07:41:13 -0700646 SkAutoTDelete<skiagm::GM> gm(fGMs->factory()(nullptr));
mtkleine714e752014-07-31 12:13:48 -0700647 fGMs = fGMs->next();
mtkleincf5d9c92015-01-23 10:31:45 -0800648 if (gm->runAsBench()) {
mtklein92007582014-08-01 07:46:52 -0700649 fSourceType = "gm";
mtkleinfd731ce2014-09-10 12:19:30 -0700650 fBenchType = "micro";
halcanary385fe4d2015-08-26 13:07:48 -0700651 return new GMBench(gm.detach());
mtkleine714e752014-07-31 12:13:48 -0700652 }
653 }
mtklein92007582014-08-01 07:46:52 -0700654
mtkleinfd731ce2014-09-10 12:19:30 -0700655 // First add all .skps as RecordingBenches.
656 while (fCurrentRecording < fSKPs.count()) {
657 const SkString& path = fSKPs[fCurrentRecording++];
658 SkAutoTUnref<SkPicture> pic;
659 if (!ReadPicture(path.c_str(), &pic)) {
660 continue;
661 }
662 SkString name = SkOSPath::Basename(path.c_str());
663 fSourceType = "skp";
664 fBenchType = "recording";
bsalomon0aa5cea2014-12-15 09:13:35 -0800665 fSKPBytes = static_cast<double>(SkPictureUtils::ApproximateBytesUsed(pic));
mtklein051e56d2014-12-04 08:46:51 -0800666 fSKPOps = pic->approximateOpCount();
halcanary385fe4d2015-08-26 13:07:48 -0700667 return new RecordingBench(name.c_str(), pic.get(), FLAGS_bbh);
mtkleinfd731ce2014-09-10 12:19:30 -0700668 }
669
670 // Then once each for each scale as SKPBenches (playback).
mtklein92007582014-08-01 07:46:52 -0700671 while (fCurrentScale < fScales.count()) {
672 while (fCurrentSKP < fSKPs.count()) {
robertphillips5b693772014-11-21 06:19:36 -0800673 const SkString& path = fSKPs[fCurrentSKP];
mtkleinfd731ce2014-09-10 12:19:30 -0700674 SkAutoTUnref<SkPicture> pic;
675 if (!ReadPicture(path.c_str(), &pic)) {
robertphillips5b693772014-11-21 06:19:36 -0800676 fCurrentSKP++;
mtklein92007582014-08-01 07:46:52 -0700677 continue;
678 }
robertphillips5b693772014-11-21 06:19:36 -0800679
680 while (fCurrentUseMPD < fUseMPDs.count()) {
681 if (FLAGS_bbh) {
682 // The SKP we read off disk doesn't have a BBH. Re-record so it grows one.
683 SkRTreeFactory factory;
684 SkPictureRecorder recorder;
685 static const int kFlags = SkPictureRecorder::kComputeSaveLayerInfo_RecordFlag;
686 pic->playback(recorder.beginRecording(pic->cullRect().width(),
687 pic->cullRect().height(),
mtklein748ca3b2015-01-15 10:56:12 -0800688 &factory,
robertphillipse451c4d2014-12-09 10:28:00 -0800689 fUseMPDs[fCurrentUseMPD] ? kFlags : 0));
robertphillips5b693772014-11-21 06:19:36 -0800690 pic.reset(recorder.endRecording());
691 }
692 SkString name = SkOSPath::Basename(path.c_str());
693 fSourceType = "skp";
694 fBenchType = "playback";
halcanary385fe4d2015-08-26 13:07:48 -0700695 return new SKPBench(name.c_str(), pic.get(), fClip, fScales[fCurrentScale],
696 fUseMPDs[fCurrentUseMPD++], FLAGS_loopSKP);
mtklein20840502014-08-21 15:51:22 -0700697 }
robertphillips5b693772014-11-21 06:19:36 -0800698 fCurrentUseMPD = 0;
699 fCurrentSKP++;
mtklein92007582014-08-01 07:46:52 -0700700 }
701 fCurrentSKP = 0;
702 fCurrentScale++;
703 }
704
joshualitt261c3ad2015-04-27 09:16:57 -0700705 // Now loop over each skp again if we have an animation
cdalton63a82852015-06-29 14:06:10 -0700706 if (fZoomMax != 1.0f && fZoomPeriodMs > 0) {
joshualitt261c3ad2015-04-27 09:16:57 -0700707 while (fCurrentAnimSKP < fSKPs.count()) {
708 const SkString& path = fSKPs[fCurrentAnimSKP];
709 SkAutoTUnref<SkPicture> pic;
710 if (!ReadPicture(path.c_str(), &pic)) {
711 fCurrentAnimSKP++;
712 continue;
713 }
714
715 fCurrentAnimSKP++;
716 SkString name = SkOSPath::Basename(path.c_str());
cdalton63a82852015-06-29 14:06:10 -0700717 SkAutoTUnref<SKPAnimationBench::Animation> animation(
718 SKPAnimationBench::CreateZoomAnimation(fZoomMax, fZoomPeriodMs));
halcanary385fe4d2015-08-26 13:07:48 -0700719 return new SKPAnimationBench(name.c_str(), pic.get(), fClip, animation,
720 FLAGS_loopSKP);
joshualitt261c3ad2015-04-27 09:16:57 -0700721 }
722 }
723
scroggo60869a42015-04-01 12:09:17 -0700724 for (; fCurrentCodec < fImages.count(); fCurrentCodec++) {
scroggo303fa352015-10-05 11:03:34 -0700725 fSourceType = "image";
726 fBenchType = "skcodec";
scroggo60869a42015-04-01 12:09:17 -0700727 const SkString& path = fImages[fCurrentCodec];
mtklein6f0ff912016-01-11 09:04:21 -0800728 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, path.c_str())) {
729 continue;
730 }
scroggo60869a42015-04-01 12:09:17 -0700731 SkAutoTUnref<SkData> encoded(SkData::NewFromFileName(path.c_str()));
732 SkAutoTDelete<SkCodec> codec(SkCodec::NewFromData(encoded));
scroggo60869a42015-04-01 12:09:17 -0700733 if (!codec) {
734 // Nothing to time.
msarett9d9725c2015-04-24 11:41:55 -0700735 SkDebugf("Cannot find codec for %s\n", path.c_str());
scroggo60869a42015-04-01 12:09:17 -0700736 continue;
737 }
scroggo21027992015-04-02 13:22:38 -0700738
scroggo60869a42015-04-01 12:09:17 -0700739 while (fCurrentColorType < fColorTypes.count()) {
scroggo21027992015-04-02 13:22:38 -0700740 const SkColorType colorType = fColorTypes[fCurrentColorType];
scroggo21027992015-04-02 13:22:38 -0700741
msarettc7796b92016-01-07 14:20:20 -0800742 SkAlphaType alphaType = codec->getInfo().alphaType();
743 switch (alphaType) {
744 case kOpaque_SkAlphaType:
745 // We only need to test one alpha type (opaque).
746 fCurrentColorType++;
747 break;
748 case kUnpremul_SkAlphaType:
749 case kPremul_SkAlphaType:
750 if (0 == fCurrentAlphaType) {
751 // Test unpremul first.
752 alphaType = kUnpremul_SkAlphaType;
753 fCurrentAlphaType++;
754 } else {
755 // Test premul.
756 alphaType = kPremul_SkAlphaType;
757 fCurrentAlphaType = 0;
758 fCurrentColorType++;
759 }
760 break;
761 default:
762 SkASSERT(false);
763 fCurrentColorType++;
764 break;
scroggo21027992015-04-02 13:22:38 -0700765 }
766
msarettc7796b92016-01-07 14:20:20 -0800767 // Make sure we can decode to this color type and alpha type.
768 SkImageInfo info =
769 codec->getInfo().makeColorType(colorType).makeAlphaType(alphaType);
scroggo21027992015-04-02 13:22:38 -0700770 const size_t rowBytes = info.minRowBytes();
771 SkAutoMalloc storage(info.getSafeSize(rowBytes));
772
773 // Used if fCurrentColorType is kIndex_8_SkColorType
774 int colorCount = 256;
775 SkPMColor colors[256];
776
scroggoeb602a52015-07-09 08:16:03 -0700777 const SkCodec::Result result = codec->getPixels(
halcanary96fcdcc2015-08-27 07:41:13 -0700778 info, storage.get(), rowBytes, nullptr, colors,
scroggo21027992015-04-02 13:22:38 -0700779 &colorCount);
scroggo60869a42015-04-01 12:09:17 -0700780 switch (result) {
scroggoeb602a52015-07-09 08:16:03 -0700781 case SkCodec::kSuccess:
782 case SkCodec::kIncompleteInput:
scroggo60869a42015-04-01 12:09:17 -0700783 return new CodecBench(SkOSPath::Basename(path.c_str()),
msarettc7796b92016-01-07 14:20:20 -0800784 encoded, colorType, alphaType);
scroggoeb602a52015-07-09 08:16:03 -0700785 case SkCodec::kInvalidConversion:
scroggo60869a42015-04-01 12:09:17 -0700786 // This is okay. Not all conversions are valid.
787 break;
scroggo60869a42015-04-01 12:09:17 -0700788 default:
789 // This represents some sort of failure.
790 SkASSERT(false);
791 break;
792 }
793 }
794 fCurrentColorType = 0;
795 }
796
msarett7f691442015-09-22 11:56:16 -0700797 // Run the BRDBenches
798 // We will benchmark multiple BRD strategies.
scroggo303fa352015-10-05 11:03:34 -0700799 static const struct {
msarett5cb48852015-11-06 08:56:32 -0800800 SkBitmapRegionDecoder::Strategy fStrategy;
msarett0459c942015-11-10 14:52:13 -0800801 const char* fName;
scroggo303fa352015-10-05 11:03:34 -0700802 } strategies[] = {
msarett0459c942015-11-10 14:52:13 -0800803 { SkBitmapRegionDecoder::kCanvas_Strategy, "BRD_canvas" },
msarett5cb48852015-11-06 08:56:32 -0800804 { SkBitmapRegionDecoder::kAndroidCodec_Strategy, "BRD_android_codec" },
msarett7f691442015-09-22 11:56:16 -0700805 };
806
807 // We intend to create benchmarks that model the use cases in
808 // android/libraries/social/tiledimage. In this library, an image is decoded in 512x512
809 // tiles. The image can be translated freely, so the location of a tile may be anywhere in
810 // the image. For that reason, we will benchmark decodes in five representative locations
811 // in the image. Additionally, this use case utilizes power of two scaling, so we will
812 // test on power of two sample sizes. The output tile is always 512x512, so, when a
813 // sampleSize is used, the size of the subset that is decoded is always
814 // (sampleSize*512)x(sampleSize*512).
815 // There are a few good reasons to only test on power of two sample sizes at this time:
816 // JPEG decodes using kOriginal_Strategy are broken for non-powers of two.
halcanary6950de62015-11-07 05:29:00 -0800817 // https://bug.skia.org/4319
msarett7f691442015-09-22 11:56:16 -0700818 // All use cases we are aware of only scale by powers of two.
819 // PNG decodes use the indicated sampling strategy regardless of the sample size, so
820 // these tests are sufficient to provide good coverage of our scaling options.
scroggo501b7342015-11-03 07:55:11 -0800821 const uint32_t sampleSizes[] = { 1, 2, 4, 8, 16, 32, 64 };
msarett7f691442015-09-22 11:56:16 -0700822 const uint32_t minOutputSize = 512;
mtklein6f0ff912016-01-11 09:04:21 -0800823 for (; fCurrentBRDImage < fImages.count(); fCurrentBRDImage++) {
824 const SkString& path = fImages[fCurrentBRDImage];
825 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, path.c_str())) {
826 continue;
827 }
msarett7f691442015-09-22 11:56:16 -0700828 while (fCurrentBRDStrategy < (int) SK_ARRAY_COUNT(strategies)) {
scroggo303fa352015-10-05 11:03:34 -0700829 fSourceType = "image";
830 fBenchType = strategies[fCurrentBRDStrategy].fName;
scroggo860e8a62015-10-15 07:51:28 -0700831
msarett5cb48852015-11-06 08:56:32 -0800832 const SkBitmapRegionDecoder::Strategy strategy =
scroggo860e8a62015-10-15 07:51:28 -0700833 strategies[fCurrentBRDStrategy].fStrategy;
834
msarett7f691442015-09-22 11:56:16 -0700835 while (fCurrentColorType < fColorTypes.count()) {
836 while (fCurrentBRDSampleSize < (int) SK_ARRAY_COUNT(sampleSizes)) {
837 while (fCurrentSubsetType <= kLastSingle_SubsetType) {
scroggo860e8a62015-10-15 07:51:28 -0700838
839
msarett7f691442015-09-22 11:56:16 -0700840 SkAutoTUnref<SkData> encoded(SkData::NewFromFileName(path.c_str()));
841 const SkColorType colorType = fColorTypes[fCurrentColorType];
842 uint32_t sampleSize = sampleSizes[fCurrentBRDSampleSize];
843 int currentSubsetType = fCurrentSubsetType++;
844
845 int width = 0;
846 int height = 0;
847 if (!valid_brd_bench(encoded.get(), strategy, colorType, sampleSize,
848 minOutputSize, &width, &height)) {
849 break;
850 }
851
852 SkString basename = SkOSPath::Basename(path.c_str());
853 SkIRect subset;
854 const uint32_t subsetSize = sampleSize * minOutputSize;
855 switch (currentSubsetType) {
856 case kTopLeft_SubsetType:
857 basename.append("_TopLeft");
858 subset = SkIRect::MakeXYWH(0, 0, subsetSize, subsetSize);
859 break;
860 case kTopRight_SubsetType:
861 basename.append("_TopRight");
862 subset = SkIRect::MakeXYWH(width - subsetSize, 0, subsetSize,
863 subsetSize);
864 break;
865 case kMiddle_SubsetType:
866 basename.append("_Middle");
867 subset = SkIRect::MakeXYWH((width - subsetSize) / 2,
868 (height - subsetSize) / 2, subsetSize, subsetSize);
869 break;
870 case kBottomLeft_SubsetType:
871 basename.append("_BottomLeft");
872 subset = SkIRect::MakeXYWH(0, height - subsetSize, subsetSize,
873 subsetSize);
874 break;
875 case kBottomRight_SubsetType:
876 basename.append("_BottomRight");
877 subset = SkIRect::MakeXYWH(width - subsetSize,
878 height - subsetSize, subsetSize, subsetSize);
879 break;
880 default:
881 SkASSERT(false);
882 }
883
884 return new BitmapRegionDecoderBench(basename.c_str(), encoded.get(),
885 strategy, colorType, sampleSize, subset);
886 }
887 fCurrentSubsetType = 0;
888 fCurrentBRDSampleSize++;
889 }
890 fCurrentBRDSampleSize = 0;
891 fCurrentColorType++;
892 }
893 fCurrentColorType = 0;
894 fCurrentBRDStrategy++;
895 }
896 fCurrentBRDStrategy = 0;
msarett7f691442015-09-22 11:56:16 -0700897 }
898
halcanary96fcdcc2015-08-27 07:41:13 -0700899 return nullptr;
mtkleine714e752014-07-31 12:13:48 -0700900 }
mtklein92007582014-08-01 07:46:52 -0700901
902 void fillCurrentOptions(ResultsWriter* log) const {
903 log->configOption("source_type", fSourceType);
mtkleinfd731ce2014-09-10 12:19:30 -0700904 log->configOption("bench_type", fBenchType);
mtklein92007582014-08-01 07:46:52 -0700905 if (0 == strcmp(fSourceType, "skp")) {
906 log->configOption("clip",
907 SkStringPrintf("%d %d %d %d", fClip.fLeft, fClip.fTop,
908 fClip.fRight, fClip.fBottom).c_str());
djsollenf2b340f2016-01-29 08:51:04 -0800909 SkASSERT_RELEASE(fCurrentScale < fScales.count()); // debugging paranoia
mtklein92007582014-08-01 07:46:52 -0700910 log->configOption("scale", SkStringPrintf("%.2g", fScales[fCurrentScale]).c_str());
robertphillips5b693772014-11-21 06:19:36 -0800911 if (fCurrentUseMPD > 0) {
912 SkASSERT(1 == fCurrentUseMPD || 2 == fCurrentUseMPD);
913 log->configOption("multi_picture_draw", fUseMPDs[fCurrentUseMPD-1] ? "true" : "false");
914 }
mtklein92007582014-08-01 07:46:52 -0700915 }
mtklein051e56d2014-12-04 08:46:51 -0800916 if (0 == strcmp(fBenchType, "recording")) {
917 log->metric("bytes", fSKPBytes);
918 log->metric("ops", fSKPOps);
919 }
mtklein92007582014-08-01 07:46:52 -0700920 }
921
mtkleine714e752014-07-31 12:13:48 -0700922private:
msarettb23e6aa2015-06-09 13:56:10 -0700923 enum SubsetType {
924 kTopLeft_SubsetType = 0,
925 kTopRight_SubsetType = 1,
msarettab80e352015-06-17 10:28:22 -0700926 kMiddle_SubsetType = 2,
927 kBottomLeft_SubsetType = 3,
928 kBottomRight_SubsetType = 4,
929 kTranslate_SubsetType = 5,
930 kZoom_SubsetType = 6,
msarett7f691442015-09-22 11:56:16 -0700931 kLast_SubsetType = kZoom_SubsetType,
932 kLastSingle_SubsetType = kBottomRight_SubsetType,
msarettb23e6aa2015-06-09 13:56:10 -0700933 };
934
mtkleine714e752014-07-31 12:13:48 -0700935 const BenchRegistry* fBenches;
936 const skiagm::GMRegistry* fGMs;
mtklein92007582014-08-01 07:46:52 -0700937 SkIRect fClip;
938 SkTArray<SkScalar> fScales;
939 SkTArray<SkString> fSKPs;
robertphillips5b693772014-11-21 06:19:36 -0800940 SkTArray<bool> fUseMPDs;
msarett95f192d2015-02-13 09:05:41 -0800941 SkTArray<SkString> fImages;
msarett74deb982015-10-20 16:45:56 -0700942 SkTArray<SkColorType, true> fColorTypes;
cdalton63a82852015-06-29 14:06:10 -0700943 SkScalar fZoomMax;
944 double fZoomPeriodMs;
mtklein92007582014-08-01 07:46:52 -0700945
mtklein051e56d2014-12-04 08:46:51 -0800946 double fSKPBytes, fSKPOps;
947
mtkleinfd731ce2014-09-10 12:19:30 -0700948 const char* fSourceType; // What we're benching: bench, GM, SKP, ...
949 const char* fBenchType; // How we bench it: micro, recording, playback, ...
950 int fCurrentRecording;
mtklein92007582014-08-01 07:46:52 -0700951 int fCurrentScale;
952 int fCurrentSKP;
robertphillips5b693772014-11-21 06:19:36 -0800953 int fCurrentUseMPD;
scroggo60869a42015-04-01 12:09:17 -0700954 int fCurrentCodec;
msarett7f691442015-09-22 11:56:16 -0700955 int fCurrentBRDImage;
msarett95f192d2015-02-13 09:05:41 -0800956 int fCurrentColorType;
msarettc7796b92016-01-07 14:20:20 -0800957 int fCurrentAlphaType;
msarettb23e6aa2015-06-09 13:56:10 -0700958 int fCurrentSubsetType;
msarett7f691442015-09-22 11:56:16 -0700959 int fCurrentBRDStrategy;
960 int fCurrentBRDSampleSize;
joshualitt261c3ad2015-04-27 09:16:57 -0700961 int fCurrentAnimSKP;
mtkleine714e752014-07-31 12:13:48 -0700962};
963
msarettc149f0e2016-01-04 11:35:43 -0800964// Some runs (mostly, Valgrind) are so slow that the bot framework thinks we've hung.
965// This prints something every once in a while so that it knows we're still working.
966static void start_keepalive() {
967 struct Loop {
968 static void forever(void*) {
969 for (;;) {
970 static const int kSec = 1200;
971 #if defined(SK_BUILD_FOR_WIN)
972 Sleep(kSec * 1000);
973 #else
974 sleep(kSec);
975 #endif
976 SkDebugf("\nBenchmarks still running...\n");
977 }
978 }
979 };
980 static SkThread* intentionallyLeaked = new SkThread(Loop::forever);
981 intentionallyLeaked->start();
982}
983
jcgregorio3b27ade2014-11-13 08:06:40 -0800984int nanobench_main();
caryclark17f0b6d2014-07-22 10:15:34 -0700985int nanobench_main() {
jcgregorio3b27ade2014-11-13 08:06:40 -0800986 SetupCrashHandler();
mtkleinf3723212014-06-25 14:08:00 -0700987 SkAutoGraphics ag;
mtkleincc29d262015-07-09 10:04:56 -0700988 SkTaskGroup::Enabler enabled(FLAGS_threads);
mtkleinf3723212014-06-25 14:08:00 -0700989
krajcevski69a55602014-08-13 10:46:31 -0700990#if SK_SUPPORT_GPU
bsalomon682c2692015-05-22 14:01:46 -0700991 GrContextOptions grContextOpts;
krajcevski12b35442014-08-13 12:06:26 -0700992 grContextOpts.fDrawPathToCompressedTexture = FLAGS_gpuCompressAlphaMasks;
halcanary385fe4d2015-08-26 13:07:48 -0700993 gGrFactory.reset(new GrContextFactory(grContextOpts));
krajcevski69a55602014-08-13 10:46:31 -0700994#endif
995
bsalomon06cddec2014-10-24 10:40:50 -0700996 if (FLAGS_veryVerbose) {
997 FLAGS_verbose = true;
998 }
999
bsalomon6eb03cc2014-08-07 14:28:50 -07001000 if (kAutoTuneLoops != FLAGS_loops) {
mtkleina189ccd2014-07-14 12:28:47 -07001001 FLAGS_samples = 1;
1002 FLAGS_gpuFrameLag = 0;
1003 }
1004
bsalomon6eb03cc2014-08-07 14:28:50 -07001005 if (!FLAGS_writePath.isEmpty()) {
1006 SkDebugf("Writing files to %s.\n", FLAGS_writePath[0]);
1007 if (!sk_mkdir(FLAGS_writePath[0])) {
1008 SkDebugf("Could not create %s. Files won't be written.\n", FLAGS_writePath[0]);
halcanary96fcdcc2015-08-27 07:41:13 -07001009 FLAGS_writePath.set(0, nullptr);
bsalomon6eb03cc2014-08-07 14:28:50 -07001010 }
1011 }
1012
halcanary385fe4d2015-08-26 13:07:48 -07001013 SkAutoTDelete<ResultsWriter> log(new ResultsWriter);
mtklein60317d0f2014-07-14 11:30:37 -07001014 if (!FLAGS_outResultsFile.isEmpty()) {
mtklein53520152016-01-20 09:53:59 -08001015#if defined(SK_RELEASE)
halcanary385fe4d2015-08-26 13:07:48 -07001016 log.reset(new NanoJSONResultsWriter(FLAGS_outResultsFile[0]));
mtklein53520152016-01-20 09:53:59 -08001017#else
1018 SkDebugf("I'm ignoring --outResultsFile because this is a Debug build.");
1019 return 1;
1020#endif
mtklein60317d0f2014-07-14 11:30:37 -07001021 }
mtklein1915b622014-08-20 11:45:00 -07001022
1023 if (1 == FLAGS_properties.count() % 2) {
1024 SkDebugf("ERROR: --properties must be passed with an even number of arguments.\n");
1025 return 1;
1026 }
1027 for (int i = 1; i < FLAGS_properties.count(); i += 2) {
1028 log->property(FLAGS_properties[i-1], FLAGS_properties[i]);
1029 }
jcgregoriobf5e5232014-07-17 13:14:16 -07001030
1031 if (1 == FLAGS_key.count() % 2) {
1032 SkDebugf("ERROR: --key must be passed with an even number of arguments.\n");
1033 return 1;
1034 }
1035 for (int i = 1; i < FLAGS_key.count(); i += 2) {
mtklein1915b622014-08-20 11:45:00 -07001036 log->key(FLAGS_key[i-1], FLAGS_key[i]);
mtklein94e51562014-08-19 12:41:53 -07001037 }
mtklein60317d0f2014-07-14 11:30:37 -07001038
mtkleinf3723212014-06-25 14:08:00 -07001039 const double overhead = estimate_timer_overhead();
mtklein55b0ffc2014-07-17 08:38:23 -07001040 SkDebugf("Timer overhead: %s\n", HUMANIZE(overhead));
Mike Klein91294772014-07-16 19:59:32 -04001041
cdaltone1b89582015-06-25 19:17:08 -07001042 SkTArray<double> samples;
mtkleinbb6a0282014-07-01 08:43:42 -07001043
bsalomon6eb03cc2014-08-07 14:28:50 -07001044 if (kAutoTuneLoops != FLAGS_loops) {
1045 SkDebugf("Fixed number of loops; times would only be misleading so we won't print them.\n");
mtkleinf3723212014-06-25 14:08:00 -07001046 } else if (FLAGS_quiet) {
mtklein66cfcff2015-12-04 06:35:30 -08001047 SkDebugf("! -> high variance, ? -> moderate variance\n");
1048 SkDebugf(" micros \tbench\n");
mtkleinbbba1682015-10-28 11:36:30 -07001049 } else if (FLAGS_ms) {
cdaltone1b89582015-06-25 19:17:08 -07001050 SkDebugf("curr/maxrss\tloops\tmin\tmedian\tmean\tmax\tstddev\tsamples\tconfig\tbench\n");
mtkleinf3723212014-06-25 14:08:00 -07001051 } else {
mtkleind75c4662015-04-30 07:11:22 -07001052 SkDebugf("curr/maxrss\tloops\tmin\tmedian\tmean\tmax\tstddev\t%-*s\tconfig\tbench\n",
qiankun.miao8247ec32014-09-09 19:24:36 -07001053 FLAGS_samples, "samples");
mtkleinf3723212014-06-25 14:08:00 -07001054 }
1055
svaisanenc47635e2016-01-28 06:05:43 -08001056 SkTArray<Config> configs;
bsalomonc2553372014-07-22 13:09:05 -07001057 create_configs(&configs);
1058
msarettc149f0e2016-01-04 11:35:43 -08001059 if (FLAGS_keepAlive) {
1060 start_keepalive();
1061 }
1062
mtkleine070c2b2014-10-14 08:40:43 -07001063 int runs = 0;
mtklein92007582014-08-01 07:46:52 -07001064 BenchmarkStream benchStream;
1065 while (Benchmark* b = benchStream.next()) {
mtkleine714e752014-07-31 12:13:48 -07001066 SkAutoTDelete<Benchmark> bench(b);
mtklein96289052014-09-10 12:05:59 -07001067 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, bench->getUniqueName())) {
mtkleinf3723212014-06-25 14:08:00 -07001068 continue;
1069 }
1070
svaisanenc47635e2016-01-28 06:05:43 -08001071 if (!configs.empty()) {
mtklein96289052014-09-10 12:05:59 -07001072 log->bench(bench->getUniqueName(), bench->getSize().fX, bench->getSize().fY);
joshualitt8a6697a2015-09-30 12:11:07 -07001073 bench->delayedSetup();
jcgregoriobf5e5232014-07-17 13:14:16 -07001074 }
egdaniel3bf92062015-06-26 08:12:46 -07001075 for (int i = 0; i < configs.count(); ++i) {
1076 Target* target = is_enabled(b, configs[i]);
1077 if (!target) {
1078 continue;
1079 }
mtkleinf3723212014-06-25 14:08:00 -07001080
halcanary96fcdcc2015-08-27 07:41:13 -07001081 // During HWUI output this canvas may be nullptr.
egdaniel3bf92062015-06-26 08:12:46 -07001082 SkCanvas* canvas = target->getCanvas();
svaisanenc47635e2016-01-28 06:05:43 -08001083 const char* config = target->config.name.c_str();
egdaniel3bf92062015-06-26 08:12:46 -07001084
benjaminwagner8d61f0d2016-01-25 13:02:40 -08001085 if (FLAGS_pre_log) {
1086 SkDebugf("Running %s\t%s\n"
1087 , bench->getUniqueName()
1088 , config);
1089 }
1090
egdaniel3bf92062015-06-26 08:12:46 -07001091 target->setup();
robertphillips5b693772014-11-21 06:19:36 -08001092 bench->perCanvasPreDraw(canvas);
1093
cdaltone1b89582015-06-25 19:17:08 -07001094 int maxFrameLag;
mtkleina1ebeb22015-10-01 09:43:39 -07001095 int loops = target->needsFrameTiming(&maxFrameLag)
egdaniel3bf92062015-06-26 08:12:46 -07001096 ? setup_gpu_bench(target, bench.get(), maxFrameLag)
1097 : setup_cpu_bench(overhead, target, bench.get());
cdaltone1b89582015-06-25 19:17:08 -07001098
mtkleinbbba1682015-10-28 11:36:30 -07001099 if (FLAGS_ms) {
1100 samples.reset();
1101 auto stop = now_ms() + FLAGS_ms;
1102 do {
1103 samples.push_back(time(loops, bench, target) / loops);
1104 } while (now_ms() < stop);
1105 } else {
cdaltone1b89582015-06-25 19:17:08 -07001106 samples.reset(FLAGS_samples);
1107 for (int s = 0; s < FLAGS_samples; s++) {
egdaniel3bf92062015-06-26 08:12:46 -07001108 samples[s] = time(loops, bench, target) / loops;
cdaltone1b89582015-06-25 19:17:08 -07001109 }
cdaltone1b89582015-06-25 19:17:08 -07001110 }
mtkleinf3723212014-06-25 14:08:00 -07001111
joshualitte45c81c2015-12-02 09:05:37 -08001112#if SK_SUPPORT_GPU
1113 SkTArray<SkString> keys;
1114 SkTArray<double> values;
1115 bool gpuStatsDump = FLAGS_gpuStatsDump && Benchmark::kGPU_Backend == configs[i].backend;
1116 if (gpuStatsDump) {
1117 // TODO cache stats
1118 bench->getGpuStats(canvas, &keys, &values);
1119 }
1120#endif
1121
robertphillips5b693772014-11-21 06:19:36 -08001122 bench->perCanvasPostDraw(canvas);
1123
egdaniel3bf92062015-06-26 08:12:46 -07001124 if (Benchmark::kNonRendering_Backend != target->config.backend &&
tomhudsond968a6f2015-03-26 11:28:06 -07001125 !FLAGS_writePath.isEmpty() && FLAGS_writePath[0]) {
bsalomon6eb03cc2014-08-07 14:28:50 -07001126 SkString pngFilename = SkOSPath::Join(FLAGS_writePath[0], config);
mtklein96289052014-09-10 12:05:59 -07001127 pngFilename = SkOSPath::Join(pngFilename.c_str(), bench->getUniqueName());
bsalomon6eb03cc2014-08-07 14:28:50 -07001128 pngFilename.append(".png");
egdaniel3bf92062015-06-26 08:12:46 -07001129 write_canvas_png(target, pngFilename);
bsalomon6eb03cc2014-08-07 14:28:50 -07001130 }
1131
1132 if (kFailedLoops == loops) {
mtklein2069e222014-08-04 13:57:39 -07001133 // Can't be timed. A warning note has already been printed.
egdaniel3bf92062015-06-26 08:12:46 -07001134 cleanup_run(target);
Mike Kleine3631362014-07-15 17:56:37 -04001135 continue;
1136 }
1137
cdaltone1b89582015-06-25 19:17:08 -07001138 Stats stats(samples);
mtklein1915b622014-08-20 11:45:00 -07001139 log->config(config);
mtklein96289052014-09-10 12:05:59 -07001140 log->configOption("name", bench->getName());
mtklein1915b622014-08-20 11:45:00 -07001141 benchStream.fillCurrentOptions(log.get());
egdaniel3bf92062015-06-26 08:12:46 -07001142 target->fillOptions(log.get());
mtklein051e56d2014-12-04 08:46:51 -08001143 log->metric("min_ms", stats.min);
mtkleine5cf2c62016-01-11 11:28:26 -08001144 log->metric("median_ms", stats.median);
joshualitte45c81c2015-12-02 09:05:37 -08001145#if SK_SUPPORT_GPU
1146 if (gpuStatsDump) {
1147 // dump to json, only SKPBench currently returns valid keys / values
1148 SkASSERT(keys.count() == values.count());
1149 for (int i = 0; i < keys.count(); i++) {
1150 log->metric(keys[i].c_str(), values[i]);
1151 }
1152 }
1153#endif
1154
mtkleine070c2b2014-10-14 08:40:43 -07001155 if (runs++ % FLAGS_flushEvery == 0) {
1156 log->flush();
1157 }
mtklein60317d0f2014-07-14 11:30:37 -07001158
bsalomon6eb03cc2014-08-07 14:28:50 -07001159 if (kAutoTuneLoops != FLAGS_loops) {
egdaniel3bf92062015-06-26 08:12:46 -07001160 if (configs.count() == 1) {
mtkleina189ccd2014-07-14 12:28:47 -07001161 config = ""; // Only print the config if we run the same bench on more than one.
1162 }
mtkleind75c4662015-04-30 07:11:22 -07001163 SkDebugf("%4d/%-4dMB\t%s\t%s\n"
1164 , sk_tools::getCurrResidentSetSizeMB()
1165 , sk_tools::getMaxResidentSetSizeMB()
mtklein53d25622014-09-18 07:39:42 -07001166 , bench->getUniqueName()
1167 , config);
mtkleinf3723212014-06-25 14:08:00 -07001168 } else if (FLAGS_quiet) {
mtklein66cfcff2015-12-04 06:35:30 -08001169 const char* mark = " ";
1170 const double stddev_percent = 100 * sqrt(stats.var) / stats.mean;
1171 if (stddev_percent > 5) mark = "?";
1172 if (stddev_percent > 10) mark = "!";
1173
1174 SkDebugf("%10.2f %s\t%s\t%s\n",
1175 stats.median*1e3, mark, bench->getUniqueName(), config);
mtkleinf3723212014-06-25 14:08:00 -07001176 } else {
1177 const double stddev_percent = 100 * sqrt(stats.var) / stats.mean;
mtkleind75c4662015-04-30 07:11:22 -07001178 SkDebugf("%4d/%-4dMB\t%d\t%s\t%s\t%s\t%s\t%.0f%%\t%s\t%s\t%s\n"
1179 , sk_tools::getCurrResidentSetSizeMB()
1180 , sk_tools::getMaxResidentSetSizeMB()
mtkleinf3723212014-06-25 14:08:00 -07001181 , loops
mtklein55b0ffc2014-07-17 08:38:23 -07001182 , HUMANIZE(stats.min)
1183 , HUMANIZE(stats.median)
1184 , HUMANIZE(stats.mean)
1185 , HUMANIZE(stats.max)
mtkleinf3723212014-06-25 14:08:00 -07001186 , stddev_percent
mtkleinbbba1682015-10-28 11:36:30 -07001187 , FLAGS_ms ? to_string(samples.count()).c_str() : stats.plot.c_str()
mtkleinf3723212014-06-25 14:08:00 -07001188 , config
mtklein96289052014-09-10 12:05:59 -07001189 , bench->getUniqueName()
mtkleinf3723212014-06-25 14:08:00 -07001190 );
1191 }
joshualitte45c81c2015-12-02 09:05:37 -08001192
bsalomonb12ea412015-02-02 21:19:50 -08001193#if SK_SUPPORT_GPU
joshualitte45c81c2015-12-02 09:05:37 -08001194 if (FLAGS_gpuStats && Benchmark::kGPU_Backend == configs[i].backend) {
kkinnunen5219fd92015-12-10 06:28:13 -08001195 GrContext* context = gGrFactory->get(configs[i].ctxType,
kkinnunen3e980c32015-12-23 01:33:00 -08001196 configs[i].ctxOptions);
kkinnunen5219fd92015-12-10 06:28:13 -08001197 context->printCacheStats();
1198 context->printGpuStats();
bsalomon06cddec2014-10-24 10:40:50 -07001199 }
1200#endif
joshualitte45c81c2015-12-02 09:05:37 -08001201
cdalton2c56ba52015-06-26 13:32:53 -07001202 if (FLAGS_verbose) {
1203 SkDebugf("Samples: ");
1204 for (int i = 0; i < samples.count(); i++) {
1205 SkDebugf("%s ", HUMANIZE(samples[i]));
1206 }
1207 SkDebugf("%s\n", bench->getUniqueName());
1208 }
egdaniel3bf92062015-06-26 08:12:46 -07001209 cleanup_run(target);
mtkleinf3723212014-06-25 14:08:00 -07001210 }
mtkleinf3723212014-06-25 14:08:00 -07001211 }
1212
mtkleine1091452014-12-04 10:47:02 -08001213 log->bench("memory_usage", 0,0);
1214 log->config("meta");
1215 log->metric("max_rss_mb", sk_tools::getMaxResidentSetSizeMB());
1216
joshualitte0b19d42015-03-26 10:41:02 -07001217#if SK_SUPPORT_GPU
1218 // Make sure we clean up the global GrContextFactory here, otherwise we might race with the
1219 // SkEventTracer destructor
halcanary96fcdcc2015-08-27 07:41:13 -07001220 gGrFactory.reset(nullptr);
joshualitte0b19d42015-03-26 10:41:02 -07001221#endif
1222
mtkleinf3723212014-06-25 14:08:00 -07001223 return 0;
1224}
1225
jcgregorio3b27ade2014-11-13 08:06:40 -08001226#if !defined SK_BUILD_FOR_IOS
1227int main(int argc, char** argv) {
1228 SkCommandLineFlags::Parse(argc, argv);
1229 return nanobench_main();
1230}
1231#endif