blob: e7019dcb8c97c0713ce653a7b3a35865e6696ef7 [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"
scroggo9b2cdbf2015-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 {
halcanary96fcdcc2015-08-27 07:41:13 -0700144 explicit GPUTarget(const Config& c) : Target(c), gl(nullptr) { }
tomhudsond968a6f2015-03-26 11:28:06 -0700145 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 {
bsalomonafcd7cd2015-08-31 12:39:41 -0700170 uint32_t flags = this->config.useDFText ? SkSurfaceProps::kUseDeviceIndependentFonts_Flag :
171 0;
tomhudsond968a6f2015-03-26 11:28:06 -0700172 SkSurfaceProps props(flags, SkSurfaceProps::kLegacyFontHost_InitType);
173 this->surface.reset(SkSurface::NewRenderTarget(gGrFactory->get(this->config.ctxType),
174 SkSurface::kNo_Budgeted, info,
175 this->config.samples, &props));
176 this->gl = gGrFactory->getGLContext(this->config.ctxType);
177 if (!this->surface.get()) {
178 return false;
179 }
cdaltond416a5b2015-06-23 13:23:44 -0700180 if (!this->gl->fenceSyncSupport()) {
181 SkDebugf("WARNING: GL context for config \"%s\" does not support fence sync. "
182 "Timings might not be accurate.\n", this->config.name);
183 }
tomhudsond968a6f2015-03-26 11:28:06 -0700184 return true;
185 }
186 void fillOptions(ResultsWriter* log) override {
187 const GrGLubyte* version;
188 SK_GL_RET(*this->gl, version, GetString(GR_GL_VERSION));
189 log->configOption("GL_VERSION", (const char*)(version));
190
191 SK_GL_RET(*this->gl, version, GetString(GR_GL_RENDERER));
192 log->configOption("GL_RENDERER", (const char*) version);
193
194 SK_GL_RET(*this->gl, version, GetString(GR_GL_VENDOR));
195 log->configOption("GL_VENDOR", (const char*) version);
196
197 SK_GL_RET(*this->gl, version, GetString(GR_GL_SHADING_LANGUAGE_VERSION));
198 log->configOption("GL_SHADING_LANGUAGE_VERSION", (const char*) version);
199 }
200};
mtkleind75c4662015-04-30 07:11:22 -0700201
tomhudsond968a6f2015-03-26 11:28:06 -0700202#endif
203
tomhudson75a0ebb2015-03-27 12:11:44 -0700204static double time(int loops, Benchmark* bench, Target* target) {
205 SkCanvas* canvas = target->getCanvas();
bsalomon6eb03cc2014-08-07 14:28:50 -0700206 if (canvas) {
207 canvas->clear(SK_ColorWHITE);
208 }
mtkleinbb6a0282014-07-01 08:43:42 -0700209 WallTimer timer;
210 timer.start();
tomhudson75a0ebb2015-03-27 12:11:44 -0700211 canvas = target->beginTiming(canvas);
212 bench->draw(loops, canvas);
mtkleinbb6a0282014-07-01 08:43:42 -0700213 if (canvas) {
214 canvas->flush();
215 }
tomhudson75a0ebb2015-03-27 12:11:44 -0700216 target->endTiming();
mtkleinbb6a0282014-07-01 08:43:42 -0700217 timer.end();
218 return timer.fWall;
219}
220
mtkleinf3723212014-06-25 14:08:00 -0700221static double estimate_timer_overhead() {
222 double overhead = 0;
mtkleinf3723212014-06-25 14:08:00 -0700223 for (int i = 0; i < FLAGS_overheadLoops; i++) {
tomhudson75a0ebb2015-03-27 12:11:44 -0700224 WallTimer timer;
225 timer.start();
226 timer.end();
227 overhead += timer.fWall;
mtkleinf3723212014-06-25 14:08:00 -0700228 }
229 return overhead / FLAGS_overheadLoops;
230}
231
reed53249782014-10-10 09:09:52 -0700232static int detect_forever_loops(int loops) {
233 // look for a magic run-forever value
234 if (loops < 0) {
235 loops = SK_MaxS32;
236 }
237 return loops;
238}
239
mtklein55b0ffc2014-07-17 08:38:23 -0700240static int clamp_loops(int loops) {
241 if (loops < 1) {
mtklein527930f2014-11-06 08:04:34 -0800242 SkDebugf("ERROR: clamping loops from %d to 1. "
243 "There's probably something wrong with the bench.\n", loops);
mtklein55b0ffc2014-07-17 08:38:23 -0700244 return 1;
245 }
246 if (loops > FLAGS_maxLoops) {
247 SkDebugf("WARNING: clamping loops from %d to FLAGS_maxLoops, %d.\n", loops, FLAGS_maxLoops);
248 return FLAGS_maxLoops;
249 }
250 return loops;
251}
252
tomhudsond968a6f2015-03-26 11:28:06 -0700253static bool write_canvas_png(Target* target, const SkString& filename) {
254
bsalomon6eb03cc2014-08-07 14:28:50 -0700255 if (filename.isEmpty()) {
256 return false;
257 }
tomhudson75a0ebb2015-03-27 12:11:44 -0700258 if (target->getCanvas() &&
259 kUnknown_SkColorType == target->getCanvas()->imageInfo().colorType()) {
bsalomon6eb03cc2014-08-07 14:28:50 -0700260 return false;
261 }
tomhudsond968a6f2015-03-26 11:28:06 -0700262
bsalomon6eb03cc2014-08-07 14:28:50 -0700263 SkBitmap bmp;
tomhudsond968a6f2015-03-26 11:28:06 -0700264
265 if (!target->capturePixels(&bmp)) {
bsalomon6eb03cc2014-08-07 14:28:50 -0700266 return false;
267 }
tomhudsond968a6f2015-03-26 11:28:06 -0700268
bsalomon6eb03cc2014-08-07 14:28:50 -0700269 SkString dir = SkOSPath::Dirname(filename.c_str());
270 if (!sk_mkdir(dir.c_str())) {
271 SkDebugf("Can't make dir %s.\n", dir.c_str());
272 return false;
273 }
274 SkFILEWStream stream(filename.c_str());
275 if (!stream.isValid()) {
276 SkDebugf("Can't write %s.\n", filename.c_str());
277 return false;
278 }
279 if (!SkImageEncoder::EncodeStream(&stream, bmp, SkImageEncoder::kPNG_Type, 100)) {
280 SkDebugf("Can't encode a PNG.\n");
281 return false;
282 }
283 return true;
284}
285
286static int kFailedLoops = -2;
cdaltone1b89582015-06-25 19:17:08 -0700287static int setup_cpu_bench(const double overhead, Target* target, Benchmark* bench) {
mtkleinbb6a0282014-07-01 08:43:42 -0700288 // First figure out approximately how many loops of bench it takes to make overhead negligible.
mtklein2069e222014-08-04 13:57:39 -0700289 double bench_plus_overhead = 0.0;
mtklein55b0ffc2014-07-17 08:38:23 -0700290 int round = 0;
cdaltonb4022962015-06-25 10:51:56 -0700291 int loops = bench->calculateLoops(FLAGS_loops);
292 if (kAutoTuneLoops == loops) {
bsalomon6eb03cc2014-08-07 14:28:50 -0700293 while (bench_plus_overhead < overhead) {
294 if (round++ == FLAGS_maxCalibrationAttempts) {
295 SkDebugf("WARNING: Can't estimate loops for %s (%s vs. %s); skipping.\n",
mtklein96289052014-09-10 12:05:59 -0700296 bench->getUniqueName(), HUMANIZE(bench_plus_overhead), HUMANIZE(overhead));
bsalomon6eb03cc2014-08-07 14:28:50 -0700297 return kFailedLoops;
298 }
tomhudson75a0ebb2015-03-27 12:11:44 -0700299 bench_plus_overhead = time(1, bench, target);
mtklein55b0ffc2014-07-17 08:38:23 -0700300 }
mtklein2069e222014-08-04 13:57:39 -0700301 }
mtkleinf3723212014-06-25 14:08:00 -0700302
mtkleinbb6a0282014-07-01 08:43:42 -0700303 // Later we'll just start and stop the timer once but loop N times.
mtkleinf3723212014-06-25 14:08:00 -0700304 // We'll pick N to make timer overhead negligible:
305 //
mtkleinbb6a0282014-07-01 08:43:42 -0700306 // overhead
307 // ------------------------- < FLAGS_overheadGoal
308 // overhead + N * Bench Time
mtkleinf3723212014-06-25 14:08:00 -0700309 //
mtkleinbb6a0282014-07-01 08:43:42 -0700310 // where bench_plus_overhead ≈ overhead + Bench Time.
mtkleinf3723212014-06-25 14:08:00 -0700311 //
312 // Doing some math, we get:
313 //
mtkleinbb6a0282014-07-01 08:43:42 -0700314 // (overhead / FLAGS_overheadGoal) - overhead
315 // ------------------------------------------ < N
316 // bench_plus_overhead - overhead)
mtkleinf3723212014-06-25 14:08:00 -0700317 //
318 // Luckily, this also works well in practice. :)
bsalomon6eb03cc2014-08-07 14:28:50 -0700319 if (kAutoTuneLoops == loops) {
320 const double numer = overhead / FLAGS_overheadGoal - overhead;
321 const double denom = bench_plus_overhead - overhead;
322 loops = (int)ceil(numer / denom);
reed53249782014-10-10 09:09:52 -0700323 loops = clamp_loops(loops);
324 } else {
325 loops = detect_forever_loops(loops);
bsalomon6eb03cc2014-08-07 14:28:50 -0700326 }
mtkleinbb6a0282014-07-01 08:43:42 -0700327
mtkleinbb6a0282014-07-01 08:43:42 -0700328 return loops;
mtkleinf3723212014-06-25 14:08:00 -0700329}
330
cdaltone1b89582015-06-25 19:17:08 -0700331static int setup_gpu_bench(Target* target, Benchmark* bench, int maxGpuFrameLag) {
mtkleinbb6a0282014-07-01 08:43:42 -0700332 // First, figure out how many loops it'll take to get a frame up to FLAGS_gpuMs.
cdaltonb4022962015-06-25 10:51:56 -0700333 int loops = bench->calculateLoops(FLAGS_loops);
bsalomon6eb03cc2014-08-07 14:28:50 -0700334 if (kAutoTuneLoops == loops) {
335 loops = 1;
mtkleina189ccd2014-07-14 12:28:47 -0700336 double elapsed = 0;
337 do {
mtklein527930f2014-11-06 08:04:34 -0800338 if (1<<30 == loops) {
339 // We're about to wrap. Something's wrong with the bench.
340 loops = 0;
341 break;
342 }
mtkleina189ccd2014-07-14 12:28:47 -0700343 loops *= 2;
344 // If the GPU lets frames lag at all, we need to make sure we're timing
cdaltond416a5b2015-06-23 13:23:44 -0700345 // _this_ round, not still timing last round.
346 for (int i = 0; i < maxGpuFrameLag; i++) {
tomhudson75a0ebb2015-03-27 12:11:44 -0700347 elapsed = time(loops, bench, target);
mtkleina189ccd2014-07-14 12:28:47 -0700348 }
349 } while (elapsed < FLAGS_gpuMs);
mtkleinbb6a0282014-07-01 08:43:42 -0700350
mtkleina189ccd2014-07-14 12:28:47 -0700351 // We've overshot at least a little. Scale back linearly.
352 loops = (int)ceil(loops * FLAGS_gpuMs / elapsed);
reed53249782014-10-10 09:09:52 -0700353 loops = clamp_loops(loops);
mtkleinbb6a0282014-07-01 08:43:42 -0700354
tomhudsond968a6f2015-03-26 11:28:06 -0700355 // Make sure we're not still timing our calibration.
356 target->fence();
reed53249782014-10-10 09:09:52 -0700357 } else {
358 loops = detect_forever_loops(loops);
mtkleina189ccd2014-07-14 12:28:47 -0700359 }
mtkleinbb6a0282014-07-01 08:43:42 -0700360
361 // Pretty much the same deal as the calibration: do some warmup to make
362 // sure we're timing steady-state pipelined frames.
cdaltond416a5b2015-06-23 13:23:44 -0700363 for (int i = 0; i < maxGpuFrameLag - 1; i++) {
tomhudson75a0ebb2015-03-27 12:11:44 -0700364 time(loops, bench, target);
mtkleinf3723212014-06-25 14:08:00 -0700365 }
mtkleinbb6a0282014-07-01 08:43:42 -0700366
mtkleinbb6a0282014-07-01 08:43:42 -0700367 return loops;
368}
mtkleinbb6a0282014-07-01 08:43:42 -0700369
370static SkString to_lower(const char* str) {
371 SkString lower(str);
372 for (size_t i = 0; i < lower.size(); i++) {
373 lower[i] = tolower(lower[i]);
374 }
375 return lower;
mtkleinf3723212014-06-25 14:08:00 -0700376}
377
bsalomonc2553372014-07-22 13:09:05 -0700378static bool is_cpu_config_allowed(const char* name) {
mtkleinbb6a0282014-07-01 08:43:42 -0700379 for (int i = 0; i < FLAGS_config.count(); i++) {
bsalomonc2553372014-07-22 13:09:05 -0700380 if (to_lower(FLAGS_config[i]).equals(name)) {
381 return true;
mtkleinf3723212014-06-25 14:08:00 -0700382 }
383 }
bsalomonc2553372014-07-22 13:09:05 -0700384 return false;
mtkleinbb6a0282014-07-01 08:43:42 -0700385}
386
bsalomonc2553372014-07-22 13:09:05 -0700387#if SK_SUPPORT_GPU
388static bool is_gpu_config_allowed(const char* name, GrContextFactory::GLContextType ctxType,
389 int sampleCnt) {
390 if (!is_cpu_config_allowed(name)) {
391 return false;
392 }
krajcevski69a55602014-08-13 10:46:31 -0700393 if (const GrContext* ctx = gGrFactory->get(ctxType)) {
bsalomon76228632015-05-29 08:02:10 -0700394 return sampleCnt <= ctx->caps()->maxSampleCount();
bsalomonc2553372014-07-22 13:09:05 -0700395 }
396 return false;
397}
398#endif
mtkleinbb6a0282014-07-01 08:43:42 -0700399
bsalomonc2553372014-07-22 13:09:05 -0700400#if SK_SUPPORT_GPU
401#define kBogusGLContextType GrContextFactory::kNative_GLContextType
402#else
403#define kBogusGLContextType 0
mtkleine714e752014-07-31 12:13:48 -0700404#endif
bsalomonc2553372014-07-22 13:09:05 -0700405
406// Append all configs that are enabled and supported.
407static void create_configs(SkTDArray<Config>* configs) {
jvanverth4736e142014-11-07 07:12:46 -0800408 #define CPU_CONFIG(name, backend, color, alpha) \
409 if (is_cpu_config_allowed(#name)) { \
410 Config config = { #name, Benchmark::backend, color, alpha, 0, \
411 kBogusGLContextType, false }; \
412 configs->push(config); \
mtkleinbb6a0282014-07-01 08:43:42 -0700413 }
mtkleine714e752014-07-31 12:13:48 -0700414
mtklein40b32be2014-07-09 08:46:49 -0700415 if (FLAGS_cpu) {
bsalomonc2553372014-07-22 13:09:05 -0700416 CPU_CONFIG(nonrendering, kNonRendering_Backend, kUnknown_SkColorType, kUnpremul_SkAlphaType)
417 CPU_CONFIG(8888, kRaster_Backend, kN32_SkColorType, kPremul_SkAlphaType)
418 CPU_CONFIG(565, kRaster_Backend, kRGB_565_SkColorType, kOpaque_SkAlphaType)
mtklein40b32be2014-07-09 08:46:49 -0700419 }
mtkleinbb6a0282014-07-01 08:43:42 -0700420
421#if SK_SUPPORT_GPU
jvanverth4736e142014-11-07 07:12:46 -0800422 #define GPU_CONFIG(name, ctxType, samples, useDFText) \
bsalomonc2553372014-07-22 13:09:05 -0700423 if (is_gpu_config_allowed(#name, GrContextFactory::ctxType, samples)) { \
424 Config config = { \
425 #name, \
426 Benchmark::kGPU_Backend, \
427 kN32_SkColorType, \
428 kPremul_SkAlphaType, \
429 samples, \
jvanverth4736e142014-11-07 07:12:46 -0800430 GrContextFactory::ctxType, \
431 useDFText }; \
bsalomonc2553372014-07-22 13:09:05 -0700432 configs->push(config); \
mtkleinbb6a0282014-07-01 08:43:42 -0700433 }
mtkleine714e752014-07-31 12:13:48 -0700434
mtklein40b32be2014-07-09 08:46:49 -0700435 if (FLAGS_gpu) {
jvanverth4736e142014-11-07 07:12:46 -0800436 GPU_CONFIG(gpu, kNative_GLContextType, 0, false)
437 GPU_CONFIG(msaa4, kNative_GLContextType, 4, false)
438 GPU_CONFIG(msaa16, kNative_GLContextType, 16, false)
439 GPU_CONFIG(nvprmsaa4, kNVPR_GLContextType, 4, false)
440 GPU_CONFIG(nvprmsaa16, kNVPR_GLContextType, 16, false)
441 GPU_CONFIG(gpudft, kNative_GLContextType, 0, true)
442 GPU_CONFIG(debug, kDebug_GLContextType, 0, false)
443 GPU_CONFIG(nullgpu, kNull_GLContextType, 0, false)
bsalomon3b4d0772014-08-06 10:52:33 -0700444#ifdef SK_ANGLE
jvanverth4736e142014-11-07 07:12:46 -0800445 GPU_CONFIG(angle, kANGLE_GLContextType, 0, false)
hendrikweddbefb2015-09-11 13:07:29 -0700446 GPU_CONFIG(angle-gl, kANGLE_GL_GLContextType, 0, false)
bsalomon3b4d0772014-08-06 10:52:33 -0700447#endif
hendrikw885bf092015-08-27 10:38:39 -0700448#ifdef SK_COMMAND_BUFFER
449 GPU_CONFIG(commandbuffer, kCommandBuffer_GLContextType, 0, false)
450#endif
cdaltond416a5b2015-06-23 13:23:44 -0700451#if SK_MESA
452 GPU_CONFIG(mesa, kMESA_GLContextType, 0, false)
453#endif
mtklein40b32be2014-07-09 08:46:49 -0700454 }
mtkleinbb6a0282014-07-01 08:43:42 -0700455#endif
tomhudsond968a6f2015-03-26 11:28:06 -0700456
457#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
458 if (is_cpu_config_allowed("hwui")) {
459 Config config = { "hwui", Benchmark::kHWUI_Backend, kRGBA_8888_SkColorType,
460 kPremul_SkAlphaType, 0, kBogusGLContextType, false };
461 configs->push(config);
462 }
463#endif
mtkleinf3723212014-06-25 14:08:00 -0700464}
465
halcanary96fcdcc2015-08-27 07:41:13 -0700466// If bench is enabled for config, returns a Target* for it, otherwise nullptr.
bsalomonc2553372014-07-22 13:09:05 -0700467static Target* is_enabled(Benchmark* bench, const Config& config) {
468 if (!bench->isSuitableFor(config.backend)) {
halcanary96fcdcc2015-08-27 07:41:13 -0700469 return nullptr;
bsalomonc2553372014-07-22 13:09:05 -0700470 }
471
reede5ea5002014-09-03 11:54:58 -0700472 SkImageInfo info = SkImageInfo::Make(bench->getSize().fX, bench->getSize().fY,
473 config.color, config.alpha);
bsalomonc2553372014-07-22 13:09:05 -0700474
halcanary96fcdcc2015-08-27 07:41:13 -0700475 Target* target = nullptr;
bsalomonc2553372014-07-22 13:09:05 -0700476
tomhudsond968a6f2015-03-26 11:28:06 -0700477 switch (config.backend) {
bsalomonc2553372014-07-22 13:09:05 -0700478#if SK_SUPPORT_GPU
tomhudsond968a6f2015-03-26 11:28:06 -0700479 case Benchmark::kGPU_Backend:
480 target = new GPUTarget(config);
481 break;
bsalomonc2553372014-07-22 13:09:05 -0700482#endif
tomhudsond968a6f2015-03-26 11:28:06 -0700483#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
484 case Benchmark::kHWUI_Backend:
485 target = new HWUITarget(config, bench);
486 break;
487#endif
488 default:
489 target = new Target(config);
490 break;
491 }
bsalomonc2553372014-07-22 13:09:05 -0700492
tomhudsond968a6f2015-03-26 11:28:06 -0700493 if (!target->init(info, bench)) {
bsalomonc2553372014-07-22 13:09:05 -0700494 delete target;
halcanary96fcdcc2015-08-27 07:41:13 -0700495 return nullptr;
bsalomonc2553372014-07-22 13:09:05 -0700496 }
497 return target;
498}
499
msarettb23e6aa2015-06-09 13:56:10 -0700500/*
501 * Returns true if set up for a subset decode succeeds, false otherwise
502 * If the set-up succeeds, the width and height parameters will be set
503 */
504static bool valid_subset_bench(const SkString& path, SkColorType colorType, bool useCodec,
505 int* width, int* height) {
506 SkAutoTUnref<SkData> encoded(SkData::NewFromFileName(path.c_str()));
507 SkAutoTDelete<SkMemoryStream> stream(new SkMemoryStream(encoded));
508
msarettab80e352015-06-17 10:28:22 -0700509 // Check that we can create a codec or image decoder.
msarettb23e6aa2015-06-09 13:56:10 -0700510 if (useCodec) {
511 SkAutoTDelete<SkCodec> codec(SkCodec::NewFromStream(stream.detach()));
halcanary96fcdcc2015-08-27 07:41:13 -0700512 if (nullptr == codec) {
msarettb23e6aa2015-06-09 13:56:10 -0700513 SkDebugf("Could not create codec for %s. Skipping bench.\n", path.c_str());
514 return false;
515 }
516
517 // These will be initialized by SkCodec if the color type is kIndex8 and
518 // unused otherwise.
519 SkPMColor colors[256];
520 int colorCount;
521 const SkImageInfo info = codec->getInfo().makeColorType(colorType);
halcanary385fe4d2015-08-26 13:07:48 -0700522 SkAutoTDeleteArray<uint8_t> row(new uint8_t[info.minRowBytes()]);
scroggo1c005e42015-08-04 09:24:45 -0700523 SkAutoTDelete<SkScanlineDecoder> scanlineDecoder(SkScanlineDecoder::NewFromData(encoded));
halcanary96fcdcc2015-08-27 07:41:13 -0700524 if (nullptr == scanlineDecoder || scanlineDecoder->start(info, nullptr,
scroggo1c005e42015-08-04 09:24:45 -0700525 colors, &colorCount) != SkCodec::kSuccess)
526 {
msarettb23e6aa2015-06-09 13:56:10 -0700527 SkDebugf("Could not create scanline decoder for %s with color type %s. "
528 "Skipping bench.\n", path.c_str(), get_color_name(colorType));
529 return false;
530 }
531 *width = info.width();
532 *height = info.height();
533 } else {
534 SkAutoTDelete<SkImageDecoder> decoder(SkImageDecoder::Factory(stream));
halcanary96fcdcc2015-08-27 07:41:13 -0700535 if (nullptr == decoder) {
msarettb23e6aa2015-06-09 13:56:10 -0700536 SkDebugf("Could not create decoder for %s. Skipping bench.\n", path.c_str());
537 return false;
538 }
539 //FIXME: See skbug.com/3921
540 if (kIndex_8_SkColorType == colorType || kGray_8_SkColorType == colorType) {
541 SkDebugf("Cannot use image subset decoder for %s with color type %s. "
542 "Skipping bench.\n", path.c_str(), get_color_name(colorType));
543 return false;
544 }
545 if (!decoder->buildTileIndex(stream.detach(), width, height)) {
546 SkDebugf("Could not build tile index for %s. Skipping bench.\n", path.c_str());
547 return false;
548 }
549 }
msarettab80e352015-06-17 10:28:22 -0700550
551 // Check if the image is large enough for a meaningful subset benchmark.
552 if (*width <= 512 && *height <= 512) {
553 // This should not print a message since it is not an error.
554 return false;
555 }
556
msarettb23e6aa2015-06-09 13:56:10 -0700557 return true;
558}
jcgregoriobf5e5232014-07-17 13:14:16 -0700559
egdaniel3bf92062015-06-26 08:12:46 -0700560static void cleanup_run(Target* target) {
halcanary385fe4d2015-08-26 13:07:48 -0700561 delete target;
egdaniel3bf92062015-06-26 08:12:46 -0700562#if SK_SUPPORT_GPU
563 if (FLAGS_abandonGpuContext) {
564 gGrFactory->abandonContexts();
565 }
566 if (FLAGS_resetGpuContext || FLAGS_abandonGpuContext) {
567 gGrFactory->destroyContexts();
568 }
569#endif
570}
571
mtkleine714e752014-07-31 12:13:48 -0700572class BenchmarkStream {
573public:
mtklein92007582014-08-01 07:46:52 -0700574 BenchmarkStream() : fBenches(BenchRegistry::Head())
575 , fGMs(skiagm::GMRegistry::Head())
mtkleinfd731ce2014-09-10 12:19:30 -0700576 , fCurrentRecording(0)
mtklein92007582014-08-01 07:46:52 -0700577 , fCurrentScale(0)
robertphillips5b693772014-11-21 06:19:36 -0800578 , fCurrentSKP(0)
msarett95f192d2015-02-13 09:05:41 -0800579 , fCurrentUseMPD(0)
scroggo60869a42015-04-01 12:09:17 -0700580 , fCurrentCodec(0)
msarett95f192d2015-02-13 09:05:41 -0800581 , fCurrentImage(0)
582 , fCurrentSubsetImage(0)
583 , fCurrentColorType(0)
msarettb23e6aa2015-06-09 13:56:10 -0700584 , fCurrentSubsetType(0)
585 , fUseCodec(0)
586 , fCurrentAnimSKP(0) {
mtklein92007582014-08-01 07:46:52 -0700587 for (int i = 0; i < FLAGS_skps.count(); i++) {
588 if (SkStrEndsWith(FLAGS_skps[i], ".skp")) {
589 fSKPs.push_back() = FLAGS_skps[i];
590 } else {
591 SkOSFile::Iter it(FLAGS_skps[i], ".skp");
592 SkString path;
593 while (it.next(&path)) {
594 fSKPs.push_back() = SkOSPath::Join(FLAGS_skps[0], path.c_str());
595 }
596 }
597 }
mtkleine714e752014-07-31 12:13:48 -0700598
mtklein92007582014-08-01 07:46:52 -0700599 if (4 != sscanf(FLAGS_clip[0], "%d,%d,%d,%d",
600 &fClip.fLeft, &fClip.fTop, &fClip.fRight, &fClip.fBottom)) {
601 SkDebugf("Can't parse %s from --clip as an SkIRect.\n", FLAGS_clip[0]);
602 exit(1);
603 }
604
605 for (int i = 0; i < FLAGS_scales.count(); i++) {
606 if (1 != sscanf(FLAGS_scales[i], "%f", &fScales.push_back())) {
607 SkDebugf("Can't parse %s from --scales as an SkScalar.\n", FLAGS_scales[i]);
608 exit(1);
609 }
610 }
robertphillips5b693772014-11-21 06:19:36 -0800611
cdalton63a82852015-06-29 14:06:10 -0700612 if (2 != sscanf(FLAGS_zoom[0], "%f,%lf", &fZoomMax, &fZoomPeriodMs)) {
613 SkDebugf("Can't parse %s from --zoom as a zoomMax,zoomPeriodMs.\n", FLAGS_zoom[0]);
joshualitt261c3ad2015-04-27 09:16:57 -0700614 exit(1);
615 }
616
robertphillips5b693772014-11-21 06:19:36 -0800617 if (FLAGS_mpd) {
618 fUseMPDs.push_back() = true;
619 }
mtkleinc751ecb2015-06-15 08:56:38 -0700620 fUseMPDs.push_back() = false;
mtklein95553d92015-03-12 08:24:21 -0700621
msarett95f192d2015-02-13 09:05:41 -0800622 // Prepare the images for decoding
623 for (int i = 0; i < FLAGS_images.count(); i++) {
624 const char* flag = FLAGS_images[i];
625 if (sk_isdir(flag)) {
626 // If the value passed in is a directory, add all the images
627 SkOSFile::Iter it(flag);
628 SkString file;
629 while (it.next(&file)) {
630 fImages.push_back() = SkOSPath::Join(flag, file.c_str());
631 }
632 } else if (sk_exists(flag)) {
633 // Also add the value if it is a single image
634 fImages.push_back() = flag;
635 }
636 }
mtklein95553d92015-03-12 08:24:21 -0700637
msarett95f192d2015-02-13 09:05:41 -0800638 // Choose the candidate color types for image decoding
639 const SkColorType colorTypes[] =
msarettb23e6aa2015-06-09 13:56:10 -0700640 { kN32_SkColorType,
641 kRGB_565_SkColorType,
642 kAlpha_8_SkColorType,
643 kIndex_8_SkColorType,
644 kGray_8_SkColorType };
msarett95f192d2015-02-13 09:05:41 -0800645 fColorTypes.push_back_n(SK_ARRAY_COUNT(colorTypes), colorTypes);
mtklein92007582014-08-01 07:46:52 -0700646 }
647
mtkleinfd731ce2014-09-10 12:19:30 -0700648 static bool ReadPicture(const char* path, SkAutoTUnref<SkPicture>* pic) {
649 // Not strictly necessary, as it will be checked again later,
650 // but helps to avoid a lot of pointless work if we're going to skip it.
651 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, path)) {
652 return false;
653 }
654
scroggoa1193e42015-01-21 12:09:53 -0800655 SkAutoTDelete<SkStream> stream(SkStream::NewFromFile(path));
halcanary96fcdcc2015-08-27 07:41:13 -0700656 if (stream.get() == nullptr) {
mtkleinfd731ce2014-09-10 12:19:30 -0700657 SkDebugf("Could not read %s.\n", path);
658 return false;
659 }
660
mtklein57f27bd2015-02-09 11:58:41 -0800661 pic->reset(SkPicture::CreateFromStream(stream.get()));
halcanary96fcdcc2015-08-27 07:41:13 -0700662 if (pic->get() == nullptr) {
mtkleinfd731ce2014-09-10 12:19:30 -0700663 SkDebugf("Could not read %s as an SkPicture.\n", path);
664 return false;
665 }
666 return true;
667 }
668
mtklein92007582014-08-01 07:46:52 -0700669 Benchmark* next() {
mtkleine714e752014-07-31 12:13:48 -0700670 if (fBenches) {
halcanary96fcdcc2015-08-27 07:41:13 -0700671 Benchmark* bench = fBenches->factory()(nullptr);
mtkleine714e752014-07-31 12:13:48 -0700672 fBenches = fBenches->next();
mtklein92007582014-08-01 07:46:52 -0700673 fSourceType = "bench";
mtkleinfd731ce2014-09-10 12:19:30 -0700674 fBenchType = "micro";
mtkleine714e752014-07-31 12:13:48 -0700675 return bench;
676 }
mtklein92007582014-08-01 07:46:52 -0700677
mtkleine714e752014-07-31 12:13:48 -0700678 while (fGMs) {
halcanary96fcdcc2015-08-27 07:41:13 -0700679 SkAutoTDelete<skiagm::GM> gm(fGMs->factory()(nullptr));
mtkleine714e752014-07-31 12:13:48 -0700680 fGMs = fGMs->next();
mtkleincf5d9c92015-01-23 10:31:45 -0800681 if (gm->runAsBench()) {
mtklein92007582014-08-01 07:46:52 -0700682 fSourceType = "gm";
mtkleinfd731ce2014-09-10 12:19:30 -0700683 fBenchType = "micro";
halcanary385fe4d2015-08-26 13:07:48 -0700684 return new GMBench(gm.detach());
mtkleine714e752014-07-31 12:13:48 -0700685 }
686 }
mtklein92007582014-08-01 07:46:52 -0700687
mtkleinfd731ce2014-09-10 12:19:30 -0700688 // First add all .skps as RecordingBenches.
689 while (fCurrentRecording < fSKPs.count()) {
690 const SkString& path = fSKPs[fCurrentRecording++];
691 SkAutoTUnref<SkPicture> pic;
692 if (!ReadPicture(path.c_str(), &pic)) {
693 continue;
694 }
695 SkString name = SkOSPath::Basename(path.c_str());
696 fSourceType = "skp";
697 fBenchType = "recording";
bsalomon0aa5cea2014-12-15 09:13:35 -0800698 fSKPBytes = static_cast<double>(SkPictureUtils::ApproximateBytesUsed(pic));
mtklein051e56d2014-12-04 08:46:51 -0800699 fSKPOps = pic->approximateOpCount();
halcanary385fe4d2015-08-26 13:07:48 -0700700 return new RecordingBench(name.c_str(), pic.get(), FLAGS_bbh);
mtkleinfd731ce2014-09-10 12:19:30 -0700701 }
702
703 // Then once each for each scale as SKPBenches (playback).
mtklein92007582014-08-01 07:46:52 -0700704 while (fCurrentScale < fScales.count()) {
705 while (fCurrentSKP < fSKPs.count()) {
robertphillips5b693772014-11-21 06:19:36 -0800706 const SkString& path = fSKPs[fCurrentSKP];
mtkleinfd731ce2014-09-10 12:19:30 -0700707 SkAutoTUnref<SkPicture> pic;
708 if (!ReadPicture(path.c_str(), &pic)) {
robertphillips5b693772014-11-21 06:19:36 -0800709 fCurrentSKP++;
mtklein92007582014-08-01 07:46:52 -0700710 continue;
711 }
robertphillips5b693772014-11-21 06:19:36 -0800712
713 while (fCurrentUseMPD < fUseMPDs.count()) {
714 if (FLAGS_bbh) {
715 // The SKP we read off disk doesn't have a BBH. Re-record so it grows one.
716 SkRTreeFactory factory;
717 SkPictureRecorder recorder;
718 static const int kFlags = SkPictureRecorder::kComputeSaveLayerInfo_RecordFlag;
719 pic->playback(recorder.beginRecording(pic->cullRect().width(),
720 pic->cullRect().height(),
mtklein748ca3b2015-01-15 10:56:12 -0800721 &factory,
robertphillipse451c4d2014-12-09 10:28:00 -0800722 fUseMPDs[fCurrentUseMPD] ? kFlags : 0));
robertphillips5b693772014-11-21 06:19:36 -0800723 pic.reset(recorder.endRecording());
724 }
725 SkString name = SkOSPath::Basename(path.c_str());
726 fSourceType = "skp";
727 fBenchType = "playback";
halcanary385fe4d2015-08-26 13:07:48 -0700728 return new SKPBench(name.c_str(), pic.get(), fClip, fScales[fCurrentScale],
729 fUseMPDs[fCurrentUseMPD++], FLAGS_loopSKP);
mtklein20840502014-08-21 15:51:22 -0700730 }
robertphillips5b693772014-11-21 06:19:36 -0800731 fCurrentUseMPD = 0;
732 fCurrentSKP++;
mtklein92007582014-08-01 07:46:52 -0700733 }
734 fCurrentSKP = 0;
735 fCurrentScale++;
736 }
737
joshualitt261c3ad2015-04-27 09:16:57 -0700738 // Now loop over each skp again if we have an animation
cdalton63a82852015-06-29 14:06:10 -0700739 if (fZoomMax != 1.0f && fZoomPeriodMs > 0) {
joshualitt261c3ad2015-04-27 09:16:57 -0700740 while (fCurrentAnimSKP < fSKPs.count()) {
741 const SkString& path = fSKPs[fCurrentAnimSKP];
742 SkAutoTUnref<SkPicture> pic;
743 if (!ReadPicture(path.c_str(), &pic)) {
744 fCurrentAnimSKP++;
745 continue;
746 }
747
748 fCurrentAnimSKP++;
749 SkString name = SkOSPath::Basename(path.c_str());
cdalton63a82852015-06-29 14:06:10 -0700750 SkAutoTUnref<SKPAnimationBench::Animation> animation(
751 SKPAnimationBench::CreateZoomAnimation(fZoomMax, fZoomPeriodMs));
halcanary385fe4d2015-08-26 13:07:48 -0700752 return new SKPAnimationBench(name.c_str(), pic.get(), fClip, animation,
753 FLAGS_loopSKP);
joshualitt261c3ad2015-04-27 09:16:57 -0700754 }
755 }
756
757
scroggo60869a42015-04-01 12:09:17 -0700758 for (; fCurrentCodec < fImages.count(); fCurrentCodec++) {
759 const SkString& path = fImages[fCurrentCodec];
760 SkAutoTUnref<SkData> encoded(SkData::NewFromFileName(path.c_str()));
761 SkAutoTDelete<SkCodec> codec(SkCodec::NewFromData(encoded));
scroggo60869a42015-04-01 12:09:17 -0700762 if (!codec) {
763 // Nothing to time.
msarett9d9725c2015-04-24 11:41:55 -0700764 SkDebugf("Cannot find codec for %s\n", path.c_str());
scroggo60869a42015-04-01 12:09:17 -0700765 continue;
766 }
scroggo21027992015-04-02 13:22:38 -0700767
scroggo60869a42015-04-01 12:09:17 -0700768 while (fCurrentColorType < fColorTypes.count()) {
scroggo21027992015-04-02 13:22:38 -0700769 const SkColorType colorType = fColorTypes[fCurrentColorType];
scroggo60869a42015-04-01 12:09:17 -0700770 fCurrentColorType++;
scroggo21027992015-04-02 13:22:38 -0700771
scroggo60869a42015-04-01 12:09:17 -0700772 // Make sure we can decode to this color type.
scroggo60869a42015-04-01 12:09:17 -0700773 SkImageInfo info = codec->getInfo().makeColorType(colorType);
scroggo21027992015-04-02 13:22:38 -0700774 SkAlphaType alphaType;
775 if (!SkColorTypeValidateAlphaType(colorType, info.alphaType(),
776 &alphaType)) {
777 continue;
778 }
779 if (alphaType != info.alphaType()) {
780 info = info.makeAlphaType(alphaType);
781 }
782
783 const size_t rowBytes = info.minRowBytes();
784 SkAutoMalloc storage(info.getSafeSize(rowBytes));
785
786 // Used if fCurrentColorType is kIndex_8_SkColorType
787 int colorCount = 256;
788 SkPMColor colors[256];
789
scroggoeb602a52015-07-09 08:16:03 -0700790 const SkCodec::Result result = codec->getPixels(
halcanary96fcdcc2015-08-27 07:41:13 -0700791 info, storage.get(), rowBytes, nullptr, colors,
scroggo21027992015-04-02 13:22:38 -0700792 &colorCount);
scroggo60869a42015-04-01 12:09:17 -0700793 switch (result) {
scroggoeb602a52015-07-09 08:16:03 -0700794 case SkCodec::kSuccess:
795 case SkCodec::kIncompleteInput:
scroggo60869a42015-04-01 12:09:17 -0700796 return new CodecBench(SkOSPath::Basename(path.c_str()),
797 encoded, colorType);
scroggoeb602a52015-07-09 08:16:03 -0700798 case SkCodec::kInvalidConversion:
scroggo60869a42015-04-01 12:09:17 -0700799 // This is okay. Not all conversions are valid.
800 break;
scroggo60869a42015-04-01 12:09:17 -0700801 default:
802 // This represents some sort of failure.
803 SkASSERT(false);
804 break;
805 }
806 }
807 fCurrentColorType = 0;
808 }
809
msarett95f192d2015-02-13 09:05:41 -0800810 // Run the DecodingBenches
811 while (fCurrentImage < fImages.count()) {
812 while (fCurrentColorType < fColorTypes.count()) {
813 const SkString& path = fImages[fCurrentImage];
814 SkColorType colorType = fColorTypes[fCurrentColorType];
815 fCurrentColorType++;
scroggo60869a42015-04-01 12:09:17 -0700816 // Check if the image decodes to the right color type
817 // before creating the benchmark
msarett95f192d2015-02-13 09:05:41 -0800818 SkBitmap bitmap;
819 if (SkImageDecoder::DecodeFile(path.c_str(), &bitmap,
scroggo60869a42015-04-01 12:09:17 -0700820 colorType, SkImageDecoder::kDecodePixels_Mode)
821 && bitmap.colorType() == colorType) {
msarett95f192d2015-02-13 09:05:41 -0800822 return new DecodingBench(path, colorType);
823 }
824 }
825 fCurrentColorType = 0;
826 fCurrentImage++;
827 }
828
msarettb23e6aa2015-06-09 13:56:10 -0700829 // Run the SubsetBenches
830 bool useCodecOpts[] = { true, false };
831 while (fUseCodec < 2) {
832 bool useCodec = useCodecOpts[fUseCodec];
833 while (fCurrentSubsetImage < fImages.count()) {
834 while (fCurrentColorType < fColorTypes.count()) {
835 const SkString& path = fImages[fCurrentSubsetImage];
836 SkColorType colorType = fColorTypes[fCurrentColorType];
837 while (fCurrentSubsetType <= kLast_SubsetType) {
838 int width = 0;
839 int height = 0;
840 int currentSubsetType = fCurrentSubsetType++;
841 if (valid_subset_bench(path, colorType, useCodec, &width, &height)) {
842 switch (currentSubsetType) {
843 case kTopLeft_SubsetType:
msarettab80e352015-06-17 10:28:22 -0700844 return new SubsetSingleBench(path, colorType, width/3,
845 height/3, 0, 0, useCodec);
msarettb23e6aa2015-06-09 13:56:10 -0700846 case kTopRight_SubsetType:
msarettab80e352015-06-17 10:28:22 -0700847 return new SubsetSingleBench(path, colorType, width/3,
848 height/3, 2*width/3, 0, useCodec);
849 case kMiddle_SubsetType:
850 return new SubsetSingleBench(path, colorType, width/3,
851 height/3, width/3, height/3, useCodec);
msarettb23e6aa2015-06-09 13:56:10 -0700852 case kBottomLeft_SubsetType:
msarettab80e352015-06-17 10:28:22 -0700853 return new SubsetSingleBench(path, colorType, width/3,
854 height/3, 0, 2*height/3, useCodec);
msarettb23e6aa2015-06-09 13:56:10 -0700855 case kBottomRight_SubsetType:
msarettab80e352015-06-17 10:28:22 -0700856 return new SubsetSingleBench(path, colorType, width/3,
857 height/3, 2*width/3, 2*height/3, useCodec);
msarettb23e6aa2015-06-09 13:56:10 -0700858 case kTranslate_SubsetType:
859 return new SubsetTranslateBench(path, colorType, 512, 512,
860 useCodec);
861 case kZoom_SubsetType:
862 return new SubsetZoomBench(path, colorType, 512, 512,
863 useCodec);
msarett95f192d2015-02-13 09:05:41 -0800864 }
msarettb23e6aa2015-06-09 13:56:10 -0700865 } else {
866 break;
msarett95f192d2015-02-13 09:05:41 -0800867 }
868 }
msarettb23e6aa2015-06-09 13:56:10 -0700869 fCurrentSubsetType = 0;
870 fCurrentColorType++;
msarett95f192d2015-02-13 09:05:41 -0800871 }
msarettb23e6aa2015-06-09 13:56:10 -0700872 fCurrentColorType = 0;
873 fCurrentSubsetImage++;
msarett95f192d2015-02-13 09:05:41 -0800874 }
msarettb23e6aa2015-06-09 13:56:10 -0700875 fCurrentSubsetImage = 0;
876 fUseCodec++;
msarett95f192d2015-02-13 09:05:41 -0800877 }
878
halcanary96fcdcc2015-08-27 07:41:13 -0700879 return nullptr;
mtkleine714e752014-07-31 12:13:48 -0700880 }
mtklein92007582014-08-01 07:46:52 -0700881
882 void fillCurrentOptions(ResultsWriter* log) const {
883 log->configOption("source_type", fSourceType);
mtkleinfd731ce2014-09-10 12:19:30 -0700884 log->configOption("bench_type", fBenchType);
mtklein92007582014-08-01 07:46:52 -0700885 if (0 == strcmp(fSourceType, "skp")) {
886 log->configOption("clip",
887 SkStringPrintf("%d %d %d %d", fClip.fLeft, fClip.fTop,
888 fClip.fRight, fClip.fBottom).c_str());
889 log->configOption("scale", SkStringPrintf("%.2g", fScales[fCurrentScale]).c_str());
robertphillips5b693772014-11-21 06:19:36 -0800890 if (fCurrentUseMPD > 0) {
891 SkASSERT(1 == fCurrentUseMPD || 2 == fCurrentUseMPD);
892 log->configOption("multi_picture_draw", fUseMPDs[fCurrentUseMPD-1] ? "true" : "false");
893 }
mtklein92007582014-08-01 07:46:52 -0700894 }
mtklein051e56d2014-12-04 08:46:51 -0800895 if (0 == strcmp(fBenchType, "recording")) {
896 log->metric("bytes", fSKPBytes);
897 log->metric("ops", fSKPOps);
898 }
mtklein92007582014-08-01 07:46:52 -0700899 }
900
mtkleine714e752014-07-31 12:13:48 -0700901private:
msarettb23e6aa2015-06-09 13:56:10 -0700902 enum SubsetType {
903 kTopLeft_SubsetType = 0,
904 kTopRight_SubsetType = 1,
msarettab80e352015-06-17 10:28:22 -0700905 kMiddle_SubsetType = 2,
906 kBottomLeft_SubsetType = 3,
907 kBottomRight_SubsetType = 4,
908 kTranslate_SubsetType = 5,
909 kZoom_SubsetType = 6,
msarettb23e6aa2015-06-09 13:56:10 -0700910 kLast_SubsetType = kZoom_SubsetType
911 };
912
mtkleine714e752014-07-31 12:13:48 -0700913 const BenchRegistry* fBenches;
914 const skiagm::GMRegistry* fGMs;
mtklein92007582014-08-01 07:46:52 -0700915 SkIRect fClip;
916 SkTArray<SkScalar> fScales;
917 SkTArray<SkString> fSKPs;
robertphillips5b693772014-11-21 06:19:36 -0800918 SkTArray<bool> fUseMPDs;
msarett95f192d2015-02-13 09:05:41 -0800919 SkTArray<SkString> fImages;
920 SkTArray<SkColorType> fColorTypes;
cdalton63a82852015-06-29 14:06:10 -0700921 SkScalar fZoomMax;
922 double fZoomPeriodMs;
mtklein92007582014-08-01 07:46:52 -0700923
mtklein051e56d2014-12-04 08:46:51 -0800924 double fSKPBytes, fSKPOps;
925
mtkleinfd731ce2014-09-10 12:19:30 -0700926 const char* fSourceType; // What we're benching: bench, GM, SKP, ...
927 const char* fBenchType; // How we bench it: micro, recording, playback, ...
928 int fCurrentRecording;
mtklein92007582014-08-01 07:46:52 -0700929 int fCurrentScale;
930 int fCurrentSKP;
robertphillips5b693772014-11-21 06:19:36 -0800931 int fCurrentUseMPD;
scroggo60869a42015-04-01 12:09:17 -0700932 int fCurrentCodec;
msarett95f192d2015-02-13 09:05:41 -0800933 int fCurrentImage;
934 int fCurrentSubsetImage;
935 int fCurrentColorType;
msarettb23e6aa2015-06-09 13:56:10 -0700936 int fCurrentSubsetType;
937 int fUseCodec;
joshualitt261c3ad2015-04-27 09:16:57 -0700938 int fCurrentAnimSKP;
mtkleine714e752014-07-31 12:13:48 -0700939};
940
jcgregorio3b27ade2014-11-13 08:06:40 -0800941int nanobench_main();
caryclark17f0b6d2014-07-22 10:15:34 -0700942int nanobench_main() {
jcgregorio3b27ade2014-11-13 08:06:40 -0800943 SetupCrashHandler();
mtkleinf3723212014-06-25 14:08:00 -0700944 SkAutoGraphics ag;
mtkleincc29d262015-07-09 10:04:56 -0700945 SkTaskGroup::Enabler enabled(FLAGS_threads);
mtkleinf3723212014-06-25 14:08:00 -0700946
krajcevski69a55602014-08-13 10:46:31 -0700947#if SK_SUPPORT_GPU
bsalomon682c2692015-05-22 14:01:46 -0700948 GrContextOptions grContextOpts;
krajcevski12b35442014-08-13 12:06:26 -0700949 grContextOpts.fDrawPathToCompressedTexture = FLAGS_gpuCompressAlphaMasks;
halcanary385fe4d2015-08-26 13:07:48 -0700950 gGrFactory.reset(new GrContextFactory(grContextOpts));
krajcevski69a55602014-08-13 10:46:31 -0700951#endif
952
bsalomon06cddec2014-10-24 10:40:50 -0700953 if (FLAGS_veryVerbose) {
954 FLAGS_verbose = true;
955 }
956
cdaltone1b89582015-06-25 19:17:08 -0700957 double samplingTimeMs = 0;
958 if (0 != strcmp("0", FLAGS_samplingTime[0])) {
959 SkSTArray<8, char> timeUnit;
960 timeUnit.push_back_n(static_cast<int>(strlen(FLAGS_samplingTime[0])) + 1);
961 if (2 != sscanf(FLAGS_samplingTime[0], "%lf%s", &samplingTimeMs, timeUnit.begin()) ||
962 (0 != strcmp("s", timeUnit.begin()) && 0 != strcmp("ms", timeUnit.begin()))) {
963 SkDebugf("Invalid --samplingTime \"%s\". Must be \"0\", \"%%lfs\", or \"%%lfms\"\n",
964 FLAGS_samplingTime[0]);
965 exit(0);
966 }
967 if (0 == strcmp("s", timeUnit.begin())) {
968 samplingTimeMs *= 1000;
969 }
970 if (samplingTimeMs) {
971 FLAGS_samples = kTimedSampling;
972 }
973 }
974
bsalomon6eb03cc2014-08-07 14:28:50 -0700975 if (kAutoTuneLoops != FLAGS_loops) {
mtkleina189ccd2014-07-14 12:28:47 -0700976 FLAGS_samples = 1;
977 FLAGS_gpuFrameLag = 0;
978 }
979
bsalomon6eb03cc2014-08-07 14:28:50 -0700980 if (!FLAGS_writePath.isEmpty()) {
981 SkDebugf("Writing files to %s.\n", FLAGS_writePath[0]);
982 if (!sk_mkdir(FLAGS_writePath[0])) {
983 SkDebugf("Could not create %s. Files won't be written.\n", FLAGS_writePath[0]);
halcanary96fcdcc2015-08-27 07:41:13 -0700984 FLAGS_writePath.set(0, nullptr);
bsalomon6eb03cc2014-08-07 14:28:50 -0700985 }
986 }
987
halcanary385fe4d2015-08-26 13:07:48 -0700988 SkAutoTDelete<ResultsWriter> log(new ResultsWriter);
mtklein60317d0f2014-07-14 11:30:37 -0700989 if (!FLAGS_outResultsFile.isEmpty()) {
halcanary385fe4d2015-08-26 13:07:48 -0700990 log.reset(new NanoJSONResultsWriter(FLAGS_outResultsFile[0]));
mtklein60317d0f2014-07-14 11:30:37 -0700991 }
mtklein1915b622014-08-20 11:45:00 -0700992
993 if (1 == FLAGS_properties.count() % 2) {
994 SkDebugf("ERROR: --properties must be passed with an even number of arguments.\n");
995 return 1;
996 }
997 for (int i = 1; i < FLAGS_properties.count(); i += 2) {
998 log->property(FLAGS_properties[i-1], FLAGS_properties[i]);
999 }
jcgregoriobf5e5232014-07-17 13:14:16 -07001000
1001 if (1 == FLAGS_key.count() % 2) {
1002 SkDebugf("ERROR: --key must be passed with an even number of arguments.\n");
1003 return 1;
1004 }
1005 for (int i = 1; i < FLAGS_key.count(); i += 2) {
mtklein1915b622014-08-20 11:45:00 -07001006 log->key(FLAGS_key[i-1], FLAGS_key[i]);
mtklein94e51562014-08-19 12:41:53 -07001007 }
mtklein60317d0f2014-07-14 11:30:37 -07001008
mtkleinf3723212014-06-25 14:08:00 -07001009 const double overhead = estimate_timer_overhead();
mtklein55b0ffc2014-07-17 08:38:23 -07001010 SkDebugf("Timer overhead: %s\n", HUMANIZE(overhead));
Mike Klein91294772014-07-16 19:59:32 -04001011
cdaltone1b89582015-06-25 19:17:08 -07001012 SkTArray<double> samples;
mtkleinbb6a0282014-07-01 08:43:42 -07001013
bsalomon6eb03cc2014-08-07 14:28:50 -07001014 if (kAutoTuneLoops != FLAGS_loops) {
1015 SkDebugf("Fixed number of loops; times would only be misleading so we won't print them.\n");
mtkleinf3723212014-06-25 14:08:00 -07001016 } else if (FLAGS_quiet) {
mtklein40b32be2014-07-09 08:46:49 -07001017 SkDebugf("median\tbench\tconfig\n");
cdaltone1b89582015-06-25 19:17:08 -07001018 } else if (kTimedSampling == FLAGS_samples) {
1019 SkDebugf("curr/maxrss\tloops\tmin\tmedian\tmean\tmax\tstddev\tsamples\tconfig\tbench\n");
mtkleinf3723212014-06-25 14:08:00 -07001020 } else {
mtkleind75c4662015-04-30 07:11:22 -07001021 SkDebugf("curr/maxrss\tloops\tmin\tmedian\tmean\tmax\tstddev\t%-*s\tconfig\tbench\n",
qiankun.miao8247ec32014-09-09 19:24:36 -07001022 FLAGS_samples, "samples");
mtkleinf3723212014-06-25 14:08:00 -07001023 }
1024
bsalomonc2553372014-07-22 13:09:05 -07001025 SkTDArray<Config> configs;
1026 create_configs(&configs);
1027
mtkleine070c2b2014-10-14 08:40:43 -07001028 int runs = 0;
mtklein92007582014-08-01 07:46:52 -07001029 BenchmarkStream benchStream;
1030 while (Benchmark* b = benchStream.next()) {
mtkleine714e752014-07-31 12:13:48 -07001031 SkAutoTDelete<Benchmark> bench(b);
mtklein96289052014-09-10 12:05:59 -07001032 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, bench->getUniqueName())) {
mtkleinf3723212014-06-25 14:08:00 -07001033 continue;
1034 }
1035
egdaniel3bf92062015-06-26 08:12:46 -07001036 if (!configs.isEmpty()) {
mtklein96289052014-09-10 12:05:59 -07001037 log->bench(bench->getUniqueName(), bench->getSize().fX, bench->getSize().fY);
jcgregoriobf5e5232014-07-17 13:14:16 -07001038 bench->preDraw();
1039 }
egdaniel3bf92062015-06-26 08:12:46 -07001040 for (int i = 0; i < configs.count(); ++i) {
1041 Target* target = is_enabled(b, configs[i]);
1042 if (!target) {
1043 continue;
1044 }
mtkleinf3723212014-06-25 14:08:00 -07001045
halcanary96fcdcc2015-08-27 07:41:13 -07001046 // During HWUI output this canvas may be nullptr.
egdaniel3bf92062015-06-26 08:12:46 -07001047 SkCanvas* canvas = target->getCanvas();
1048 const char* config = target->config.name;
1049
1050 target->setup();
robertphillips5b693772014-11-21 06:19:36 -08001051 bench->perCanvasPreDraw(canvas);
1052
cdaltone1b89582015-06-25 19:17:08 -07001053 int maxFrameLag;
egdaniel3bf92062015-06-26 08:12:46 -07001054 const int loops = target->needsFrameTiming(&maxFrameLag)
1055 ? setup_gpu_bench(target, bench.get(), maxFrameLag)
1056 : setup_cpu_bench(overhead, target, bench.get());
cdaltone1b89582015-06-25 19:17:08 -07001057
1058 if (kTimedSampling != FLAGS_samples) {
1059 samples.reset(FLAGS_samples);
1060 for (int s = 0; s < FLAGS_samples; s++) {
egdaniel3bf92062015-06-26 08:12:46 -07001061 samples[s] = time(loops, bench, target) / loops;
cdaltone1b89582015-06-25 19:17:08 -07001062 }
1063 } else if (samplingTimeMs) {
1064 samples.reset();
1065 if (FLAGS_verbose) {
1066 SkDebugf("Begin sampling %s for %ims\n",
1067 bench->getUniqueName(), static_cast<int>(samplingTimeMs));
1068 }
1069 WallTimer timer;
1070 timer.start();
1071 do {
egdaniel3bf92062015-06-26 08:12:46 -07001072 samples.push_back(time(loops, bench, target) / loops);
cdaltone1b89582015-06-25 19:17:08 -07001073 timer.end();
1074 } while (timer.fWall < samplingTimeMs);
1075 }
mtkleinf3723212014-06-25 14:08:00 -07001076
robertphillips5b693772014-11-21 06:19:36 -08001077 bench->perCanvasPostDraw(canvas);
1078
egdaniel3bf92062015-06-26 08:12:46 -07001079 if (Benchmark::kNonRendering_Backend != target->config.backend &&
tomhudsond968a6f2015-03-26 11:28:06 -07001080 !FLAGS_writePath.isEmpty() && FLAGS_writePath[0]) {
bsalomon6eb03cc2014-08-07 14:28:50 -07001081 SkString pngFilename = SkOSPath::Join(FLAGS_writePath[0], config);
mtklein96289052014-09-10 12:05:59 -07001082 pngFilename = SkOSPath::Join(pngFilename.c_str(), bench->getUniqueName());
bsalomon6eb03cc2014-08-07 14:28:50 -07001083 pngFilename.append(".png");
egdaniel3bf92062015-06-26 08:12:46 -07001084 write_canvas_png(target, pngFilename);
bsalomon6eb03cc2014-08-07 14:28:50 -07001085 }
1086
1087 if (kFailedLoops == loops) {
mtklein2069e222014-08-04 13:57:39 -07001088 // Can't be timed. A warning note has already been printed.
egdaniel3bf92062015-06-26 08:12:46 -07001089 cleanup_run(target);
Mike Kleine3631362014-07-15 17:56:37 -04001090 continue;
1091 }
1092
cdaltone1b89582015-06-25 19:17:08 -07001093 Stats stats(samples);
mtklein1915b622014-08-20 11:45:00 -07001094 log->config(config);
mtklein96289052014-09-10 12:05:59 -07001095 log->configOption("name", bench->getName());
mtklein1915b622014-08-20 11:45:00 -07001096 benchStream.fillCurrentOptions(log.get());
egdaniel3bf92062015-06-26 08:12:46 -07001097 target->fillOptions(log.get());
mtklein051e56d2014-12-04 08:46:51 -08001098 log->metric("min_ms", stats.min);
mtkleine070c2b2014-10-14 08:40:43 -07001099 if (runs++ % FLAGS_flushEvery == 0) {
1100 log->flush();
1101 }
mtklein60317d0f2014-07-14 11:30:37 -07001102
bsalomon6eb03cc2014-08-07 14:28:50 -07001103 if (kAutoTuneLoops != FLAGS_loops) {
egdaniel3bf92062015-06-26 08:12:46 -07001104 if (configs.count() == 1) {
mtkleina189ccd2014-07-14 12:28:47 -07001105 config = ""; // Only print the config if we run the same bench on more than one.
1106 }
mtkleind75c4662015-04-30 07:11:22 -07001107 SkDebugf("%4d/%-4dMB\t%s\t%s\n"
1108 , sk_tools::getCurrResidentSetSizeMB()
1109 , sk_tools::getMaxResidentSetSizeMB()
mtklein53d25622014-09-18 07:39:42 -07001110 , bench->getUniqueName()
1111 , config);
mtkleinf3723212014-06-25 14:08:00 -07001112 } else if (FLAGS_quiet) {
egdaniel3bf92062015-06-26 08:12:46 -07001113 if (configs.count() == 1) {
mtkleinf3723212014-06-25 14:08:00 -07001114 config = ""; // Only print the config if we run the same bench on more than one.
1115 }
mtklein96289052014-09-10 12:05:59 -07001116 SkDebugf("%s\t%s\t%s\n", HUMANIZE(stats.median), bench->getUniqueName(), config);
mtkleinf3723212014-06-25 14:08:00 -07001117 } else {
1118 const double stddev_percent = 100 * sqrt(stats.var) / stats.mean;
mtkleind75c4662015-04-30 07:11:22 -07001119 SkDebugf("%4d/%-4dMB\t%d\t%s\t%s\t%s\t%s\t%.0f%%\t%s\t%s\t%s\n"
1120 , sk_tools::getCurrResidentSetSizeMB()
1121 , sk_tools::getMaxResidentSetSizeMB()
mtkleinf3723212014-06-25 14:08:00 -07001122 , loops
mtklein55b0ffc2014-07-17 08:38:23 -07001123 , HUMANIZE(stats.min)
1124 , HUMANIZE(stats.median)
1125 , HUMANIZE(stats.mean)
1126 , HUMANIZE(stats.max)
mtkleinf3723212014-06-25 14:08:00 -07001127 , stddev_percent
cdaltone1b89582015-06-25 19:17:08 -07001128 , kTimedSampling != FLAGS_samples ? stats.plot.c_str()
1129 : to_string(samples.count()).c_str()
mtkleinf3723212014-06-25 14:08:00 -07001130 , config
mtklein96289052014-09-10 12:05:59 -07001131 , bench->getUniqueName()
mtkleinf3723212014-06-25 14:08:00 -07001132 );
1133 }
bsalomonb12ea412015-02-02 21:19:50 -08001134#if SK_SUPPORT_GPU
1135 if (FLAGS_gpuStats &&
egdaniel3bf92062015-06-26 08:12:46 -07001136 Benchmark::kGPU_Backend == configs[i].backend) {
1137 gGrFactory->get(configs[i].ctxType)->printCacheStats();
1138 gGrFactory->get(configs[i].ctxType)->printGpuStats();
bsalomon06cddec2014-10-24 10:40:50 -07001139 }
1140#endif
cdalton2c56ba52015-06-26 13:32:53 -07001141 if (FLAGS_verbose) {
1142 SkDebugf("Samples: ");
1143 for (int i = 0; i < samples.count(); i++) {
1144 SkDebugf("%s ", HUMANIZE(samples[i]));
1145 }
1146 SkDebugf("%s\n", bench->getUniqueName());
1147 }
egdaniel3bf92062015-06-26 08:12:46 -07001148 cleanup_run(target);
mtkleinf3723212014-06-25 14:08:00 -07001149 }
mtkleinf3723212014-06-25 14:08:00 -07001150 }
1151
mtkleine1091452014-12-04 10:47:02 -08001152 log->bench("memory_usage", 0,0);
1153 log->config("meta");
1154 log->metric("max_rss_mb", sk_tools::getMaxResidentSetSizeMB());
1155
joshualitte0b19d42015-03-26 10:41:02 -07001156#if SK_SUPPORT_GPU
1157 // Make sure we clean up the global GrContextFactory here, otherwise we might race with the
1158 // SkEventTracer destructor
halcanary96fcdcc2015-08-27 07:41:13 -07001159 gGrFactory.reset(nullptr);
joshualitte0b19d42015-03-26 10:41:02 -07001160#endif
1161
mtkleinf3723212014-06-25 14:08:00 -07001162 return 0;
1163}
1164
jcgregorio3b27ade2014-11-13 08:06:40 -08001165#if !defined SK_BUILD_FOR_IOS
1166int main(int argc, char** argv) {
1167 SkCommandLineFlags::Parse(argc, argv);
1168 return nanobench_main();
1169}
1170#endif