blob: 550a35f3bcc5ea741648fc58187a5966a26b3242 [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"
scroggo60869a42015-04-01 12:09:17 -070013#include "CodecBench.h"
mtkleinf3723212014-06-25 14:08:00 -070014#include "CrashHandler.h"
msarett95f192d2015-02-13 09:05:41 -080015#include "DecodingBench.h"
mtkleine714e752014-07-31 12:13:48 -070016#include "GMBench.h"
mtkleinafb43792014-08-19 15:55:55 -070017#include "ProcStats.h"
mtklein60317d0f2014-07-14 11:30:37 -070018#include "ResultsWriter.h"
mtkleinfd731ce2014-09-10 12:19:30 -070019#include "RecordingBench.h"
joshualitt261c3ad2015-04-27 09:16:57 -070020#include "SKPAnimationBench.h"
mtklein92007582014-08-01 07:46:52 -070021#include "SKPBench.h"
msarettb23e6aa2015-06-09 13:56:10 -070022#include "SubsetBenchPriv.h"
msarettb23e6aa2015-06-09 13:56:10 -070023#include "SubsetSingleBench.h"
24#include "SubsetTranslateBench.h"
25#include "SubsetZoomBench.h"
mtkleinf3723212014-06-25 14:08:00 -070026#include "Stats.h"
27#include "Timer.h"
28
mtklein6838d852014-10-29 14:15:10 -070029#include "SkBBoxHierarchy.h"
mtkleinf3723212014-06-25 14:08:00 -070030#include "SkCanvas.h"
scroggo60869a42015-04-01 12:09:17 -070031#include "SkCodec.h"
caryclark17f0b6d2014-07-22 10:15:34 -070032#include "SkCommonFlags.h"
msarett95f192d2015-02-13 09:05:41 -080033#include "SkData.h"
mtkleinf3723212014-06-25 14:08:00 -070034#include "SkForceLinking.h"
35#include "SkGraphics.h"
mtklein20840502014-08-21 15:51:22 -070036#include "SkOSFile.h"
37#include "SkPictureRecorder.h"
mtklein051e56d2014-12-04 08:46:51 -080038#include "SkPictureUtils.h"
scroggo9b2cdbf42015-07-10 12:07:02 -070039#include "SkScanlineDecoder.h"
mtkleinf3723212014-06-25 14:08:00 -070040#include "SkString.h"
41#include "SkSurface.h"
robertphillips5b693772014-11-21 06:19:36 -080042#include "SkTaskGroup.h"
mtkleinf3723212014-06-25 14:08:00 -070043
bungeman60e0fee2015-08-26 05:15:46 -070044#include <stdlib.h>
45
tomhudsond968a6f2015-03-26 11:28:06 -070046#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
47 #include "nanobenchAndroid.h"
48#endif
49
mtkleinbb6a0282014-07-01 08:43:42 -070050#if SK_SUPPORT_GPU
jcgregoriobf5e5232014-07-17 13:14:16 -070051 #include "gl/GrGLDefines.h"
bsalomon76228632015-05-29 08:02:10 -070052 #include "GrCaps.h"
mtkleinbb6a0282014-07-01 08:43:42 -070053 #include "GrContextFactory.h"
krajcevski69a55602014-08-13 10:46:31 -070054 SkAutoTDelete<GrContextFactory> gGrFactory;
mtkleinbb6a0282014-07-01 08:43:42 -070055#endif
56
bsalomon682c2692015-05-22 14:01:46 -070057 struct GrContextOptions;
58
mtkleinf3723212014-06-25 14:08:00 -070059__SK_FORCE_IMAGE_DECODER_LINKING;
60
cdaltone1b89582015-06-25 19:17:08 -070061static const int kTimedSampling = 0;
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.");
cdaltone1b89582015-06-25 19:17:08 -070089DEFINE_string(samplingTime, "0", "Amount of time to run each bench. Takes precedence over samples."
90 "Must be \"0\", \"%%lfs\", or \"%%lfms\"");
mtkleinf3723212014-06-25 14:08:00 -070091DEFINE_int32(overheadLoops, 100000, "Loops to estimate timer overhead.");
92DEFINE_double(overheadGoal, 0.0001,
93 "Loop until timer overhead is at most this fraction of our measurments.");
mtkleinbb6a0282014-07-01 08:43:42 -070094DEFINE_double(gpuMs, 5, "Target bench time in millseconds for GPU.");
cdaltond416a5b2015-06-23 13:23:44 -070095DEFINE_int32(gpuFrameLag, 5, "If unknown, estimated maximum number of frames GPU allows to lag.");
krajcevski12b35442014-08-13 12:06:26 -070096DEFINE_bool(gpuCompressAlphaMasks, false, "Compress masks generated from falling back to "
97 "software path rendering.");
mtkleinf3723212014-06-25 14:08:00 -070098
mtklein60317d0f2014-07-14 11:30:37 -070099DEFINE_string(outResultsFile, "", "If given, write results here as JSON.");
mtklein55b0ffc2014-07-17 08:38:23 -0700100DEFINE_int32(maxCalibrationAttempts, 3,
101 "Try up to this many times to guess loops for a bench, or skip the bench.");
102DEFINE_int32(maxLoops, 1000000, "Never run a bench more times than this.");
mtklein92007582014-08-01 07:46:52 -0700103DEFINE_string(clip, "0,0,1000,1000", "Clip for SKPs.");
104DEFINE_string(scales, "1.0", "Space-separated scales for SKPs.");
cdalton63a82852015-06-29 14:06:10 -0700105DEFINE_string(zoom, "1.0,0", "Comma-separated zoomMax,zoomPeriodMs factors for a periodic SKP zoom "
106 "function that ping-pongs between 1.0 and zoomMax.");
mtklein20840502014-08-21 15:51:22 -0700107DEFINE_bool(bbh, true, "Build a BBH for SKPs?");
robertphillips5b693772014-11-21 06:19:36 -0800108DEFINE_bool(mpd, true, "Use MultiPictureDraw for the SKPs?");
cdaltonb4022962015-06-25 10:51:56 -0700109DEFINE_bool(loopSKP, true, "Loop SKPs like we do for micro benches?");
mtkleine070c2b2014-10-14 08:40:43 -0700110DEFINE_int32(flushEvery, 10, "Flush --outResultsFile every Nth run.");
mtklein55e88b22015-01-21 15:50:13 -0800111DEFINE_bool(resetGpuContext, true, "Reset the GrContext before running each test.");
bsalomonb12ea412015-02-02 21:19:50 -0800112DEFINE_bool(gpuStats, false, "Print GPU stats after each gpu benchmark?");
mtklein92007582014-08-01 07:46:52 -0700113
mtkleinf3723212014-06-25 14:08:00 -0700114static SkString humanize(double ms) {
mtkleindc5bbab2014-09-24 06:34:09 -0700115 if (FLAGS_verbose) return SkStringPrintf("%llu", (uint64_t)(ms*1e6));
mtklein748ca3b2015-01-15 10:56:12 -0800116 return HumanizeMs(ms);
mtkleinf3723212014-06-25 14:08:00 -0700117}
mtklein55b0ffc2014-07-17 08:38:23 -0700118#define HUMANIZE(ms) humanize(ms).c_str()
mtkleinf3723212014-06-25 14:08:00 -0700119
tomhudsond968a6f2015-03-26 11:28:06 -0700120bool Target::init(SkImageInfo info, Benchmark* bench) {
121 if (Benchmark::kRaster_Backend == config.backend) {
122 this->surface.reset(SkSurface::NewRaster(info));
123 if (!this->surface.get()) {
124 return false;
125 }
126 }
127 return true;
128}
129bool Target::capturePixels(SkBitmap* bmp) {
tomhudson75a0ebb2015-03-27 12:11:44 -0700130 SkCanvas* canvas = this->getCanvas();
tomhudsond968a6f2015-03-26 11:28:06 -0700131 if (!canvas) {
132 return false;
133 }
134 bmp->setInfo(canvas->imageInfo());
135 if (!canvas->readPixels(bmp, 0, 0)) {
136 SkDebugf("Can't read canvas pixels.\n");
137 return false;
138 }
139 return true;
140}
141
142#if SK_SUPPORT_GPU
143struct GPUTarget : public Target {
144 explicit GPUTarget(const Config& c) : Target(c), gl(NULL) { }
145 SkGLContext* gl;
146
147 void setup() override {
148 this->gl->makeCurrent();
149 // Make sure we're done with whatever came before.
150 SK_GL(*this->gl, Finish());
151 }
152 void endTiming() override {
153 if (this->gl) {
154 SK_GL(*this->gl, Flush());
155 this->gl->swapBuffers();
156 }
157 }
158 void fence() override {
159 SK_GL(*this->gl, Finish());
160 }
mtkleind75c4662015-04-30 07:11:22 -0700161
cdaltond416a5b2015-06-23 13:23:44 -0700162 bool needsFrameTiming(int* maxFrameLag) const override {
163 if (!this->gl->getMaxGpuFrameLag(maxFrameLag)) {
164 // Frame lag is unknown.
165 *maxFrameLag = FLAGS_gpuFrameLag;
166 }
167 return true;
168 }
tomhudsond968a6f2015-03-26 11:28:06 -0700169 bool init(SkImageInfo info, Benchmark* bench) override {
170 uint32_t flags = this->config.useDFText ? SkSurfaceProps::kUseDistanceFieldFonts_Flag : 0;
171 SkSurfaceProps props(flags, SkSurfaceProps::kLegacyFontHost_InitType);
172 this->surface.reset(SkSurface::NewRenderTarget(gGrFactory->get(this->config.ctxType),
173 SkSurface::kNo_Budgeted, info,
174 this->config.samples, &props));
175 this->gl = gGrFactory->getGLContext(this->config.ctxType);
176 if (!this->surface.get()) {
177 return false;
178 }
cdaltond416a5b2015-06-23 13:23:44 -0700179 if (!this->gl->fenceSyncSupport()) {
180 SkDebugf("WARNING: GL context for config \"%s\" does not support fence sync. "
181 "Timings might not be accurate.\n", this->config.name);
182 }
tomhudsond968a6f2015-03-26 11:28:06 -0700183 return true;
184 }
185 void fillOptions(ResultsWriter* log) override {
186 const GrGLubyte* version;
187 SK_GL_RET(*this->gl, version, GetString(GR_GL_VERSION));
188 log->configOption("GL_VERSION", (const char*)(version));
189
190 SK_GL_RET(*this->gl, version, GetString(GR_GL_RENDERER));
191 log->configOption("GL_RENDERER", (const char*) version);
192
193 SK_GL_RET(*this->gl, version, GetString(GR_GL_VENDOR));
194 log->configOption("GL_VENDOR", (const char*) version);
195
196 SK_GL_RET(*this->gl, version, GetString(GR_GL_SHADING_LANGUAGE_VERSION));
197 log->configOption("GL_SHADING_LANGUAGE_VERSION", (const char*) version);
198 }
199};
mtkleind75c4662015-04-30 07:11:22 -0700200
tomhudsond968a6f2015-03-26 11:28:06 -0700201#endif
202
tomhudson75a0ebb2015-03-27 12:11:44 -0700203static double time(int loops, Benchmark* bench, Target* target) {
204 SkCanvas* canvas = target->getCanvas();
bsalomon6eb03cc2014-08-07 14:28:50 -0700205 if (canvas) {
206 canvas->clear(SK_ColorWHITE);
207 }
mtkleinbb6a0282014-07-01 08:43:42 -0700208 WallTimer timer;
209 timer.start();
tomhudson75a0ebb2015-03-27 12:11:44 -0700210 canvas = target->beginTiming(canvas);
211 bench->draw(loops, canvas);
mtkleinbb6a0282014-07-01 08:43:42 -0700212 if (canvas) {
213 canvas->flush();
214 }
tomhudson75a0ebb2015-03-27 12:11:44 -0700215 target->endTiming();
mtkleinbb6a0282014-07-01 08:43:42 -0700216 timer.end();
217 return timer.fWall;
218}
219
mtkleinf3723212014-06-25 14:08:00 -0700220static double estimate_timer_overhead() {
221 double overhead = 0;
mtkleinf3723212014-06-25 14:08:00 -0700222 for (int i = 0; i < FLAGS_overheadLoops; i++) {
tomhudson75a0ebb2015-03-27 12:11:44 -0700223 WallTimer timer;
224 timer.start();
225 timer.end();
226 overhead += timer.fWall;
mtkleinf3723212014-06-25 14:08:00 -0700227 }
228 return overhead / FLAGS_overheadLoops;
229}
230
reed53249782014-10-10 09:09:52 -0700231static int detect_forever_loops(int loops) {
232 // look for a magic run-forever value
233 if (loops < 0) {
234 loops = SK_MaxS32;
235 }
236 return loops;
237}
238
mtklein55b0ffc2014-07-17 08:38:23 -0700239static int clamp_loops(int loops) {
240 if (loops < 1) {
mtklein527930f2014-11-06 08:04:34 -0800241 SkDebugf("ERROR: clamping loops from %d to 1. "
242 "There's probably something wrong with the bench.\n", loops);
mtklein55b0ffc2014-07-17 08:38:23 -0700243 return 1;
244 }
245 if (loops > FLAGS_maxLoops) {
246 SkDebugf("WARNING: clamping loops from %d to FLAGS_maxLoops, %d.\n", loops, FLAGS_maxLoops);
247 return FLAGS_maxLoops;
248 }
249 return loops;
250}
251
tomhudsond968a6f2015-03-26 11:28:06 -0700252static bool write_canvas_png(Target* target, const SkString& filename) {
253
bsalomon6eb03cc2014-08-07 14:28:50 -0700254 if (filename.isEmpty()) {
255 return false;
256 }
tomhudson75a0ebb2015-03-27 12:11:44 -0700257 if (target->getCanvas() &&
258 kUnknown_SkColorType == target->getCanvas()->imageInfo().colorType()) {
bsalomon6eb03cc2014-08-07 14:28:50 -0700259 return false;
260 }
tomhudsond968a6f2015-03-26 11:28:06 -0700261
bsalomon6eb03cc2014-08-07 14:28:50 -0700262 SkBitmap bmp;
tomhudsond968a6f2015-03-26 11:28:06 -0700263
264 if (!target->capturePixels(&bmp)) {
bsalomon6eb03cc2014-08-07 14:28:50 -0700265 return false;
266 }
tomhudsond968a6f2015-03-26 11:28:06 -0700267
bsalomon6eb03cc2014-08-07 14:28:50 -0700268 SkString dir = SkOSPath::Dirname(filename.c_str());
269 if (!sk_mkdir(dir.c_str())) {
270 SkDebugf("Can't make dir %s.\n", dir.c_str());
271 return false;
272 }
273 SkFILEWStream stream(filename.c_str());
274 if (!stream.isValid()) {
275 SkDebugf("Can't write %s.\n", filename.c_str());
276 return false;
277 }
278 if (!SkImageEncoder::EncodeStream(&stream, bmp, SkImageEncoder::kPNG_Type, 100)) {
279 SkDebugf("Can't encode a PNG.\n");
280 return false;
281 }
282 return true;
283}
284
285static int kFailedLoops = -2;
cdaltone1b89582015-06-25 19:17:08 -0700286static int setup_cpu_bench(const double overhead, Target* target, Benchmark* bench) {
mtkleinbb6a0282014-07-01 08:43:42 -0700287 // First figure out approximately how many loops of bench it takes to make overhead negligible.
mtklein2069e222014-08-04 13:57:39 -0700288 double bench_plus_overhead = 0.0;
mtklein55b0ffc2014-07-17 08:38:23 -0700289 int round = 0;
cdaltonb4022962015-06-25 10:51:56 -0700290 int loops = bench->calculateLoops(FLAGS_loops);
291 if (kAutoTuneLoops == loops) {
bsalomon6eb03cc2014-08-07 14:28:50 -0700292 while (bench_plus_overhead < overhead) {
293 if (round++ == FLAGS_maxCalibrationAttempts) {
294 SkDebugf("WARNING: Can't estimate loops for %s (%s vs. %s); skipping.\n",
mtklein96289052014-09-10 12:05:59 -0700295 bench->getUniqueName(), HUMANIZE(bench_plus_overhead), HUMANIZE(overhead));
bsalomon6eb03cc2014-08-07 14:28:50 -0700296 return kFailedLoops;
297 }
tomhudson75a0ebb2015-03-27 12:11:44 -0700298 bench_plus_overhead = time(1, bench, target);
mtklein55b0ffc2014-07-17 08:38:23 -0700299 }
mtklein2069e222014-08-04 13:57:39 -0700300 }
mtkleinf3723212014-06-25 14:08:00 -0700301
mtkleinbb6a0282014-07-01 08:43:42 -0700302 // Later we'll just start and stop the timer once but loop N times.
mtkleinf3723212014-06-25 14:08:00 -0700303 // We'll pick N to make timer overhead negligible:
304 //
mtkleinbb6a0282014-07-01 08:43:42 -0700305 // overhead
306 // ------------------------- < FLAGS_overheadGoal
307 // overhead + N * Bench Time
mtkleinf3723212014-06-25 14:08:00 -0700308 //
mtkleinbb6a0282014-07-01 08:43:42 -0700309 // where bench_plus_overhead ≈ overhead + Bench Time.
mtkleinf3723212014-06-25 14:08:00 -0700310 //
311 // Doing some math, we get:
312 //
mtkleinbb6a0282014-07-01 08:43:42 -0700313 // (overhead / FLAGS_overheadGoal) - overhead
314 // ------------------------------------------ < N
315 // bench_plus_overhead - overhead)
mtkleinf3723212014-06-25 14:08:00 -0700316 //
317 // Luckily, this also works well in practice. :)
bsalomon6eb03cc2014-08-07 14:28:50 -0700318 if (kAutoTuneLoops == loops) {
319 const double numer = overhead / FLAGS_overheadGoal - overhead;
320 const double denom = bench_plus_overhead - overhead;
321 loops = (int)ceil(numer / denom);
reed53249782014-10-10 09:09:52 -0700322 loops = clamp_loops(loops);
323 } else {
324 loops = detect_forever_loops(loops);
bsalomon6eb03cc2014-08-07 14:28:50 -0700325 }
mtkleinbb6a0282014-07-01 08:43:42 -0700326
mtkleinbb6a0282014-07-01 08:43:42 -0700327 return loops;
mtkleinf3723212014-06-25 14:08:00 -0700328}
329
cdaltone1b89582015-06-25 19:17:08 -0700330static int setup_gpu_bench(Target* target, Benchmark* bench, int maxGpuFrameLag) {
mtkleinbb6a0282014-07-01 08:43:42 -0700331 // First, figure out how many loops it'll take to get a frame up to FLAGS_gpuMs.
cdaltonb4022962015-06-25 10:51:56 -0700332 int loops = bench->calculateLoops(FLAGS_loops);
bsalomon6eb03cc2014-08-07 14:28:50 -0700333 if (kAutoTuneLoops == loops) {
334 loops = 1;
mtkleina189ccd2014-07-14 12:28:47 -0700335 double elapsed = 0;
336 do {
mtklein527930f2014-11-06 08:04:34 -0800337 if (1<<30 == loops) {
338 // We're about to wrap. Something's wrong with the bench.
339 loops = 0;
340 break;
341 }
mtkleina189ccd2014-07-14 12:28:47 -0700342 loops *= 2;
343 // If the GPU lets frames lag at all, we need to make sure we're timing
cdaltond416a5b2015-06-23 13:23:44 -0700344 // _this_ round, not still timing last round.
345 for (int i = 0; i < maxGpuFrameLag; i++) {
tomhudson75a0ebb2015-03-27 12:11:44 -0700346 elapsed = time(loops, bench, target);
mtkleina189ccd2014-07-14 12:28:47 -0700347 }
348 } while (elapsed < FLAGS_gpuMs);
mtkleinbb6a0282014-07-01 08:43:42 -0700349
mtkleina189ccd2014-07-14 12:28:47 -0700350 // We've overshot at least a little. Scale back linearly.
351 loops = (int)ceil(loops * FLAGS_gpuMs / elapsed);
reed53249782014-10-10 09:09:52 -0700352 loops = clamp_loops(loops);
mtkleinbb6a0282014-07-01 08:43:42 -0700353
tomhudsond968a6f2015-03-26 11:28:06 -0700354 // Make sure we're not still timing our calibration.
355 target->fence();
reed53249782014-10-10 09:09:52 -0700356 } else {
357 loops = detect_forever_loops(loops);
mtkleina189ccd2014-07-14 12:28:47 -0700358 }
mtkleinbb6a0282014-07-01 08:43:42 -0700359
360 // Pretty much the same deal as the calibration: do some warmup to make
361 // sure we're timing steady-state pipelined frames.
cdaltond416a5b2015-06-23 13:23:44 -0700362 for (int i = 0; i < maxGpuFrameLag - 1; i++) {
tomhudson75a0ebb2015-03-27 12:11:44 -0700363 time(loops, bench, target);
mtkleinf3723212014-06-25 14:08:00 -0700364 }
mtkleinbb6a0282014-07-01 08:43:42 -0700365
mtkleinbb6a0282014-07-01 08:43:42 -0700366 return loops;
367}
mtkleinbb6a0282014-07-01 08:43:42 -0700368
369static SkString to_lower(const char* str) {
370 SkString lower(str);
371 for (size_t i = 0; i < lower.size(); i++) {
372 lower[i] = tolower(lower[i]);
373 }
374 return lower;
mtkleinf3723212014-06-25 14:08:00 -0700375}
376
bsalomonc2553372014-07-22 13:09:05 -0700377static bool is_cpu_config_allowed(const char* name) {
mtkleinbb6a0282014-07-01 08:43:42 -0700378 for (int i = 0; i < FLAGS_config.count(); i++) {
bsalomonc2553372014-07-22 13:09:05 -0700379 if (to_lower(FLAGS_config[i]).equals(name)) {
380 return true;
mtkleinf3723212014-06-25 14:08:00 -0700381 }
382 }
bsalomonc2553372014-07-22 13:09:05 -0700383 return false;
mtkleinbb6a0282014-07-01 08:43:42 -0700384}
385
bsalomonc2553372014-07-22 13:09:05 -0700386#if SK_SUPPORT_GPU
387static bool is_gpu_config_allowed(const char* name, GrContextFactory::GLContextType ctxType,
388 int sampleCnt) {
389 if (!is_cpu_config_allowed(name)) {
390 return false;
391 }
krajcevski69a55602014-08-13 10:46:31 -0700392 if (const GrContext* ctx = gGrFactory->get(ctxType)) {
bsalomon76228632015-05-29 08:02:10 -0700393 return sampleCnt <= ctx->caps()->maxSampleCount();
bsalomonc2553372014-07-22 13:09:05 -0700394 }
395 return false;
396}
397#endif
mtkleinbb6a0282014-07-01 08:43:42 -0700398
bsalomonc2553372014-07-22 13:09:05 -0700399#if SK_SUPPORT_GPU
400#define kBogusGLContextType GrContextFactory::kNative_GLContextType
401#else
402#define kBogusGLContextType 0
mtkleine714e752014-07-31 12:13:48 -0700403#endif
bsalomonc2553372014-07-22 13:09:05 -0700404
405// Append all configs that are enabled and supported.
406static void create_configs(SkTDArray<Config>* configs) {
jvanverth4736e142014-11-07 07:12:46 -0800407 #define CPU_CONFIG(name, backend, color, alpha) \
408 if (is_cpu_config_allowed(#name)) { \
409 Config config = { #name, Benchmark::backend, color, alpha, 0, \
410 kBogusGLContextType, false }; \
411 configs->push(config); \
mtkleinbb6a0282014-07-01 08:43:42 -0700412 }
mtkleine714e752014-07-31 12:13:48 -0700413
mtklein40b32be2014-07-09 08:46:49 -0700414 if (FLAGS_cpu) {
bsalomonc2553372014-07-22 13:09:05 -0700415 CPU_CONFIG(nonrendering, kNonRendering_Backend, kUnknown_SkColorType, kUnpremul_SkAlphaType)
416 CPU_CONFIG(8888, kRaster_Backend, kN32_SkColorType, kPremul_SkAlphaType)
417 CPU_CONFIG(565, kRaster_Backend, kRGB_565_SkColorType, kOpaque_SkAlphaType)
mtklein40b32be2014-07-09 08:46:49 -0700418 }
mtkleinbb6a0282014-07-01 08:43:42 -0700419
420#if SK_SUPPORT_GPU
jvanverth4736e142014-11-07 07:12:46 -0800421 #define GPU_CONFIG(name, ctxType, samples, useDFText) \
bsalomonc2553372014-07-22 13:09:05 -0700422 if (is_gpu_config_allowed(#name, GrContextFactory::ctxType, samples)) { \
423 Config config = { \
424 #name, \
425 Benchmark::kGPU_Backend, \
426 kN32_SkColorType, \
427 kPremul_SkAlphaType, \
428 samples, \
jvanverth4736e142014-11-07 07:12:46 -0800429 GrContextFactory::ctxType, \
430 useDFText }; \
bsalomonc2553372014-07-22 13:09:05 -0700431 configs->push(config); \
mtkleinbb6a0282014-07-01 08:43:42 -0700432 }
mtkleine714e752014-07-31 12:13:48 -0700433
mtklein40b32be2014-07-09 08:46:49 -0700434 if (FLAGS_gpu) {
jvanverth4736e142014-11-07 07:12:46 -0800435 GPU_CONFIG(gpu, kNative_GLContextType, 0, false)
436 GPU_CONFIG(msaa4, kNative_GLContextType, 4, false)
437 GPU_CONFIG(msaa16, kNative_GLContextType, 16, false)
438 GPU_CONFIG(nvprmsaa4, kNVPR_GLContextType, 4, false)
439 GPU_CONFIG(nvprmsaa16, kNVPR_GLContextType, 16, false)
440 GPU_CONFIG(gpudft, kNative_GLContextType, 0, true)
441 GPU_CONFIG(debug, kDebug_GLContextType, 0, false)
442 GPU_CONFIG(nullgpu, kNull_GLContextType, 0, false)
bsalomon3b4d0772014-08-06 10:52:33 -0700443#ifdef SK_ANGLE
jvanverth4736e142014-11-07 07:12:46 -0800444 GPU_CONFIG(angle, kANGLE_GLContextType, 0, false)
bsalomon3b4d0772014-08-06 10:52:33 -0700445#endif
cdaltond416a5b2015-06-23 13:23:44 -0700446#if SK_MESA
447 GPU_CONFIG(mesa, kMESA_GLContextType, 0, false)
448#endif
mtklein40b32be2014-07-09 08:46:49 -0700449 }
mtkleinbb6a0282014-07-01 08:43:42 -0700450#endif
tomhudsond968a6f2015-03-26 11:28:06 -0700451
452#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
453 if (is_cpu_config_allowed("hwui")) {
454 Config config = { "hwui", Benchmark::kHWUI_Backend, kRGBA_8888_SkColorType,
455 kPremul_SkAlphaType, 0, kBogusGLContextType, false };
456 configs->push(config);
457 }
458#endif
mtkleinf3723212014-06-25 14:08:00 -0700459}
460
bsalomonc2553372014-07-22 13:09:05 -0700461// If bench is enabled for config, returns a Target* for it, otherwise NULL.
462static Target* is_enabled(Benchmark* bench, const Config& config) {
463 if (!bench->isSuitableFor(config.backend)) {
464 return NULL;
465 }
466
reede5ea5002014-09-03 11:54:58 -0700467 SkImageInfo info = SkImageInfo::Make(bench->getSize().fX, bench->getSize().fY,
468 config.color, config.alpha);
bsalomonc2553372014-07-22 13:09:05 -0700469
tomhudsond968a6f2015-03-26 11:28:06 -0700470 Target* target = NULL;
bsalomonc2553372014-07-22 13:09:05 -0700471
tomhudsond968a6f2015-03-26 11:28:06 -0700472 switch (config.backend) {
bsalomonc2553372014-07-22 13:09:05 -0700473#if SK_SUPPORT_GPU
tomhudsond968a6f2015-03-26 11:28:06 -0700474 case Benchmark::kGPU_Backend:
475 target = new GPUTarget(config);
476 break;
bsalomonc2553372014-07-22 13:09:05 -0700477#endif
tomhudsond968a6f2015-03-26 11:28:06 -0700478#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
479 case Benchmark::kHWUI_Backend:
480 target = new HWUITarget(config, bench);
481 break;
482#endif
483 default:
484 target = new Target(config);
485 break;
486 }
bsalomonc2553372014-07-22 13:09:05 -0700487
tomhudsond968a6f2015-03-26 11:28:06 -0700488 if (!target->init(info, bench)) {
bsalomonc2553372014-07-22 13:09:05 -0700489 delete target;
490 return NULL;
491 }
492 return target;
493}
494
msarettb23e6aa2015-06-09 13:56:10 -0700495/*
496 * Returns true if set up for a subset decode succeeds, false otherwise
497 * If the set-up succeeds, the width and height parameters will be set
498 */
499static bool valid_subset_bench(const SkString& path, SkColorType colorType, bool useCodec,
500 int* width, int* height) {
501 SkAutoTUnref<SkData> encoded(SkData::NewFromFileName(path.c_str()));
502 SkAutoTDelete<SkMemoryStream> stream(new SkMemoryStream(encoded));
503
msarettab80e352015-06-17 10:28:22 -0700504 // Check that we can create a codec or image decoder.
msarettb23e6aa2015-06-09 13:56:10 -0700505 if (useCodec) {
506 SkAutoTDelete<SkCodec> codec(SkCodec::NewFromStream(stream.detach()));
507 if (NULL == codec) {
508 SkDebugf("Could not create codec for %s. Skipping bench.\n", path.c_str());
509 return false;
510 }
511
512 // These will be initialized by SkCodec if the color type is kIndex8 and
513 // unused otherwise.
514 SkPMColor colors[256];
515 int colorCount;
516 const SkImageInfo info = codec->getInfo().makeColorType(colorType);
517 SkAutoTDeleteArray<uint8_t> row(SkNEW_ARRAY(uint8_t, info.minRowBytes()));
scroggo1c005e42015-08-04 09:24:45 -0700518 SkAutoTDelete<SkScanlineDecoder> scanlineDecoder(SkScanlineDecoder::NewFromData(encoded));
519 if (NULL == scanlineDecoder || scanlineDecoder->start(info, NULL,
520 colors, &colorCount) != SkCodec::kSuccess)
521 {
msarettb23e6aa2015-06-09 13:56:10 -0700522 SkDebugf("Could not create scanline decoder for %s with color type %s. "
523 "Skipping bench.\n", path.c_str(), get_color_name(colorType));
524 return false;
525 }
526 *width = info.width();
527 *height = info.height();
528 } else {
529 SkAutoTDelete<SkImageDecoder> decoder(SkImageDecoder::Factory(stream));
530 if (NULL == decoder) {
531 SkDebugf("Could not create decoder for %s. Skipping bench.\n", path.c_str());
532 return false;
533 }
534 //FIXME: See skbug.com/3921
535 if (kIndex_8_SkColorType == colorType || kGray_8_SkColorType == colorType) {
536 SkDebugf("Cannot use image subset decoder for %s with color type %s. "
537 "Skipping bench.\n", path.c_str(), get_color_name(colorType));
538 return false;
539 }
540 if (!decoder->buildTileIndex(stream.detach(), width, height)) {
541 SkDebugf("Could not build tile index for %s. Skipping bench.\n", path.c_str());
542 return false;
543 }
544 }
msarettab80e352015-06-17 10:28:22 -0700545
546 // Check if the image is large enough for a meaningful subset benchmark.
547 if (*width <= 512 && *height <= 512) {
548 // This should not print a message since it is not an error.
549 return false;
550 }
551
msarettb23e6aa2015-06-09 13:56:10 -0700552 return true;
553}
jcgregoriobf5e5232014-07-17 13:14:16 -0700554
egdaniel3bf92062015-06-26 08:12:46 -0700555static void cleanup_run(Target* target) {
556 SkDELETE(target);
557#if SK_SUPPORT_GPU
558 if (FLAGS_abandonGpuContext) {
559 gGrFactory->abandonContexts();
560 }
561 if (FLAGS_resetGpuContext || FLAGS_abandonGpuContext) {
562 gGrFactory->destroyContexts();
563 }
564#endif
565}
566
mtkleine714e752014-07-31 12:13:48 -0700567class BenchmarkStream {
568public:
mtklein92007582014-08-01 07:46:52 -0700569 BenchmarkStream() : fBenches(BenchRegistry::Head())
570 , fGMs(skiagm::GMRegistry::Head())
mtkleinfd731ce2014-09-10 12:19:30 -0700571 , fCurrentRecording(0)
mtklein92007582014-08-01 07:46:52 -0700572 , fCurrentScale(0)
robertphillips5b693772014-11-21 06:19:36 -0800573 , fCurrentSKP(0)
msarett95f192d2015-02-13 09:05:41 -0800574 , fCurrentUseMPD(0)
scroggo60869a42015-04-01 12:09:17 -0700575 , fCurrentCodec(0)
msarett95f192d2015-02-13 09:05:41 -0800576 , fCurrentImage(0)
577 , fCurrentSubsetImage(0)
578 , fCurrentColorType(0)
msarettb23e6aa2015-06-09 13:56:10 -0700579 , fCurrentSubsetType(0)
580 , fUseCodec(0)
581 , fCurrentAnimSKP(0) {
mtklein92007582014-08-01 07:46:52 -0700582 for (int i = 0; i < FLAGS_skps.count(); i++) {
583 if (SkStrEndsWith(FLAGS_skps[i], ".skp")) {
584 fSKPs.push_back() = FLAGS_skps[i];
585 } else {
586 SkOSFile::Iter it(FLAGS_skps[i], ".skp");
587 SkString path;
588 while (it.next(&path)) {
589 fSKPs.push_back() = SkOSPath::Join(FLAGS_skps[0], path.c_str());
590 }
591 }
592 }
mtkleine714e752014-07-31 12:13:48 -0700593
mtklein92007582014-08-01 07:46:52 -0700594 if (4 != sscanf(FLAGS_clip[0], "%d,%d,%d,%d",
595 &fClip.fLeft, &fClip.fTop, &fClip.fRight, &fClip.fBottom)) {
596 SkDebugf("Can't parse %s from --clip as an SkIRect.\n", FLAGS_clip[0]);
597 exit(1);
598 }
599
600 for (int i = 0; i < FLAGS_scales.count(); i++) {
601 if (1 != sscanf(FLAGS_scales[i], "%f", &fScales.push_back())) {
602 SkDebugf("Can't parse %s from --scales as an SkScalar.\n", FLAGS_scales[i]);
603 exit(1);
604 }
605 }
robertphillips5b693772014-11-21 06:19:36 -0800606
cdalton63a82852015-06-29 14:06:10 -0700607 if (2 != sscanf(FLAGS_zoom[0], "%f,%lf", &fZoomMax, &fZoomPeriodMs)) {
608 SkDebugf("Can't parse %s from --zoom as a zoomMax,zoomPeriodMs.\n", FLAGS_zoom[0]);
joshualitt261c3ad2015-04-27 09:16:57 -0700609 exit(1);
610 }
611
robertphillips5b693772014-11-21 06:19:36 -0800612 if (FLAGS_mpd) {
613 fUseMPDs.push_back() = true;
614 }
mtkleinc751ecb2015-06-15 08:56:38 -0700615 fUseMPDs.push_back() = false;
mtklein95553d92015-03-12 08:24:21 -0700616
msarett95f192d2015-02-13 09:05:41 -0800617 // Prepare the images for decoding
618 for (int i = 0; i < FLAGS_images.count(); i++) {
619 const char* flag = FLAGS_images[i];
620 if (sk_isdir(flag)) {
621 // If the value passed in is a directory, add all the images
622 SkOSFile::Iter it(flag);
623 SkString file;
624 while (it.next(&file)) {
625 fImages.push_back() = SkOSPath::Join(flag, file.c_str());
626 }
627 } else if (sk_exists(flag)) {
628 // Also add the value if it is a single image
629 fImages.push_back() = flag;
630 }
631 }
mtklein95553d92015-03-12 08:24:21 -0700632
msarett95f192d2015-02-13 09:05:41 -0800633 // Choose the candidate color types for image decoding
634 const SkColorType colorTypes[] =
msarettb23e6aa2015-06-09 13:56:10 -0700635 { kN32_SkColorType,
636 kRGB_565_SkColorType,
637 kAlpha_8_SkColorType,
638 kIndex_8_SkColorType,
639 kGray_8_SkColorType };
msarett95f192d2015-02-13 09:05:41 -0800640 fColorTypes.push_back_n(SK_ARRAY_COUNT(colorTypes), colorTypes);
mtklein92007582014-08-01 07:46:52 -0700641 }
642
mtkleinfd731ce2014-09-10 12:19:30 -0700643 static bool ReadPicture(const char* path, SkAutoTUnref<SkPicture>* pic) {
644 // Not strictly necessary, as it will be checked again later,
645 // but helps to avoid a lot of pointless work if we're going to skip it.
646 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, path)) {
647 return false;
648 }
649
scroggoa1193e42015-01-21 12:09:53 -0800650 SkAutoTDelete<SkStream> stream(SkStream::NewFromFile(path));
mtkleinfd731ce2014-09-10 12:19:30 -0700651 if (stream.get() == NULL) {
652 SkDebugf("Could not read %s.\n", path);
653 return false;
654 }
655
mtklein57f27bd2015-02-09 11:58:41 -0800656 pic->reset(SkPicture::CreateFromStream(stream.get()));
mtkleinfd731ce2014-09-10 12:19:30 -0700657 if (pic->get() == NULL) {
658 SkDebugf("Could not read %s as an SkPicture.\n", path);
659 return false;
660 }
661 return true;
662 }
663
mtklein92007582014-08-01 07:46:52 -0700664 Benchmark* next() {
mtkleine714e752014-07-31 12:13:48 -0700665 if (fBenches) {
666 Benchmark* bench = fBenches->factory()(NULL);
667 fBenches = fBenches->next();
mtklein92007582014-08-01 07:46:52 -0700668 fSourceType = "bench";
mtkleinfd731ce2014-09-10 12:19:30 -0700669 fBenchType = "micro";
mtkleine714e752014-07-31 12:13:48 -0700670 return bench;
671 }
mtklein92007582014-08-01 07:46:52 -0700672
mtkleine714e752014-07-31 12:13:48 -0700673 while (fGMs) {
674 SkAutoTDelete<skiagm::GM> gm(fGMs->factory()(NULL));
675 fGMs = fGMs->next();
mtkleincf5d9c92015-01-23 10:31:45 -0800676 if (gm->runAsBench()) {
mtklein92007582014-08-01 07:46:52 -0700677 fSourceType = "gm";
mtkleinfd731ce2014-09-10 12:19:30 -0700678 fBenchType = "micro";
mtkleine714e752014-07-31 12:13:48 -0700679 return SkNEW_ARGS(GMBench, (gm.detach()));
680 }
681 }
mtklein92007582014-08-01 07:46:52 -0700682
mtkleinfd731ce2014-09-10 12:19:30 -0700683 // First add all .skps as RecordingBenches.
684 while (fCurrentRecording < fSKPs.count()) {
685 const SkString& path = fSKPs[fCurrentRecording++];
686 SkAutoTUnref<SkPicture> pic;
687 if (!ReadPicture(path.c_str(), &pic)) {
688 continue;
689 }
690 SkString name = SkOSPath::Basename(path.c_str());
691 fSourceType = "skp";
692 fBenchType = "recording";
bsalomon0aa5cea2014-12-15 09:13:35 -0800693 fSKPBytes = static_cast<double>(SkPictureUtils::ApproximateBytesUsed(pic));
mtklein051e56d2014-12-04 08:46:51 -0800694 fSKPOps = pic->approximateOpCount();
mtkleinfd731ce2014-09-10 12:19:30 -0700695 return SkNEW_ARGS(RecordingBench, (name.c_str(), pic.get(), FLAGS_bbh));
696 }
697
698 // Then once each for each scale as SKPBenches (playback).
mtklein92007582014-08-01 07:46:52 -0700699 while (fCurrentScale < fScales.count()) {
700 while (fCurrentSKP < fSKPs.count()) {
robertphillips5b693772014-11-21 06:19:36 -0800701 const SkString& path = fSKPs[fCurrentSKP];
mtkleinfd731ce2014-09-10 12:19:30 -0700702 SkAutoTUnref<SkPicture> pic;
703 if (!ReadPicture(path.c_str(), &pic)) {
robertphillips5b693772014-11-21 06:19:36 -0800704 fCurrentSKP++;
mtklein92007582014-08-01 07:46:52 -0700705 continue;
706 }
robertphillips5b693772014-11-21 06:19:36 -0800707
708 while (fCurrentUseMPD < fUseMPDs.count()) {
709 if (FLAGS_bbh) {
710 // The SKP we read off disk doesn't have a BBH. Re-record so it grows one.
711 SkRTreeFactory factory;
712 SkPictureRecorder recorder;
713 static const int kFlags = SkPictureRecorder::kComputeSaveLayerInfo_RecordFlag;
714 pic->playback(recorder.beginRecording(pic->cullRect().width(),
715 pic->cullRect().height(),
mtklein748ca3b2015-01-15 10:56:12 -0800716 &factory,
robertphillipse451c4d2014-12-09 10:28:00 -0800717 fUseMPDs[fCurrentUseMPD] ? kFlags : 0));
robertphillips5b693772014-11-21 06:19:36 -0800718 pic.reset(recorder.endRecording());
719 }
720 SkString name = SkOSPath::Basename(path.c_str());
721 fSourceType = "skp";
722 fBenchType = "playback";
723 return SkNEW_ARGS(SKPBench,
cdaltonb4022962015-06-25 10:51:56 -0700724 (name.c_str(), pic.get(), fClip, fScales[fCurrentScale],
725 fUseMPDs[fCurrentUseMPD++], FLAGS_loopSKP));
joshualitt261c3ad2015-04-27 09:16:57 -0700726
mtklein20840502014-08-21 15:51:22 -0700727 }
robertphillips5b693772014-11-21 06:19:36 -0800728 fCurrentUseMPD = 0;
729 fCurrentSKP++;
mtklein92007582014-08-01 07:46:52 -0700730 }
731 fCurrentSKP = 0;
732 fCurrentScale++;
733 }
734
joshualitt261c3ad2015-04-27 09:16:57 -0700735 // Now loop over each skp again if we have an animation
cdalton63a82852015-06-29 14:06:10 -0700736 if (fZoomMax != 1.0f && fZoomPeriodMs > 0) {
joshualitt261c3ad2015-04-27 09:16:57 -0700737 while (fCurrentAnimSKP < fSKPs.count()) {
738 const SkString& path = fSKPs[fCurrentAnimSKP];
739 SkAutoTUnref<SkPicture> pic;
740 if (!ReadPicture(path.c_str(), &pic)) {
741 fCurrentAnimSKP++;
742 continue;
743 }
744
745 fCurrentAnimSKP++;
746 SkString name = SkOSPath::Basename(path.c_str());
cdalton63a82852015-06-29 14:06:10 -0700747 SkAutoTUnref<SKPAnimationBench::Animation> animation(
748 SKPAnimationBench::CreateZoomAnimation(fZoomMax, fZoomPeriodMs));
749 return SkNEW_ARGS(SKPAnimationBench, (name.c_str(), pic.get(), fClip, animation,
750 FLAGS_loopSKP));
joshualitt261c3ad2015-04-27 09:16:57 -0700751 }
752 }
753
754
scroggo60869a42015-04-01 12:09:17 -0700755 for (; fCurrentCodec < fImages.count(); fCurrentCodec++) {
756 const SkString& path = fImages[fCurrentCodec];
757 SkAutoTUnref<SkData> encoded(SkData::NewFromFileName(path.c_str()));
758 SkAutoTDelete<SkCodec> codec(SkCodec::NewFromData(encoded));
scroggo60869a42015-04-01 12:09:17 -0700759 if (!codec) {
760 // Nothing to time.
msarett9d9725c2015-04-24 11:41:55 -0700761 SkDebugf("Cannot find codec for %s\n", path.c_str());
scroggo60869a42015-04-01 12:09:17 -0700762 continue;
763 }
scroggo21027992015-04-02 13:22:38 -0700764
scroggo60869a42015-04-01 12:09:17 -0700765 while (fCurrentColorType < fColorTypes.count()) {
scroggo21027992015-04-02 13:22:38 -0700766 const SkColorType colorType = fColorTypes[fCurrentColorType];
scroggo60869a42015-04-01 12:09:17 -0700767 fCurrentColorType++;
scroggo21027992015-04-02 13:22:38 -0700768
scroggo60869a42015-04-01 12:09:17 -0700769 // Make sure we can decode to this color type.
scroggo60869a42015-04-01 12:09:17 -0700770 SkImageInfo info = codec->getInfo().makeColorType(colorType);
scroggo21027992015-04-02 13:22:38 -0700771 SkAlphaType alphaType;
772 if (!SkColorTypeValidateAlphaType(colorType, info.alphaType(),
773 &alphaType)) {
774 continue;
775 }
776 if (alphaType != info.alphaType()) {
777 info = info.makeAlphaType(alphaType);
778 }
779
780 const size_t rowBytes = info.minRowBytes();
781 SkAutoMalloc storage(info.getSafeSize(rowBytes));
782
783 // Used if fCurrentColorType is kIndex_8_SkColorType
784 int colorCount = 256;
785 SkPMColor colors[256];
786
scroggoeb602a52015-07-09 08:16:03 -0700787 const SkCodec::Result result = codec->getPixels(
scroggo21027992015-04-02 13:22:38 -0700788 info, storage.get(), rowBytes, NULL, colors,
789 &colorCount);
scroggo60869a42015-04-01 12:09:17 -0700790 switch (result) {
scroggoeb602a52015-07-09 08:16:03 -0700791 case SkCodec::kSuccess:
792 case SkCodec::kIncompleteInput:
scroggo60869a42015-04-01 12:09:17 -0700793 return new CodecBench(SkOSPath::Basename(path.c_str()),
794 encoded, colorType);
scroggoeb602a52015-07-09 08:16:03 -0700795 case SkCodec::kInvalidConversion:
scroggo60869a42015-04-01 12:09:17 -0700796 // This is okay. Not all conversions are valid.
797 break;
scroggo60869a42015-04-01 12:09:17 -0700798 default:
799 // This represents some sort of failure.
800 SkASSERT(false);
801 break;
802 }
803 }
804 fCurrentColorType = 0;
805 }
806
msarett95f192d2015-02-13 09:05:41 -0800807 // Run the DecodingBenches
808 while (fCurrentImage < fImages.count()) {
809 while (fCurrentColorType < fColorTypes.count()) {
810 const SkString& path = fImages[fCurrentImage];
811 SkColorType colorType = fColorTypes[fCurrentColorType];
812 fCurrentColorType++;
scroggo60869a42015-04-01 12:09:17 -0700813 // Check if the image decodes to the right color type
814 // before creating the benchmark
msarett95f192d2015-02-13 09:05:41 -0800815 SkBitmap bitmap;
816 if (SkImageDecoder::DecodeFile(path.c_str(), &bitmap,
scroggo60869a42015-04-01 12:09:17 -0700817 colorType, SkImageDecoder::kDecodePixels_Mode)
818 && bitmap.colorType() == colorType) {
msarett95f192d2015-02-13 09:05:41 -0800819 return new DecodingBench(path, colorType);
820 }
821 }
822 fCurrentColorType = 0;
823 fCurrentImage++;
824 }
825
msarettb23e6aa2015-06-09 13:56:10 -0700826 // Run the SubsetBenches
827 bool useCodecOpts[] = { true, false };
828 while (fUseCodec < 2) {
829 bool useCodec = useCodecOpts[fUseCodec];
830 while (fCurrentSubsetImage < fImages.count()) {
831 while (fCurrentColorType < fColorTypes.count()) {
832 const SkString& path = fImages[fCurrentSubsetImage];
833 SkColorType colorType = fColorTypes[fCurrentColorType];
834 while (fCurrentSubsetType <= kLast_SubsetType) {
835 int width = 0;
836 int height = 0;
837 int currentSubsetType = fCurrentSubsetType++;
838 if (valid_subset_bench(path, colorType, useCodec, &width, &height)) {
839 switch (currentSubsetType) {
840 case kTopLeft_SubsetType:
msarettab80e352015-06-17 10:28:22 -0700841 return new SubsetSingleBench(path, colorType, width/3,
842 height/3, 0, 0, useCodec);
msarettb23e6aa2015-06-09 13:56:10 -0700843 case kTopRight_SubsetType:
msarettab80e352015-06-17 10:28:22 -0700844 return new SubsetSingleBench(path, colorType, width/3,
845 height/3, 2*width/3, 0, useCodec);
846 case kMiddle_SubsetType:
847 return new SubsetSingleBench(path, colorType, width/3,
848 height/3, width/3, height/3, useCodec);
msarettb23e6aa2015-06-09 13:56:10 -0700849 case kBottomLeft_SubsetType:
msarettab80e352015-06-17 10:28:22 -0700850 return new SubsetSingleBench(path, colorType, width/3,
851 height/3, 0, 2*height/3, useCodec);
msarettb23e6aa2015-06-09 13:56:10 -0700852 case kBottomRight_SubsetType:
msarettab80e352015-06-17 10:28:22 -0700853 return new SubsetSingleBench(path, colorType, width/3,
854 height/3, 2*width/3, 2*height/3, useCodec);
msarettb23e6aa2015-06-09 13:56:10 -0700855 case kTranslate_SubsetType:
856 return new SubsetTranslateBench(path, colorType, 512, 512,
857 useCodec);
858 case kZoom_SubsetType:
859 return new SubsetZoomBench(path, colorType, 512, 512,
860 useCodec);
msarett95f192d2015-02-13 09:05:41 -0800861 }
msarettb23e6aa2015-06-09 13:56:10 -0700862 } else {
863 break;
msarett95f192d2015-02-13 09:05:41 -0800864 }
865 }
msarettb23e6aa2015-06-09 13:56:10 -0700866 fCurrentSubsetType = 0;
867 fCurrentColorType++;
msarett95f192d2015-02-13 09:05:41 -0800868 }
msarettb23e6aa2015-06-09 13:56:10 -0700869 fCurrentColorType = 0;
870 fCurrentSubsetImage++;
msarett95f192d2015-02-13 09:05:41 -0800871 }
msarettb23e6aa2015-06-09 13:56:10 -0700872 fCurrentSubsetImage = 0;
873 fUseCodec++;
msarett95f192d2015-02-13 09:05:41 -0800874 }
875
mtkleine714e752014-07-31 12:13:48 -0700876 return NULL;
877 }
mtklein92007582014-08-01 07:46:52 -0700878
879 void fillCurrentOptions(ResultsWriter* log) const {
880 log->configOption("source_type", fSourceType);
mtkleinfd731ce2014-09-10 12:19:30 -0700881 log->configOption("bench_type", fBenchType);
mtklein92007582014-08-01 07:46:52 -0700882 if (0 == strcmp(fSourceType, "skp")) {
883 log->configOption("clip",
884 SkStringPrintf("%d %d %d %d", fClip.fLeft, fClip.fTop,
885 fClip.fRight, fClip.fBottom).c_str());
886 log->configOption("scale", SkStringPrintf("%.2g", fScales[fCurrentScale]).c_str());
robertphillips5b693772014-11-21 06:19:36 -0800887 if (fCurrentUseMPD > 0) {
888 SkASSERT(1 == fCurrentUseMPD || 2 == fCurrentUseMPD);
889 log->configOption("multi_picture_draw", fUseMPDs[fCurrentUseMPD-1] ? "true" : "false");
890 }
mtklein92007582014-08-01 07:46:52 -0700891 }
mtklein051e56d2014-12-04 08:46:51 -0800892 if (0 == strcmp(fBenchType, "recording")) {
893 log->metric("bytes", fSKPBytes);
894 log->metric("ops", fSKPOps);
895 }
mtklein92007582014-08-01 07:46:52 -0700896 }
897
mtkleine714e752014-07-31 12:13:48 -0700898private:
msarettb23e6aa2015-06-09 13:56:10 -0700899 enum SubsetType {
900 kTopLeft_SubsetType = 0,
901 kTopRight_SubsetType = 1,
msarettab80e352015-06-17 10:28:22 -0700902 kMiddle_SubsetType = 2,
903 kBottomLeft_SubsetType = 3,
904 kBottomRight_SubsetType = 4,
905 kTranslate_SubsetType = 5,
906 kZoom_SubsetType = 6,
msarettb23e6aa2015-06-09 13:56:10 -0700907 kLast_SubsetType = kZoom_SubsetType
908 };
909
mtkleine714e752014-07-31 12:13:48 -0700910 const BenchRegistry* fBenches;
911 const skiagm::GMRegistry* fGMs;
mtklein92007582014-08-01 07:46:52 -0700912 SkIRect fClip;
913 SkTArray<SkScalar> fScales;
914 SkTArray<SkString> fSKPs;
robertphillips5b693772014-11-21 06:19:36 -0800915 SkTArray<bool> fUseMPDs;
msarett95f192d2015-02-13 09:05:41 -0800916 SkTArray<SkString> fImages;
917 SkTArray<SkColorType> fColorTypes;
cdalton63a82852015-06-29 14:06:10 -0700918 SkScalar fZoomMax;
919 double fZoomPeriodMs;
mtklein92007582014-08-01 07:46:52 -0700920
mtklein051e56d2014-12-04 08:46:51 -0800921 double fSKPBytes, fSKPOps;
922
mtkleinfd731ce2014-09-10 12:19:30 -0700923 const char* fSourceType; // What we're benching: bench, GM, SKP, ...
924 const char* fBenchType; // How we bench it: micro, recording, playback, ...
925 int fCurrentRecording;
mtklein92007582014-08-01 07:46:52 -0700926 int fCurrentScale;
927 int fCurrentSKP;
robertphillips5b693772014-11-21 06:19:36 -0800928 int fCurrentUseMPD;
scroggo60869a42015-04-01 12:09:17 -0700929 int fCurrentCodec;
msarett95f192d2015-02-13 09:05:41 -0800930 int fCurrentImage;
931 int fCurrentSubsetImage;
932 int fCurrentColorType;
msarettb23e6aa2015-06-09 13:56:10 -0700933 int fCurrentSubsetType;
934 int fUseCodec;
joshualitt261c3ad2015-04-27 09:16:57 -0700935 int fCurrentAnimSKP;
mtkleine714e752014-07-31 12:13:48 -0700936};
937
jcgregorio3b27ade2014-11-13 08:06:40 -0800938int nanobench_main();
caryclark17f0b6d2014-07-22 10:15:34 -0700939int nanobench_main() {
jcgregorio3b27ade2014-11-13 08:06:40 -0800940 SetupCrashHandler();
mtkleinf3723212014-06-25 14:08:00 -0700941 SkAutoGraphics ag;
mtkleincc29d262015-07-09 10:04:56 -0700942 SkTaskGroup::Enabler enabled(FLAGS_threads);
mtkleinf3723212014-06-25 14:08:00 -0700943
krajcevski69a55602014-08-13 10:46:31 -0700944#if SK_SUPPORT_GPU
bsalomon682c2692015-05-22 14:01:46 -0700945 GrContextOptions grContextOpts;
krajcevski12b35442014-08-13 12:06:26 -0700946 grContextOpts.fDrawPathToCompressedTexture = FLAGS_gpuCompressAlphaMasks;
947 gGrFactory.reset(SkNEW_ARGS(GrContextFactory, (grContextOpts)));
krajcevski69a55602014-08-13 10:46:31 -0700948#endif
949
bsalomon06cddec2014-10-24 10:40:50 -0700950 if (FLAGS_veryVerbose) {
951 FLAGS_verbose = true;
952 }
953
cdaltone1b89582015-06-25 19:17:08 -0700954 double samplingTimeMs = 0;
955 if (0 != strcmp("0", FLAGS_samplingTime[0])) {
956 SkSTArray<8, char> timeUnit;
957 timeUnit.push_back_n(static_cast<int>(strlen(FLAGS_samplingTime[0])) + 1);
958 if (2 != sscanf(FLAGS_samplingTime[0], "%lf%s", &samplingTimeMs, timeUnit.begin()) ||
959 (0 != strcmp("s", timeUnit.begin()) && 0 != strcmp("ms", timeUnit.begin()))) {
960 SkDebugf("Invalid --samplingTime \"%s\". Must be \"0\", \"%%lfs\", or \"%%lfms\"\n",
961 FLAGS_samplingTime[0]);
962 exit(0);
963 }
964 if (0 == strcmp("s", timeUnit.begin())) {
965 samplingTimeMs *= 1000;
966 }
967 if (samplingTimeMs) {
968 FLAGS_samples = kTimedSampling;
969 }
970 }
971
bsalomon6eb03cc2014-08-07 14:28:50 -0700972 if (kAutoTuneLoops != FLAGS_loops) {
mtkleina189ccd2014-07-14 12:28:47 -0700973 FLAGS_samples = 1;
974 FLAGS_gpuFrameLag = 0;
975 }
976
bsalomon6eb03cc2014-08-07 14:28:50 -0700977 if (!FLAGS_writePath.isEmpty()) {
978 SkDebugf("Writing files to %s.\n", FLAGS_writePath[0]);
979 if (!sk_mkdir(FLAGS_writePath[0])) {
980 SkDebugf("Could not create %s. Files won't be written.\n", FLAGS_writePath[0]);
981 FLAGS_writePath.set(0, NULL);
982 }
983 }
984
mtklein1915b622014-08-20 11:45:00 -0700985 SkAutoTDelete<ResultsWriter> log(SkNEW(ResultsWriter));
mtklein60317d0f2014-07-14 11:30:37 -0700986 if (!FLAGS_outResultsFile.isEmpty()) {
mtklein1915b622014-08-20 11:45:00 -0700987 log.reset(SkNEW(NanoJSONResultsWriter(FLAGS_outResultsFile[0])));
mtklein60317d0f2014-07-14 11:30:37 -0700988 }
mtklein1915b622014-08-20 11:45:00 -0700989
990 if (1 == FLAGS_properties.count() % 2) {
991 SkDebugf("ERROR: --properties must be passed with an even number of arguments.\n");
992 return 1;
993 }
994 for (int i = 1; i < FLAGS_properties.count(); i += 2) {
995 log->property(FLAGS_properties[i-1], FLAGS_properties[i]);
996 }
jcgregoriobf5e5232014-07-17 13:14:16 -0700997
998 if (1 == FLAGS_key.count() % 2) {
999 SkDebugf("ERROR: --key must be passed with an even number of arguments.\n");
1000 return 1;
1001 }
1002 for (int i = 1; i < FLAGS_key.count(); i += 2) {
mtklein1915b622014-08-20 11:45:00 -07001003 log->key(FLAGS_key[i-1], FLAGS_key[i]);
mtklein94e51562014-08-19 12:41:53 -07001004 }
mtklein60317d0f2014-07-14 11:30:37 -07001005
mtkleinf3723212014-06-25 14:08:00 -07001006 const double overhead = estimate_timer_overhead();
mtklein55b0ffc2014-07-17 08:38:23 -07001007 SkDebugf("Timer overhead: %s\n", HUMANIZE(overhead));
Mike Klein91294772014-07-16 19:59:32 -04001008
cdaltone1b89582015-06-25 19:17:08 -07001009 SkTArray<double> samples;
mtkleinbb6a0282014-07-01 08:43:42 -07001010
bsalomon6eb03cc2014-08-07 14:28:50 -07001011 if (kAutoTuneLoops != FLAGS_loops) {
1012 SkDebugf("Fixed number of loops; times would only be misleading so we won't print them.\n");
mtkleinf3723212014-06-25 14:08:00 -07001013 } else if (FLAGS_quiet) {
mtklein40b32be2014-07-09 08:46:49 -07001014 SkDebugf("median\tbench\tconfig\n");
cdaltone1b89582015-06-25 19:17:08 -07001015 } else if (kTimedSampling == FLAGS_samples) {
1016 SkDebugf("curr/maxrss\tloops\tmin\tmedian\tmean\tmax\tstddev\tsamples\tconfig\tbench\n");
mtkleinf3723212014-06-25 14:08:00 -07001017 } else {
mtkleind75c4662015-04-30 07:11:22 -07001018 SkDebugf("curr/maxrss\tloops\tmin\tmedian\tmean\tmax\tstddev\t%-*s\tconfig\tbench\n",
qiankun.miao8247ec32014-09-09 19:24:36 -07001019 FLAGS_samples, "samples");
mtkleinf3723212014-06-25 14:08:00 -07001020 }
1021
bsalomonc2553372014-07-22 13:09:05 -07001022 SkTDArray<Config> configs;
1023 create_configs(&configs);
1024
mtkleine070c2b2014-10-14 08:40:43 -07001025 int runs = 0;
mtklein92007582014-08-01 07:46:52 -07001026 BenchmarkStream benchStream;
1027 while (Benchmark* b = benchStream.next()) {
mtkleine714e752014-07-31 12:13:48 -07001028 SkAutoTDelete<Benchmark> bench(b);
mtklein96289052014-09-10 12:05:59 -07001029 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, bench->getUniqueName())) {
mtkleinf3723212014-06-25 14:08:00 -07001030 continue;
1031 }
1032
egdaniel3bf92062015-06-26 08:12:46 -07001033 if (!configs.isEmpty()) {
mtklein96289052014-09-10 12:05:59 -07001034 log->bench(bench->getUniqueName(), bench->getSize().fX, bench->getSize().fY);
jcgregoriobf5e5232014-07-17 13:14:16 -07001035 bench->preDraw();
1036 }
egdaniel3bf92062015-06-26 08:12:46 -07001037 for (int i = 0; i < configs.count(); ++i) {
1038 Target* target = is_enabled(b, configs[i]);
1039 if (!target) {
1040 continue;
1041 }
mtkleinf3723212014-06-25 14:08:00 -07001042
egdaniel3bf92062015-06-26 08:12:46 -07001043 // During HWUI output this canvas may be NULL.
1044 SkCanvas* canvas = target->getCanvas();
1045 const char* config = target->config.name;
1046
1047 target->setup();
robertphillips5b693772014-11-21 06:19:36 -08001048 bench->perCanvasPreDraw(canvas);
1049
cdaltone1b89582015-06-25 19:17:08 -07001050 int maxFrameLag;
egdaniel3bf92062015-06-26 08:12:46 -07001051 const int loops = target->needsFrameTiming(&maxFrameLag)
1052 ? setup_gpu_bench(target, bench.get(), maxFrameLag)
1053 : setup_cpu_bench(overhead, target, bench.get());
cdaltone1b89582015-06-25 19:17:08 -07001054
1055 if (kTimedSampling != FLAGS_samples) {
1056 samples.reset(FLAGS_samples);
1057 for (int s = 0; s < FLAGS_samples; s++) {
egdaniel3bf92062015-06-26 08:12:46 -07001058 samples[s] = time(loops, bench, target) / loops;
cdaltone1b89582015-06-25 19:17:08 -07001059 }
1060 } else if (samplingTimeMs) {
1061 samples.reset();
1062 if (FLAGS_verbose) {
1063 SkDebugf("Begin sampling %s for %ims\n",
1064 bench->getUniqueName(), static_cast<int>(samplingTimeMs));
1065 }
1066 WallTimer timer;
1067 timer.start();
1068 do {
egdaniel3bf92062015-06-26 08:12:46 -07001069 samples.push_back(time(loops, bench, target) / loops);
cdaltone1b89582015-06-25 19:17:08 -07001070 timer.end();
1071 } while (timer.fWall < samplingTimeMs);
1072 }
mtkleinf3723212014-06-25 14:08:00 -07001073
robertphillips5b693772014-11-21 06:19:36 -08001074 bench->perCanvasPostDraw(canvas);
1075
egdaniel3bf92062015-06-26 08:12:46 -07001076 if (Benchmark::kNonRendering_Backend != target->config.backend &&
tomhudsond968a6f2015-03-26 11:28:06 -07001077 !FLAGS_writePath.isEmpty() && FLAGS_writePath[0]) {
bsalomon6eb03cc2014-08-07 14:28:50 -07001078 SkString pngFilename = SkOSPath::Join(FLAGS_writePath[0], config);
mtklein96289052014-09-10 12:05:59 -07001079 pngFilename = SkOSPath::Join(pngFilename.c_str(), bench->getUniqueName());
bsalomon6eb03cc2014-08-07 14:28:50 -07001080 pngFilename.append(".png");
egdaniel3bf92062015-06-26 08:12:46 -07001081 write_canvas_png(target, pngFilename);
bsalomon6eb03cc2014-08-07 14:28:50 -07001082 }
1083
1084 if (kFailedLoops == loops) {
mtklein2069e222014-08-04 13:57:39 -07001085 // Can't be timed. A warning note has already been printed.
egdaniel3bf92062015-06-26 08:12:46 -07001086 cleanup_run(target);
Mike Kleine3631362014-07-15 17:56:37 -04001087 continue;
1088 }
1089
cdaltone1b89582015-06-25 19:17:08 -07001090 Stats stats(samples);
mtklein1915b622014-08-20 11:45:00 -07001091 log->config(config);
mtklein96289052014-09-10 12:05:59 -07001092 log->configOption("name", bench->getName());
mtklein1915b622014-08-20 11:45:00 -07001093 benchStream.fillCurrentOptions(log.get());
egdaniel3bf92062015-06-26 08:12:46 -07001094 target->fillOptions(log.get());
mtklein051e56d2014-12-04 08:46:51 -08001095 log->metric("min_ms", stats.min);
mtkleine070c2b2014-10-14 08:40:43 -07001096 if (runs++ % FLAGS_flushEvery == 0) {
1097 log->flush();
1098 }
mtklein60317d0f2014-07-14 11:30:37 -07001099
bsalomon6eb03cc2014-08-07 14:28:50 -07001100 if (kAutoTuneLoops != FLAGS_loops) {
egdaniel3bf92062015-06-26 08:12:46 -07001101 if (configs.count() == 1) {
mtkleina189ccd2014-07-14 12:28:47 -07001102 config = ""; // Only print the config if we run the same bench on more than one.
1103 }
mtkleind75c4662015-04-30 07:11:22 -07001104 SkDebugf("%4d/%-4dMB\t%s\t%s\n"
1105 , sk_tools::getCurrResidentSetSizeMB()
1106 , sk_tools::getMaxResidentSetSizeMB()
mtklein53d25622014-09-18 07:39:42 -07001107 , bench->getUniqueName()
1108 , config);
mtkleinf3723212014-06-25 14:08:00 -07001109 } else if (FLAGS_quiet) {
egdaniel3bf92062015-06-26 08:12:46 -07001110 if (configs.count() == 1) {
mtkleinf3723212014-06-25 14:08:00 -07001111 config = ""; // Only print the config if we run the same bench on more than one.
1112 }
mtklein96289052014-09-10 12:05:59 -07001113 SkDebugf("%s\t%s\t%s\n", HUMANIZE(stats.median), bench->getUniqueName(), config);
mtkleinf3723212014-06-25 14:08:00 -07001114 } else {
1115 const double stddev_percent = 100 * sqrt(stats.var) / stats.mean;
mtkleind75c4662015-04-30 07:11:22 -07001116 SkDebugf("%4d/%-4dMB\t%d\t%s\t%s\t%s\t%s\t%.0f%%\t%s\t%s\t%s\n"
1117 , sk_tools::getCurrResidentSetSizeMB()
1118 , sk_tools::getMaxResidentSetSizeMB()
mtkleinf3723212014-06-25 14:08:00 -07001119 , loops
mtklein55b0ffc2014-07-17 08:38:23 -07001120 , HUMANIZE(stats.min)
1121 , HUMANIZE(stats.median)
1122 , HUMANIZE(stats.mean)
1123 , HUMANIZE(stats.max)
mtkleinf3723212014-06-25 14:08:00 -07001124 , stddev_percent
cdaltone1b89582015-06-25 19:17:08 -07001125 , kTimedSampling != FLAGS_samples ? stats.plot.c_str()
1126 : to_string(samples.count()).c_str()
mtkleinf3723212014-06-25 14:08:00 -07001127 , config
mtklein96289052014-09-10 12:05:59 -07001128 , bench->getUniqueName()
mtkleinf3723212014-06-25 14:08:00 -07001129 );
1130 }
bsalomonb12ea412015-02-02 21:19:50 -08001131#if SK_SUPPORT_GPU
1132 if (FLAGS_gpuStats &&
egdaniel3bf92062015-06-26 08:12:46 -07001133 Benchmark::kGPU_Backend == configs[i].backend) {
1134 gGrFactory->get(configs[i].ctxType)->printCacheStats();
1135 gGrFactory->get(configs[i].ctxType)->printGpuStats();
bsalomon06cddec2014-10-24 10:40:50 -07001136 }
1137#endif
cdalton2c56ba52015-06-26 13:32:53 -07001138 if (FLAGS_verbose) {
1139 SkDebugf("Samples: ");
1140 for (int i = 0; i < samples.count(); i++) {
1141 SkDebugf("%s ", HUMANIZE(samples[i]));
1142 }
1143 SkDebugf("%s\n", bench->getUniqueName());
1144 }
egdaniel3bf92062015-06-26 08:12:46 -07001145 cleanup_run(target);
mtkleinf3723212014-06-25 14:08:00 -07001146 }
mtkleinf3723212014-06-25 14:08:00 -07001147 }
1148
mtkleine1091452014-12-04 10:47:02 -08001149 log->bench("memory_usage", 0,0);
1150 log->config("meta");
1151 log->metric("max_rss_mb", sk_tools::getMaxResidentSetSizeMB());
1152
joshualitte0b19d42015-03-26 10:41:02 -07001153#if SK_SUPPORT_GPU
1154 // Make sure we clean up the global GrContextFactory here, otherwise we might race with the
1155 // SkEventTracer destructor
1156 gGrFactory.reset(NULL);
1157#endif
1158
mtkleinf3723212014-06-25 14:08:00 -07001159 return 0;
1160}
1161
jcgregorio3b27ade2014-11-13 08:06:40 -08001162#if !defined SK_BUILD_FOR_IOS
1163int main(int argc, char** argv) {
1164 SkCommandLineFlags::Parse(argc, argv);
1165 return nanobench_main();
1166}
1167#endif