mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
mtklein | bb6a028 | 2014-07-01 08:43:42 -0700 | [diff] [blame] | 8 | #include <ctype.h> |
| 9 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 10 | #include "bench/nanobench.h" |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 11 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 12 | #include "bench/AndroidCodecBench.h" |
| 13 | #include "bench/Benchmark.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 14 | #include "bench/CodecBench.h" |
| 15 | #include "bench/CodecBenchPriv.h" |
| 16 | #include "bench/GMBench.h" |
| 17 | #include "bench/RecordingBench.h" |
| 18 | #include "bench/ResultsWriter.h" |
| 19 | #include "bench/SKPAnimationBench.h" |
| 20 | #include "bench/SKPBench.h" |
Hal Canary | 5dfefa2 | 2019-10-24 13:52:17 -0400 | [diff] [blame] | 21 | #include "bench/SkGlyphCacheBench.h" |
Brian Osman | 68870aa | 2020-07-08 14:12:43 -0400 | [diff] [blame] | 22 | #include "bench/SkSLBench.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 23 | #include "include/codec/SkAndroidCodec.h" |
| 24 | #include "include/codec/SkCodec.h" |
| 25 | #include "include/core/SkCanvas.h" |
| 26 | #include "include/core/SkData.h" |
| 27 | #include "include/core/SkGraphics.h" |
| 28 | #include "include/core/SkPictureRecorder.h" |
| 29 | #include "include/core/SkString.h" |
| 30 | #include "include/core/SkSurface.h" |
Ben Wagner | acf98df | 2019-07-12 12:51:44 -0400 | [diff] [blame] | 31 | #include "include/core/SkTime.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 32 | #include "src/core/SkAutoMalloc.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 33 | #include "src/core/SkColorSpacePriv.h" |
Ben Wagner | ab6eefe | 2019-05-20 11:02:49 -0400 | [diff] [blame] | 34 | #include "src/core/SkLeanWindows.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 35 | #include "src/core/SkOSFile.h" |
| 36 | #include "src/core/SkTaskGroup.h" |
| 37 | #include "src/core/SkTraceEvent.h" |
| 38 | #include "src/utils/SkJSONWriter.h" |
| 39 | #include "src/utils/SkOSPath.h" |
Jim Van Verth | 8a9a371 | 2019-05-31 10:49:12 -0400 | [diff] [blame] | 40 | #include "tools/AutoreleasePool.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 41 | #include "tools/CrashHandler.h" |
| 42 | #include "tools/ProcStats.h" |
| 43 | #include "tools/Stats.h" |
| 44 | #include "tools/flags/CommonFlags.h" |
| 45 | #include "tools/flags/CommonFlagsConfig.h" |
| 46 | #include "tools/ios_utils.h" |
| 47 | #include "tools/trace/EventTracingPriv.h" |
| 48 | #include "tools/trace/SkDebugfTracer.h" |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 49 | |
Hal Canary | 0f66681 | 2018-03-22 15:21:12 -0400 | [diff] [blame] | 50 | #ifdef SK_XML |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 51 | #include "experimental/svg/model/SkSVGDOM.h" |
Hal Canary | 0f66681 | 2018-03-22 15:21:12 -0400 | [diff] [blame] | 52 | #endif // SK_XML |
| 53 | |
Leon Scroggins III | 87caae6 | 2020-05-04 10:02:45 -0400 | [diff] [blame] | 54 | #ifdef SK_ENABLE_ANDROID_UTILS |
| 55 | #include "bench/BitmapRegionDecoderBench.h" |
| 56 | #include "client_utils/android/BitmapRegionDecoder.h" |
| 57 | #endif |
| 58 | |
Adlai Holler | 684838f | 2020-05-12 10:41:04 -0400 | [diff] [blame] | 59 | #include <cinttypes> |
bungeman | 60e0fee | 2015-08-26 05:15:46 -0700 | [diff] [blame] | 60 | #include <stdlib.h> |
John Stiles | fbd050b | 2020-08-03 13:21:46 -0400 | [diff] [blame] | 61 | #include <memory> |
Mike Klein | 03141d2 | 2017-10-30 11:57:15 -0400 | [diff] [blame] | 62 | #include <thread> |
bungeman | 60e0fee | 2015-08-26 05:15:46 -0700 | [diff] [blame] | 63 | |
Mike Reed | c928fe2 | 2017-06-05 10:20:31 -0400 | [diff] [blame] | 64 | extern bool gSkForceRasterPipelineBlitter; |
Mike Klein | 2a57e79 | 2020-01-14 12:47:52 -0600 | [diff] [blame] | 65 | extern bool gUseSkVMBlitter; |
Mike Klein | ea4459d | 2020-01-16 13:05:04 -0600 | [diff] [blame] | 66 | extern bool gSkVMJITViaDylib; |
Mike Reed | c928fe2 | 2017-06-05 10:20:31 -0400 | [diff] [blame] | 67 | |
Mike Klein | 8f11d4d | 2018-01-24 12:42:55 -0500 | [diff] [blame] | 68 | #ifndef SK_BUILD_FOR_WIN |
scroggo | 38ce0a7 | 2016-01-07 07:28:47 -0800 | [diff] [blame] | 69 | #include <unistd.h> |
Brian Salomon | 032aaae | 2018-03-23 16:10:36 -0400 | [diff] [blame] | 70 | |
scroggo | 38ce0a7 | 2016-01-07 07:28:47 -0800 | [diff] [blame] | 71 | #endif |
| 72 | |
Robert Phillips | 00f78de | 2020-07-01 16:09:43 -0400 | [diff] [blame] | 73 | #include "include/gpu/GrDirectContext.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 74 | #include "src/gpu/GrCaps.h" |
| 75 | #include "src/gpu/GrContextPriv.h" |
| 76 | #include "src/gpu/SkGr.h" |
| 77 | #include "src/gpu/gl/GrGLDefines.h" |
| 78 | #include "src/gpu/gl/GrGLGpu.h" |
| 79 | #include "src/gpu/gl/GrGLUtil.h" |
| 80 | #include "tools/gpu/GrContextFactory.h" |
Brian Salomon | 032aaae | 2018-03-23 16:10:36 -0400 | [diff] [blame] | 81 | |
Brian Osman | c7ad40f | 2018-05-31 14:27:17 -0400 | [diff] [blame] | 82 | using sk_gpu_test::ContextInfo; |
| 83 | using sk_gpu_test::GrContextFactory; |
| 84 | using sk_gpu_test::TestContext; |
Brian Salomon | 032aaae | 2018-03-23 16:10:36 -0400 | [diff] [blame] | 85 | |
Brian Osman | c7ad40f | 2018-05-31 14:27:17 -0400 | [diff] [blame] | 86 | GrContextOptions grContextOpts; |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 87 | |
reed | 5324978 | 2014-10-10 09:09:52 -0700 | [diff] [blame] | 88 | static const int kAutoTuneLoops = 0; |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 89 | |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 90 | static SkString loops_help_txt() { |
| 91 | SkString help; |
| 92 | help.printf("Number of times to run each bench. Set this to %d to auto-" |
| 93 | "tune for each bench. Timings are only reported when auto-tuning.", |
| 94 | kAutoTuneLoops); |
| 95 | return help; |
| 96 | } |
| 97 | |
cdalton | e1b8958 | 2015-06-25 19:17:08 -0700 | [diff] [blame] | 98 | static SkString to_string(int n) { |
| 99 | SkString str; |
| 100 | str.appendS32(n); |
| 101 | return str; |
| 102 | } |
| 103 | |
Mike Klein | ac8f443 | 2019-07-01 10:15:32 -0500 | [diff] [blame] | 104 | static DEFINE_int(loops, kAutoTuneLoops, loops_help_txt().c_str()); |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 105 | |
Mike Klein | 5b3f343 | 2019-03-21 11:42:21 -0500 | [diff] [blame] | 106 | static DEFINE_int(samples, 10, "Number of samples to measure for each bench."); |
| 107 | static DEFINE_int(ms, 0, "If >0, run each bench for this many ms instead of obeying --samples."); |
| 108 | static DEFINE_int(overheadLoops, 100000, "Loops to estimate timer overhead."); |
Mike Klein | 84836b7 | 2019-03-21 11:31:36 -0500 | [diff] [blame] | 109 | static DEFINE_double(overheadGoal, 0.0001, |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 110 | "Loop until timer overhead is at most this fraction of our measurments."); |
Mike Klein | 84836b7 | 2019-03-21 11:31:36 -0500 | [diff] [blame] | 111 | static DEFINE_double(gpuMs, 5, "Target bench time in millseconds for GPU."); |
Mike Klein | 5b3f343 | 2019-03-21 11:42:21 -0500 | [diff] [blame] | 112 | static DEFINE_int(gpuFrameLag, 5, |
Mike Klein | 84836b7 | 2019-03-21 11:31:36 -0500 | [diff] [blame] | 113 | "If unknown, estimated maximum number of frames GPU allows to lag."); |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 114 | |
Mike Klein | 84836b7 | 2019-03-21 11:31:36 -0500 | [diff] [blame] | 115 | static DEFINE_string(outResultsFile, "", "If given, write results here as JSON."); |
Mike Klein | 5b3f343 | 2019-03-21 11:42:21 -0500 | [diff] [blame] | 116 | static DEFINE_int(maxCalibrationAttempts, 3, |
mtklein | 55b0ffc | 2014-07-17 08:38:23 -0700 | [diff] [blame] | 117 | "Try up to this many times to guess loops for a bench, or skip the bench."); |
Mike Klein | 5b3f343 | 2019-03-21 11:42:21 -0500 | [diff] [blame] | 118 | static DEFINE_int(maxLoops, 1000000, "Never run a bench more times than this."); |
Mike Klein | 84836b7 | 2019-03-21 11:31:36 -0500 | [diff] [blame] | 119 | static DEFINE_string(clip, "0,0,1000,1000", "Clip for SKPs."); |
| 120 | static DEFINE_string(scales, "1.0", "Space-separated scales for SKPs."); |
| 121 | static DEFINE_string(zoom, "1.0,0", |
| 122 | "Comma-separated zoomMax,zoomPeriodMs factors for a periodic SKP zoom " |
| 123 | "function that ping-pongs between 1.0 and zoomMax."); |
| 124 | static DEFINE_bool(bbh, true, "Build a BBH for SKPs?"); |
Mike Klein | 84836b7 | 2019-03-21 11:31:36 -0500 | [diff] [blame] | 125 | static DEFINE_bool(mpd, true, "Use MultiPictureDraw for the SKPs?"); |
| 126 | static DEFINE_bool(loopSKP, true, "Loop SKPs like we do for micro benches?"); |
Mike Klein | 5b3f343 | 2019-03-21 11:42:21 -0500 | [diff] [blame] | 127 | static DEFINE_int(flushEvery, 10, "Flush --outResultsFile every Nth run."); |
Mike Klein | 84836b7 | 2019-03-21 11:31:36 -0500 | [diff] [blame] | 128 | static DEFINE_bool(gpuStats, false, "Print GPU stats after each gpu benchmark?"); |
| 129 | static DEFINE_bool(gpuStatsDump, false, "Dump GPU states after each benchmark to json"); |
| 130 | static DEFINE_bool(keepAlive, false, "Print a message every so often so that we don't time out"); |
| 131 | static DEFINE_bool(csv, false, "Print status in CSV format"); |
| 132 | static DEFINE_string(sourceType, "", |
mtklein | 65dfd2f | 2016-02-03 10:40:54 -0800 | [diff] [blame] | 133 | "Apply usual --match rules to source type: bench, gm, skp, image, etc."); |
Mike Klein | 84836b7 | 2019-03-21 11:31:36 -0500 | [diff] [blame] | 134 | static DEFINE_string(benchType, "", |
| 135 | "Apply usual --match rules to bench type: micro, recording, " |
| 136 | "piping, playback, skcodec, etc."); |
mtklein | 65dfd2f | 2016-02-03 10:40:54 -0800 | [diff] [blame] | 137 | |
Mike Klein | 84836b7 | 2019-03-21 11:31:36 -0500 | [diff] [blame] | 138 | static DEFINE_bool(forceRasterPipeline, false, "sets gSkForceRasterPipelineBlitter"); |
Mike Klein | ea4459d | 2020-01-16 13:05:04 -0600 | [diff] [blame] | 139 | static DEFINE_bool(skvm, false, "sets gUseSkVMBlitter and gSkVMJITViaDylib"); |
Mike Reed | c928fe2 | 2017-06-05 10:20:31 -0400 | [diff] [blame] | 140 | |
Mike Klein | 19fb397 | 2019-03-21 13:08:08 -0500 | [diff] [blame] | 141 | static DEFINE_bool2(pre_log, p, false, |
| 142 | "Log before running each test. May be incomprehensible when threading"); |
| 143 | |
Leon Scroggins III | 1ff0706 | 2020-07-27 14:52:19 -0400 | [diff] [blame] | 144 | static DEFINE_bool(cpu, true, "Run CPU-bound work?"); |
| 145 | static DEFINE_bool(gpu, true, "Run GPU-bound work?"); |
Mike Klein | 629f5fc | 2019-03-22 14:55:19 -0500 | [diff] [blame] | 146 | static DEFINE_bool(dryRun, false, |
| 147 | "just print the tests that would be run, without actually running them."); |
| 148 | static DEFINE_string(images, "", |
| 149 | "List of images and/or directories to decode. A directory with no images" |
| 150 | " is treated as a fatal error."); |
| 151 | static DEFINE_bool(simpleCodec, false, |
| 152 | "Runs of a subset of the codec tests, always N32, Premul or Opaque"); |
| 153 | |
Mike Klein | c6142d8 | 2019-03-25 10:54:59 -0500 | [diff] [blame] | 154 | static DEFINE_string2(match, m, nullptr, |
| 155 | "[~][^]substring[$] [...] of name to run.\n" |
| 156 | "Multiple matches may be separated by spaces.\n" |
| 157 | "~ causes a matching name to always be skipped\n" |
| 158 | "^ requires the start of the name to match\n" |
| 159 | "$ requires the end of the name to match\n" |
| 160 | "^ and $ requires an exact match\n" |
| 161 | "If a name does not match any list entry,\n" |
| 162 | "it is skipped unless some list entry starts with ~"); |
| 163 | |
| 164 | static DEFINE_bool2(quiet, q, false, "if true, don't print status updates."); |
| 165 | static DEFINE_bool2(verbose, v, false, "enable verbose output from the test driver."); |
| 166 | |
| 167 | |
| 168 | static DEFINE_string(skps, "skps", "Directory to read skps from."); |
| 169 | static DEFINE_string(svgs, "", "Directory to read SVGs from, or a single SVG file."); |
Hal Canary | 5dfefa2 | 2019-10-24 13:52:17 -0400 | [diff] [blame] | 170 | static DEFINE_string(texttraces, "", "Directory to read TextBlobTrace files from."); |
Mike Klein | c6142d8 | 2019-03-25 10:54:59 -0500 | [diff] [blame] | 171 | |
| 172 | static DEFINE_int_2(threads, j, -1, |
| 173 | "Run threadsafe tests on a threadpool with this many extra threads, " |
| 174 | "defaulting to one extra thread per core."); |
| 175 | |
| 176 | static DEFINE_string2(writePath, w, "", "If set, write bitmaps here as .pngs."); |
| 177 | |
| 178 | static DEFINE_string(key, "", |
| 179 | "Space-separated key/value pairs to add to JSON identifying this builder."); |
| 180 | static DEFINE_string(properties, "", |
| 181 | "Space-separated key/value pairs to add to JSON identifying this run."); |
| 182 | |
Mike Klein | ee25423 | 2019-03-28 08:32:14 -0500 | [diff] [blame] | 183 | static DEFINE_bool(purgeBetweenBenches, false, |
| 184 | "Call SkGraphics::PurgeAllCaches() between each benchmark?"); |
| 185 | |
mtklein | bbba168 | 2015-10-28 11:36:30 -0700 | [diff] [blame] | 186 | static double now_ms() { return SkTime::GetNSecs() * 1e-6; } |
| 187 | |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 188 | static SkString humanize(double ms) { |
Adlai Holler | 684838f | 2020-05-12 10:41:04 -0400 | [diff] [blame] | 189 | if (FLAGS_verbose) return SkStringPrintf("%" PRIu64, (uint64_t)(ms*1e6)); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 190 | return HumanizeMs(ms); |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 191 | } |
mtklein | 55b0ffc | 2014-07-17 08:38:23 -0700 | [diff] [blame] | 192 | #define HUMANIZE(ms) humanize(ms).c_str() |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 193 | |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 194 | bool Target::init(SkImageInfo info, Benchmark* bench) { |
| 195 | if (Benchmark::kRaster_Backend == config.backend) { |
reed | e8f3062 | 2016-03-23 18:59:25 -0700 | [diff] [blame] | 196 | this->surface = SkSurface::MakeRaster(info); |
| 197 | if (!this->surface) { |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 198 | return false; |
| 199 | } |
| 200 | } |
| 201 | return true; |
| 202 | } |
| 203 | bool Target::capturePixels(SkBitmap* bmp) { |
tomhudson | 75a0ebb | 2015-03-27 12:11:44 -0700 | [diff] [blame] | 204 | SkCanvas* canvas = this->getCanvas(); |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 205 | if (!canvas) { |
| 206 | return false; |
| 207 | } |
Mike Reed | 12e946b | 2017-04-17 10:53:29 -0400 | [diff] [blame] | 208 | bmp->allocPixels(canvas->imageInfo()); |
| 209 | if (!canvas->readPixels(*bmp, 0, 0)) { |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 210 | SkDebugf("Can't read canvas pixels.\n"); |
| 211 | return false; |
| 212 | } |
| 213 | return true; |
| 214 | } |
| 215 | |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 216 | struct GPUTarget : public Target { |
Brian Salomon | 0b4d8aa | 2017-10-11 15:34:27 -0400 | [diff] [blame] | 217 | explicit GPUTarget(const Config& c) : Target(c) {} |
| 218 | ContextInfo contextInfo; |
| 219 | std::unique_ptr<GrContextFactory> factory; |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 220 | |
Greg Daniel | 5ed3c11 | 2020-06-18 15:59:17 -0400 | [diff] [blame] | 221 | ~GPUTarget() override { |
| 222 | // For Vulkan we need to release all our refs to the GrContext before destroy the vulkan |
| 223 | // context which happens at the end of this destructor. Thus we need to release the surface |
| 224 | // here which holds a ref to the GrContext. |
| 225 | surface.reset(); |
| 226 | } |
| 227 | |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 228 | void setup() override { |
Brian Salomon | 0b4d8aa | 2017-10-11 15:34:27 -0400 | [diff] [blame] | 229 | this->contextInfo.testContext()->makeCurrent(); |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 230 | // Make sure we're done with whatever came before. |
Brian Salomon | 0b4d8aa | 2017-10-11 15:34:27 -0400 | [diff] [blame] | 231 | this->contextInfo.testContext()->finish(); |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 232 | } |
| 233 | void endTiming() override { |
Brian Salomon | 0b4d8aa | 2017-10-11 15:34:27 -0400 | [diff] [blame] | 234 | if (this->contextInfo.testContext()) { |
Robert Phillips | 00f78de | 2020-07-01 16:09:43 -0400 | [diff] [blame] | 235 | this->contextInfo.testContext()->flushAndWaitOnSync(contextInfo.directContext()); |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 236 | } |
| 237 | } |
Brian Salomon | 0b4d8aa | 2017-10-11 15:34:27 -0400 | [diff] [blame] | 238 | void fence() override { this->contextInfo.testContext()->finish(); } |
mtklein | d75c466 | 2015-04-30 07:11:22 -0700 | [diff] [blame] | 239 | |
cdalton | d416a5b | 2015-06-23 13:23:44 -0700 | [diff] [blame] | 240 | bool needsFrameTiming(int* maxFrameLag) const override { |
Brian Salomon | 0b4d8aa | 2017-10-11 15:34:27 -0400 | [diff] [blame] | 241 | if (!this->contextInfo.testContext()->getMaxGpuFrameLag(maxFrameLag)) { |
cdalton | d416a5b | 2015-06-23 13:23:44 -0700 | [diff] [blame] | 242 | // Frame lag is unknown. |
| 243 | *maxFrameLag = FLAGS_gpuFrameLag; |
| 244 | } |
| 245 | return true; |
| 246 | } |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 247 | bool init(SkImageInfo info, Benchmark* bench) override { |
Brian Salomon | 0b4d8aa | 2017-10-11 15:34:27 -0400 | [diff] [blame] | 248 | GrContextOptions options = grContextOpts; |
| 249 | bench->modifyGrContextOptions(&options); |
John Stiles | fbd050b | 2020-08-03 13:21:46 -0400 | [diff] [blame] | 250 | this->factory = std::make_unique<GrContextFactory>(options); |
bsalomon | afcd7cd | 2015-08-31 12:39:41 -0700 | [diff] [blame] | 251 | uint32_t flags = this->config.useDFText ? SkSurfaceProps::kUseDeviceIndependentFonts_Flag : |
| 252 | 0; |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 253 | SkSurfaceProps props(flags, SkSurfaceProps::kLegacyFontHost_InitType); |
Brian Salomon | 0b4d8aa | 2017-10-11 15:34:27 -0400 | [diff] [blame] | 254 | this->surface = SkSurface::MakeRenderTarget( |
| 255 | this->factory->get(this->config.ctxType, this->config.ctxOverrides), |
| 256 | SkBudgeted::kNo, info, this->config.samples, &props); |
| 257 | this->contextInfo = |
| 258 | this->factory->getContextInfo(this->config.ctxType, this->config.ctxOverrides); |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 259 | if (!this->surface.get()) { |
| 260 | return false; |
| 261 | } |
Brian Salomon | 0b4d8aa | 2017-10-11 15:34:27 -0400 | [diff] [blame] | 262 | if (!this->contextInfo.testContext()->fenceSyncSupport()) { |
cdalton | d416a5b | 2015-06-23 13:23:44 -0700 | [diff] [blame] | 263 | SkDebugf("WARNING: GL context for config \"%s\" does not support fence sync. " |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 264 | "Timings might not be accurate.\n", this->config.name.c_str()); |
cdalton | d416a5b | 2015-06-23 13:23:44 -0700 | [diff] [blame] | 265 | } |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 266 | return true; |
| 267 | } |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 268 | void fillOptions(NanoJSONResultsWriter& log) override { |
Brian Salomon | f4ba4ec | 2020-03-19 15:54:28 -0400 | [diff] [blame] | 269 | #ifdef SK_GL |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 270 | const GrGLubyte* version; |
Greg Daniel | bdf12ad | 2018-10-12 09:31:11 -0400 | [diff] [blame] | 271 | if (this->contextInfo.backend() == GrBackendApi::kOpenGL) { |
Brian Salomon | 032aaae | 2018-03-23 16:10:36 -0400 | [diff] [blame] | 272 | const GrGLInterface* gl = |
Robert Phillips | 00f78de | 2020-07-01 16:09:43 -0400 | [diff] [blame] | 273 | static_cast<GrGLGpu*>(this->contextInfo.directContext()->priv().getGpu()) |
Brian Salomon | 032aaae | 2018-03-23 16:10:36 -0400 | [diff] [blame] | 274 | ->glInterface(); |
bsalomon | c869932 | 2016-05-11 11:55:36 -0700 | [diff] [blame] | 275 | GR_GL_CALL_RET(gl, version, GetString(GR_GL_VERSION)); |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 276 | log.appendString("GL_VERSION", (const char*)(version)); |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 277 | |
bsalomon | c869932 | 2016-05-11 11:55:36 -0700 | [diff] [blame] | 278 | GR_GL_CALL_RET(gl, version, GetString(GR_GL_RENDERER)); |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 279 | log.appendString("GL_RENDERER", (const char*) version); |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 280 | |
bsalomon | c869932 | 2016-05-11 11:55:36 -0700 | [diff] [blame] | 281 | GR_GL_CALL_RET(gl, version, GetString(GR_GL_VENDOR)); |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 282 | log.appendString("GL_VENDOR", (const char*) version); |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 283 | |
bsalomon | c869932 | 2016-05-11 11:55:36 -0700 | [diff] [blame] | 284 | GR_GL_CALL_RET(gl, version, GetString(GR_GL_SHADING_LANGUAGE_VERSION)); |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 285 | log.appendString("GL_SHADING_LANGUAGE_VERSION", (const char*) version); |
bsalomon | c869932 | 2016-05-11 11:55:36 -0700 | [diff] [blame] | 286 | } |
Brian Salomon | f4ba4ec | 2020-03-19 15:54:28 -0400 | [diff] [blame] | 287 | #endif |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 288 | } |
Brian Salomon | 0b4d8aa | 2017-10-11 15:34:27 -0400 | [diff] [blame] | 289 | |
| 290 | void dumpStats() override { |
Robert Phillips | 00f78de | 2020-07-01 16:09:43 -0400 | [diff] [blame] | 291 | auto context = this->contextInfo.directContext(); |
| 292 | |
| 293 | context->priv().printCacheStats(); |
| 294 | context->priv().printGpuStats(); |
| 295 | context->priv().printContextStats(); |
Brian Salomon | 0b4d8aa | 2017-10-11 15:34:27 -0400 | [diff] [blame] | 296 | } |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 297 | }; |
mtklein | d75c466 | 2015-04-30 07:11:22 -0700 | [diff] [blame] | 298 | |
tomhudson | 75a0ebb | 2015-03-27 12:11:44 -0700 | [diff] [blame] | 299 | static double time(int loops, Benchmark* bench, Target* target) { |
| 300 | SkCanvas* canvas = target->getCanvas(); |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 301 | if (canvas) { |
| 302 | canvas->clear(SK_ColorWHITE); |
| 303 | } |
joshualitt | 8a6697a | 2015-09-30 12:11:07 -0700 | [diff] [blame] | 304 | bench->preDraw(canvas); |
mtklein | bbba168 | 2015-10-28 11:36:30 -0700 | [diff] [blame] | 305 | double start = now_ms(); |
tomhudson | 75a0ebb | 2015-03-27 12:11:44 -0700 | [diff] [blame] | 306 | canvas = target->beginTiming(canvas); |
| 307 | bench->draw(loops, canvas); |
tomhudson | 75a0ebb | 2015-03-27 12:11:44 -0700 | [diff] [blame] | 308 | target->endTiming(); |
mtklein | bbba168 | 2015-10-28 11:36:30 -0700 | [diff] [blame] | 309 | double elapsed = now_ms() - start; |
joshualitt | 8a6697a | 2015-09-30 12:11:07 -0700 | [diff] [blame] | 310 | bench->postDraw(canvas); |
mtklein | bbba168 | 2015-10-28 11:36:30 -0700 | [diff] [blame] | 311 | return elapsed; |
mtklein | bb6a028 | 2014-07-01 08:43:42 -0700 | [diff] [blame] | 312 | } |
| 313 | |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 314 | static double estimate_timer_overhead() { |
| 315 | double overhead = 0; |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 316 | for (int i = 0; i < FLAGS_overheadLoops; i++) { |
mtklein | bbba168 | 2015-10-28 11:36:30 -0700 | [diff] [blame] | 317 | double start = now_ms(); |
| 318 | overhead += now_ms() - start; |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 319 | } |
| 320 | return overhead / FLAGS_overheadLoops; |
| 321 | } |
| 322 | |
reed | 5324978 | 2014-10-10 09:09:52 -0700 | [diff] [blame] | 323 | static int detect_forever_loops(int loops) { |
| 324 | // look for a magic run-forever value |
| 325 | if (loops < 0) { |
| 326 | loops = SK_MaxS32; |
| 327 | } |
| 328 | return loops; |
| 329 | } |
| 330 | |
mtklein | 55b0ffc | 2014-07-17 08:38:23 -0700 | [diff] [blame] | 331 | static int clamp_loops(int loops) { |
| 332 | if (loops < 1) { |
mtklein | 527930f | 2014-11-06 08:04:34 -0800 | [diff] [blame] | 333 | SkDebugf("ERROR: clamping loops from %d to 1. " |
| 334 | "There's probably something wrong with the bench.\n", loops); |
mtklein | 55b0ffc | 2014-07-17 08:38:23 -0700 | [diff] [blame] | 335 | return 1; |
| 336 | } |
| 337 | if (loops > FLAGS_maxLoops) { |
| 338 | SkDebugf("WARNING: clamping loops from %d to FLAGS_maxLoops, %d.\n", loops, FLAGS_maxLoops); |
| 339 | return FLAGS_maxLoops; |
| 340 | } |
| 341 | return loops; |
| 342 | } |
| 343 | |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 344 | static bool write_canvas_png(Target* target, const SkString& filename) { |
| 345 | |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 346 | if (filename.isEmpty()) { |
| 347 | return false; |
| 348 | } |
tomhudson | 75a0ebb | 2015-03-27 12:11:44 -0700 | [diff] [blame] | 349 | if (target->getCanvas() && |
| 350 | kUnknown_SkColorType == target->getCanvas()->imageInfo().colorType()) { |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 351 | return false; |
| 352 | } |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 353 | |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 354 | SkBitmap bmp; |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 355 | |
| 356 | if (!target->capturePixels(&bmp)) { |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 357 | return false; |
| 358 | } |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 359 | |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 360 | SkString dir = SkOSPath::Dirname(filename.c_str()); |
| 361 | if (!sk_mkdir(dir.c_str())) { |
| 362 | SkDebugf("Can't make dir %s.\n", dir.c_str()); |
| 363 | return false; |
| 364 | } |
| 365 | SkFILEWStream stream(filename.c_str()); |
| 366 | if (!stream.isValid()) { |
| 367 | SkDebugf("Can't write %s.\n", filename.c_str()); |
| 368 | return false; |
| 369 | } |
Hal Canary | db68301 | 2016-11-23 08:55:18 -0700 | [diff] [blame] | 370 | if (!SkEncodeImage(&stream, bmp, SkEncodedImageFormat::kPNG, 100)) { |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 371 | SkDebugf("Can't encode a PNG.\n"); |
| 372 | return false; |
| 373 | } |
| 374 | return true; |
| 375 | } |
| 376 | |
| 377 | static int kFailedLoops = -2; |
cdalton | e1b8958 | 2015-06-25 19:17:08 -0700 | [diff] [blame] | 378 | static int setup_cpu_bench(const double overhead, Target* target, Benchmark* bench) { |
mtklein | bb6a028 | 2014-07-01 08:43:42 -0700 | [diff] [blame] | 379 | // First figure out approximately how many loops of bench it takes to make overhead negligible. |
mtklein | 2069e22 | 2014-08-04 13:57:39 -0700 | [diff] [blame] | 380 | double bench_plus_overhead = 0.0; |
mtklein | 55b0ffc | 2014-07-17 08:38:23 -0700 | [diff] [blame] | 381 | int round = 0; |
cdalton | b402296 | 2015-06-25 10:51:56 -0700 | [diff] [blame] | 382 | int loops = bench->calculateLoops(FLAGS_loops); |
| 383 | if (kAutoTuneLoops == loops) { |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 384 | while (bench_plus_overhead < overhead) { |
| 385 | if (round++ == FLAGS_maxCalibrationAttempts) { |
| 386 | SkDebugf("WARNING: Can't estimate loops for %s (%s vs. %s); skipping.\n", |
mtklein | 9628905 | 2014-09-10 12:05:59 -0700 | [diff] [blame] | 387 | bench->getUniqueName(), HUMANIZE(bench_plus_overhead), HUMANIZE(overhead)); |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 388 | return kFailedLoops; |
| 389 | } |
tomhudson | 75a0ebb | 2015-03-27 12:11:44 -0700 | [diff] [blame] | 390 | bench_plus_overhead = time(1, bench, target); |
mtklein | 55b0ffc | 2014-07-17 08:38:23 -0700 | [diff] [blame] | 391 | } |
mtklein | 2069e22 | 2014-08-04 13:57:39 -0700 | [diff] [blame] | 392 | } |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 393 | |
mtklein | bb6a028 | 2014-07-01 08:43:42 -0700 | [diff] [blame] | 394 | // Later we'll just start and stop the timer once but loop N times. |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 395 | // We'll pick N to make timer overhead negligible: |
| 396 | // |
mtklein | bb6a028 | 2014-07-01 08:43:42 -0700 | [diff] [blame] | 397 | // overhead |
| 398 | // ------------------------- < FLAGS_overheadGoal |
| 399 | // overhead + N * Bench Time |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 400 | // |
Hal Canary | 55325b7 | 2017-01-03 10:36:17 -0500 | [diff] [blame] | 401 | // where bench_plus_overhead ~=~ overhead + Bench Time. |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 402 | // |
| 403 | // Doing some math, we get: |
| 404 | // |
mtklein | bb6a028 | 2014-07-01 08:43:42 -0700 | [diff] [blame] | 405 | // (overhead / FLAGS_overheadGoal) - overhead |
| 406 | // ------------------------------------------ < N |
| 407 | // bench_plus_overhead - overhead) |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 408 | // |
| 409 | // Luckily, this also works well in practice. :) |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 410 | if (kAutoTuneLoops == loops) { |
| 411 | const double numer = overhead / FLAGS_overheadGoal - overhead; |
| 412 | const double denom = bench_plus_overhead - overhead; |
| 413 | loops = (int)ceil(numer / denom); |
reed | 5324978 | 2014-10-10 09:09:52 -0700 | [diff] [blame] | 414 | loops = clamp_loops(loops); |
| 415 | } else { |
| 416 | loops = detect_forever_loops(loops); |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 417 | } |
mtklein | bb6a028 | 2014-07-01 08:43:42 -0700 | [diff] [blame] | 418 | |
mtklein | bb6a028 | 2014-07-01 08:43:42 -0700 | [diff] [blame] | 419 | return loops; |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 420 | } |
| 421 | |
cdalton | e1b8958 | 2015-06-25 19:17:08 -0700 | [diff] [blame] | 422 | static int setup_gpu_bench(Target* target, Benchmark* bench, int maxGpuFrameLag) { |
mtklein | bb6a028 | 2014-07-01 08:43:42 -0700 | [diff] [blame] | 423 | // First, figure out how many loops it'll take to get a frame up to FLAGS_gpuMs. |
cdalton | b402296 | 2015-06-25 10:51:56 -0700 | [diff] [blame] | 424 | int loops = bench->calculateLoops(FLAGS_loops); |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 425 | if (kAutoTuneLoops == loops) { |
| 426 | loops = 1; |
mtklein | a189ccd | 2014-07-14 12:28:47 -0700 | [diff] [blame] | 427 | double elapsed = 0; |
| 428 | do { |
mtklein | 527930f | 2014-11-06 08:04:34 -0800 | [diff] [blame] | 429 | if (1<<30 == loops) { |
| 430 | // We're about to wrap. Something's wrong with the bench. |
| 431 | loops = 0; |
| 432 | break; |
| 433 | } |
mtklein | a189ccd | 2014-07-14 12:28:47 -0700 | [diff] [blame] | 434 | loops *= 2; |
| 435 | // If the GPU lets frames lag at all, we need to make sure we're timing |
cdalton | d416a5b | 2015-06-23 13:23:44 -0700 | [diff] [blame] | 436 | // _this_ round, not still timing last round. |
| 437 | for (int i = 0; i < maxGpuFrameLag; i++) { |
tomhudson | 75a0ebb | 2015-03-27 12:11:44 -0700 | [diff] [blame] | 438 | elapsed = time(loops, bench, target); |
mtklein | a189ccd | 2014-07-14 12:28:47 -0700 | [diff] [blame] | 439 | } |
| 440 | } while (elapsed < FLAGS_gpuMs); |
mtklein | bb6a028 | 2014-07-01 08:43:42 -0700 | [diff] [blame] | 441 | |
mtklein | a189ccd | 2014-07-14 12:28:47 -0700 | [diff] [blame] | 442 | // We've overshot at least a little. Scale back linearly. |
| 443 | loops = (int)ceil(loops * FLAGS_gpuMs / elapsed); |
reed | 5324978 | 2014-10-10 09:09:52 -0700 | [diff] [blame] | 444 | loops = clamp_loops(loops); |
mtklein | bb6a028 | 2014-07-01 08:43:42 -0700 | [diff] [blame] | 445 | |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 446 | // Make sure we're not still timing our calibration. |
| 447 | target->fence(); |
reed | 5324978 | 2014-10-10 09:09:52 -0700 | [diff] [blame] | 448 | } else { |
| 449 | loops = detect_forever_loops(loops); |
mtklein | a189ccd | 2014-07-14 12:28:47 -0700 | [diff] [blame] | 450 | } |
mtklein | bb6a028 | 2014-07-01 08:43:42 -0700 | [diff] [blame] | 451 | // Pretty much the same deal as the calibration: do some warmup to make |
| 452 | // sure we're timing steady-state pipelined frames. |
Brian Osman | 0177698 | 2017-10-10 15:41:03 -0400 | [diff] [blame] | 453 | for (int i = 0; i < maxGpuFrameLag; i++) { |
tomhudson | 75a0ebb | 2015-03-27 12:11:44 -0700 | [diff] [blame] | 454 | time(loops, bench, target); |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 455 | } |
mtklein | bb6a028 | 2014-07-01 08:43:42 -0700 | [diff] [blame] | 456 | |
mtklein | bb6a028 | 2014-07-01 08:43:42 -0700 | [diff] [blame] | 457 | return loops; |
| 458 | } |
mtklein | bb6a028 | 2014-07-01 08:43:42 -0700 | [diff] [blame] | 459 | |
Brian Salomon | 6405e71 | 2017-03-20 08:54:16 -0400 | [diff] [blame] | 460 | #define kBogusContextType GrContextFactory::kGL_ContextType |
csmartdalton | e812d49 | 2017-02-21 12:36:05 -0700 | [diff] [blame] | 461 | #define kBogusContextOverrides GrContextFactory::ContextOverrides::kNone |
bsalomon | c255337 | 2014-07-22 13:09:05 -0700 | [diff] [blame] | 462 | |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 463 | static void create_config(const SkCommandLineConfig* config, SkTArray<Config>* configs) { |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 464 | if (const auto* gpuConfig = config->asConfigGpu()) { |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 465 | if (!FLAGS_gpu) { |
| 466 | SkDebugf("Skipping config '%s' as requested.\n", config->getTag().c_str()); |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 467 | return; |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 468 | } |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 469 | |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 470 | const auto ctxType = gpuConfig->getContextType(); |
csmartdalton | e812d49 | 2017-02-21 12:36:05 -0700 | [diff] [blame] | 471 | const auto ctxOverrides = gpuConfig->getContextOverrides(); |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 472 | const auto sampleCount = gpuConfig->getSamples(); |
Greg Daniel | 81e7bf8 | 2017-07-19 14:47:42 -0400 | [diff] [blame] | 473 | const auto colorType = gpuConfig->getColorType(); |
| 474 | auto colorSpace = gpuConfig->getColorSpace(); |
Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 475 | if (gpuConfig->getSurfType() != SkCommandLineConfigGpu::SurfType::kDefault) { |
| 476 | SkDebugf("This tool only supports the default surface type."); |
| 477 | return; |
| 478 | } |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 479 | |
Brian Salomon | 0b4d8aa | 2017-10-11 15:34:27 -0400 | [diff] [blame] | 480 | GrContextFactory factory(grContextOpts); |
Robert Phillips | f028810 | 2020-07-06 13:45:34 -0400 | [diff] [blame] | 481 | if (const auto ctx = factory.get(ctxType, ctxOverrides)) { |
Greg Daniel | 6fa62e2 | 2019-08-07 15:52:37 -0400 | [diff] [blame] | 482 | GrBackendFormat format = ctx->defaultBackendFormat(colorType, GrRenderable::kYes); |
Brian Salomon | bdecacf | 2018-02-02 20:32:49 -0500 | [diff] [blame] | 483 | int supportedSampleCount = |
Greg Daniel | 6fa62e2 | 2019-08-07 15:52:37 -0400 | [diff] [blame] | 484 | ctx->priv().caps()->getRenderTargetSampleCount(sampleCount, format); |
Greg Daniel | 81e7bf8 | 2017-07-19 14:47:42 -0400 | [diff] [blame] | 485 | if (sampleCount != supportedSampleCount) { |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 486 | SkDebugf("Configuration '%s' sample count %d is not a supported sample count.\n", |
| 487 | config->getTag().c_str(), sampleCount); |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 488 | return; |
| 489 | } |
| 490 | } else { |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 491 | SkDebugf("No context was available matching config '%s'.\n", |
| 492 | config->getTag().c_str()); |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 493 | return; |
| 494 | } |
| 495 | |
| 496 | Config target = { |
kkinnunen | d4e1c35 | 2016-03-01 23:41:26 -0800 | [diff] [blame] | 497 | gpuConfig->getTag(), |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 498 | Benchmark::kGPU_Backend, |
Greg Daniel | 81e7bf8 | 2017-07-19 14:47:42 -0400 | [diff] [blame] | 499 | colorType, |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 500 | kPremul_SkAlphaType, |
Greg Daniel | 81e7bf8 | 2017-07-19 14:47:42 -0400 | [diff] [blame] | 501 | sk_ref_sp(colorSpace), |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 502 | sampleCount, |
| 503 | ctxType, |
csmartdalton | e812d49 | 2017-02-21 12:36:05 -0700 | [diff] [blame] | 504 | ctxOverrides, |
kkinnunen | d4e1c35 | 2016-03-01 23:41:26 -0800 | [diff] [blame] | 505 | gpuConfig->getUseDIText() |
| 506 | }; |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 507 | |
| 508 | configs->push_back(target); |
| 509 | return; |
| 510 | } |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 511 | |
brianosman | b109b8c | 2016-06-16 13:03:24 -0700 | [diff] [blame] | 512 | #define CPU_CONFIG(name, backend, color, alpha, colorSpace) \ |
| 513 | if (config->getTag().equals(#name)) { \ |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 514 | if (!FLAGS_cpu) { \ |
| 515 | SkDebugf("Skipping config '%s' as requested.\n", \ |
| 516 | config->getTag().c_str()); \ |
| 517 | return; \ |
| 518 | } \ |
brianosman | b109b8c | 2016-06-16 13:03:24 -0700 | [diff] [blame] | 519 | Config config = { \ |
| 520 | SkString(#name), Benchmark::backend, color, alpha, colorSpace, \ |
csmartdalton | e812d49 | 2017-02-21 12:36:05 -0700 | [diff] [blame] | 521 | 0, kBogusContextType, kBogusContextOverrides, false \ |
brianosman | b109b8c | 2016-06-16 13:03:24 -0700 | [diff] [blame] | 522 | }; \ |
| 523 | configs->push_back(config); \ |
| 524 | return; \ |
mtklein | bb6a028 | 2014-07-01 08:43:42 -0700 | [diff] [blame] | 525 | } |
mtklein | e714e75 | 2014-07-31 12:13:48 -0700 | [diff] [blame] | 526 | |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 527 | CPU_CONFIG(nonrendering, kNonRendering_Backend, |
| 528 | kUnknown_SkColorType, kUnpremul_SkAlphaType, nullptr) |
mtklein | bb6c41b | 2016-03-08 11:31:11 -0800 | [diff] [blame] | 529 | |
Mike Klein | 0e4041f | 2018-06-19 16:00:40 -0400 | [diff] [blame] | 530 | CPU_CONFIG(a8, kRaster_Backend, kAlpha_8_SkColorType, kPremul_SkAlphaType, nullptr) |
| 531 | CPU_CONFIG(8888, kRaster_Backend, kN32_SkColorType, kPremul_SkAlphaType, nullptr) |
| 532 | CPU_CONFIG(565, kRaster_Backend, kRGB_565_SkColorType, kOpaque_SkAlphaType, nullptr) |
| 533 | |
| 534 | // 'narrow' has a gamut narrower than sRGB, and different transfer function. |
Brian Osman | 82ebe04 | 2019-01-04 17:03:00 -0500 | [diff] [blame] | 535 | auto narrow = SkColorSpace::MakeRGB(SkNamedTransferFn::k2Dot2, gNarrow_toXYZD50), |
Mike Klein | 0e4041f | 2018-06-19 16:00:40 -0400 | [diff] [blame] | 536 | srgb = SkColorSpace::MakeSRGB(), |
| 537 | srgbLinear = SkColorSpace::MakeSRGBLinear(); |
| 538 | |
| 539 | CPU_CONFIG( f16, kRaster_Backend, kRGBA_F16_SkColorType, kPremul_SkAlphaType, srgbLinear) |
| 540 | CPU_CONFIG( srgb, kRaster_Backend, kRGBA_8888_SkColorType, kPremul_SkAlphaType, srgb ) |
| 541 | CPU_CONFIG( esrgb, kRaster_Backend, kRGBA_F16_SkColorType, kPremul_SkAlphaType, srgb ) |
| 542 | CPU_CONFIG( narrow, kRaster_Backend, kRGBA_8888_SkColorType, kPremul_SkAlphaType, narrow ) |
| 543 | CPU_CONFIG(enarrow, kRaster_Backend, kRGBA_F16_SkColorType, kPremul_SkAlphaType, narrow ) |
mtklein | bb6a028 | 2014-07-01 08:43:42 -0700 | [diff] [blame] | 544 | |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 545 | #undef CPU_CONFIG |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 546 | |
| 547 | SkDebugf("Unknown config '%s'.\n", config->getTag().c_str()); |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 548 | } |
| 549 | |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 550 | // Append all configs that are enabled and supported. |
| 551 | void create_configs(SkTArray<Config>* configs) { |
| 552 | SkCommandLineConfigArray array; |
| 553 | ParseConfigs(FLAGS_config, &array); |
| 554 | for (int i = 0; i < array.count(); ++i) { |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 555 | create_config(array[i].get(), configs); |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 556 | } |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 557 | |
| 558 | // If no just default configs were requested, then we're okay. |
| 559 | if (array.count() == 0 || FLAGS_config.count() == 0 || |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 560 | // Otherwise, make sure that all specified configs have been created. |
| 561 | array.count() == configs->count()) { |
| 562 | return; |
| 563 | } |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 564 | exit(1); |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 565 | } |
| 566 | |
brianosman | 9f1f6e2 | 2016-09-15 08:33:02 -0700 | [diff] [blame] | 567 | // disable warning : switch statement contains default but no 'case' labels |
| 568 | #if defined _WIN32 |
| 569 | #pragma warning ( push ) |
| 570 | #pragma warning ( disable : 4065 ) |
| 571 | #endif |
| 572 | |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 573 | // If bench is enabled for config, returns a Target* for it, otherwise nullptr. |
bsalomon | c255337 | 2014-07-22 13:09:05 -0700 | [diff] [blame] | 574 | static Target* is_enabled(Benchmark* bench, const Config& config) { |
| 575 | if (!bench->isSuitableFor(config.backend)) { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 576 | return nullptr; |
bsalomon | c255337 | 2014-07-22 13:09:05 -0700 | [diff] [blame] | 577 | } |
| 578 | |
reed | e5ea500 | 2014-09-03 11:54:58 -0700 | [diff] [blame] | 579 | SkImageInfo info = SkImageInfo::Make(bench->getSize().fX, bench->getSize().fY, |
brianosman | b109b8c | 2016-06-16 13:03:24 -0700 | [diff] [blame] | 580 | config.color, config.alpha, config.colorSpace); |
bsalomon | c255337 | 2014-07-22 13:09:05 -0700 | [diff] [blame] | 581 | |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 582 | Target* target = nullptr; |
bsalomon | c255337 | 2014-07-22 13:09:05 -0700 | [diff] [blame] | 583 | |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 584 | switch (config.backend) { |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 585 | case Benchmark::kGPU_Backend: |
| 586 | target = new GPUTarget(config); |
| 587 | break; |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 588 | default: |
| 589 | target = new Target(config); |
| 590 | break; |
| 591 | } |
bsalomon | c255337 | 2014-07-22 13:09:05 -0700 | [diff] [blame] | 592 | |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 593 | if (!target->init(info, bench)) { |
bsalomon | c255337 | 2014-07-22 13:09:05 -0700 | [diff] [blame] | 594 | delete target; |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 595 | return nullptr; |
bsalomon | c255337 | 2014-07-22 13:09:05 -0700 | [diff] [blame] | 596 | } |
| 597 | return target; |
| 598 | } |
| 599 | |
brianosman | 9f1f6e2 | 2016-09-15 08:33:02 -0700 | [diff] [blame] | 600 | #if defined _WIN32 |
| 601 | #pragma warning ( pop ) |
| 602 | #endif |
| 603 | |
Leon Scroggins III | 87caae6 | 2020-05-04 10:02:45 -0400 | [diff] [blame] | 604 | #ifdef SK_ENABLE_ANDROID_UTILS |
reed | 42943c8 | 2016-09-12 12:01:44 -0700 | [diff] [blame] | 605 | static bool valid_brd_bench(sk_sp<SkData> encoded, SkColorType colorType, uint32_t sampleSize, |
msarett | d1227a7 | 2016-05-18 06:23:57 -0700 | [diff] [blame] | 606 | uint32_t minOutputSize, int* width, int* height) { |
Leon Scroggins III | 87caae6 | 2020-05-04 10:02:45 -0400 | [diff] [blame] | 607 | auto brd = android::skia::BitmapRegionDecoder::Make(encoded); |
msarett | 7f69144 | 2015-09-22 11:56:16 -0700 | [diff] [blame] | 608 | if (nullptr == brd.get()) { |
| 609 | // This is indicates that subset decoding is not supported for a particular image format. |
| 610 | return false; |
| 611 | } |
| 612 | |
msarett | 7f69144 | 2015-09-22 11:56:16 -0700 | [diff] [blame] | 613 | if (sampleSize * minOutputSize > (uint32_t) brd->width() || sampleSize * minOutputSize > |
| 614 | (uint32_t) brd->height()) { |
| 615 | // This indicates that the image is not large enough to decode a |
| 616 | // minOutputSize x minOutputSize subset at the given sampleSize. |
| 617 | return false; |
| 618 | } |
| 619 | |
| 620 | // Set the image width and height. The calling code will use this to choose subsets to decode. |
| 621 | *width = brd->width(); |
| 622 | *height = brd->height(); |
| 623 | return true; |
| 624 | } |
Leon Scroggins III | 87caae6 | 2020-05-04 10:02:45 -0400 | [diff] [blame] | 625 | #endif |
msarett | 7f69144 | 2015-09-22 11:56:16 -0700 | [diff] [blame] | 626 | |
egdaniel | 3bf9206 | 2015-06-26 08:12:46 -0700 | [diff] [blame] | 627 | static void cleanup_run(Target* target) { |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 628 | delete target; |
egdaniel | 3bf9206 | 2015-06-26 08:12:46 -0700 | [diff] [blame] | 629 | } |
| 630 | |
Mike Klein | 88544fb | 2019-03-20 10:50:33 -0500 | [diff] [blame] | 631 | static void collect_files(const CommandLineFlags::StringArray& paths, |
| 632 | const char* ext, |
| 633 | SkTArray<SkString>* list) { |
fmalita | 6519c21 | 2016-09-14 08:05:17 -0700 | [diff] [blame] | 634 | for (int i = 0; i < paths.count(); ++i) { |
| 635 | if (SkStrEndsWith(paths[i], ext)) { |
| 636 | list->push_back(SkString(paths[i])); |
| 637 | } else { |
| 638 | SkOSFile::Iter it(paths[i], ext); |
| 639 | SkString path; |
| 640 | while (it.next(&path)) { |
| 641 | list->push_back(SkOSPath::Join(paths[i], path.c_str())); |
| 642 | } |
| 643 | } |
| 644 | } |
| 645 | } |
| 646 | |
mtklein | e714e75 | 2014-07-31 12:13:48 -0700 | [diff] [blame] | 647 | class BenchmarkStream { |
| 648 | public: |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 649 | BenchmarkStream() : fBenches(BenchRegistry::Head()) |
Hal Canary | 2362ae7 | 2019-10-24 13:40:40 -0400 | [diff] [blame] | 650 | , fGMs(skiagm::GMRegistry::Head()) { |
fmalita | 6519c21 | 2016-09-14 08:05:17 -0700 | [diff] [blame] | 651 | collect_files(FLAGS_skps, ".skp", &fSKPs); |
| 652 | collect_files(FLAGS_svgs, ".svg", &fSVGs); |
Hal Canary | 5dfefa2 | 2019-10-24 13:52:17 -0400 | [diff] [blame] | 653 | collect_files(FLAGS_texttraces, ".trace", &fTextBlobTraces); |
mtklein | e714e75 | 2014-07-31 12:13:48 -0700 | [diff] [blame] | 654 | |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 655 | if (4 != sscanf(FLAGS_clip[0], "%d,%d,%d,%d", |
| 656 | &fClip.fLeft, &fClip.fTop, &fClip.fRight, &fClip.fBottom)) { |
| 657 | SkDebugf("Can't parse %s from --clip as an SkIRect.\n", FLAGS_clip[0]); |
| 658 | exit(1); |
| 659 | } |
| 660 | |
| 661 | for (int i = 0; i < FLAGS_scales.count(); i++) { |
| 662 | if (1 != sscanf(FLAGS_scales[i], "%f", &fScales.push_back())) { |
| 663 | SkDebugf("Can't parse %s from --scales as an SkScalar.\n", FLAGS_scales[i]); |
| 664 | exit(1); |
| 665 | } |
| 666 | } |
robertphillips | 5b69377 | 2014-11-21 06:19:36 -0800 | [diff] [blame] | 667 | |
cdalton | 63a8285 | 2015-06-29 14:06:10 -0700 | [diff] [blame] | 668 | if (2 != sscanf(FLAGS_zoom[0], "%f,%lf", &fZoomMax, &fZoomPeriodMs)) { |
| 669 | SkDebugf("Can't parse %s from --zoom as a zoomMax,zoomPeriodMs.\n", FLAGS_zoom[0]); |
joshualitt | 261c3ad | 2015-04-27 09:16:57 -0700 | [diff] [blame] | 670 | exit(1); |
| 671 | } |
| 672 | |
robertphillips | 5b69377 | 2014-11-21 06:19:36 -0800 | [diff] [blame] | 673 | if (FLAGS_mpd) { |
| 674 | fUseMPDs.push_back() = true; |
| 675 | } |
mtklein | c751ecb | 2015-06-15 08:56:38 -0700 | [diff] [blame] | 676 | fUseMPDs.push_back() = false; |
mtklein | 95553d9 | 2015-03-12 08:24:21 -0700 | [diff] [blame] | 677 | |
msarett | 95f192d | 2015-02-13 09:05:41 -0800 | [diff] [blame] | 678 | // Prepare the images for decoding |
msarett | 69deca8 | 2016-04-29 09:38:40 -0700 | [diff] [blame] | 679 | if (!CollectImages(FLAGS_images, &fImages)) { |
scroggo | 8673714 | 2016-02-03 12:19:11 -0800 | [diff] [blame] | 680 | exit(1); |
msarett | 95f192d | 2015-02-13 09:05:41 -0800 | [diff] [blame] | 681 | } |
mtklein | 95553d9 | 2015-03-12 08:24:21 -0700 | [diff] [blame] | 682 | |
msarett | 95f192d | 2015-02-13 09:05:41 -0800 | [diff] [blame] | 683 | // Choose the candidate color types for image decoding |
msarett | 67cb666 | 2016-06-21 08:49:26 -0700 | [diff] [blame] | 684 | fColorTypes.push_back(kN32_SkColorType); |
| 685 | if (!FLAGS_simpleCodec) { |
| 686 | fColorTypes.push_back(kRGB_565_SkColorType); |
| 687 | fColorTypes.push_back(kAlpha_8_SkColorType); |
msarett | 67cb666 | 2016-06-21 08:49:26 -0700 | [diff] [blame] | 688 | fColorTypes.push_back(kGray_8_SkColorType); |
| 689 | } |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 690 | } |
| 691 | |
reed | ca2622b | 2016-03-18 07:25:55 -0700 | [diff] [blame] | 692 | static sk_sp<SkPicture> ReadPicture(const char* path) { |
mtklein | fd731ce | 2014-09-10 12:19:30 -0700 | [diff] [blame] | 693 | // Not strictly necessary, as it will be checked again later, |
| 694 | // but helps to avoid a lot of pointless work if we're going to skip it. |
Mike Klein | 88544fb | 2019-03-20 10:50:33 -0500 | [diff] [blame] | 695 | if (CommandLineFlags::ShouldSkip(FLAGS_match, SkOSPath::Basename(path).c_str())) { |
reed | ca2622b | 2016-03-18 07:25:55 -0700 | [diff] [blame] | 696 | return nullptr; |
mtklein | fd731ce | 2014-09-10 12:19:30 -0700 | [diff] [blame] | 697 | } |
| 698 | |
bungeman | f93d711 | 2016-09-16 06:24:20 -0700 | [diff] [blame] | 699 | std::unique_ptr<SkStream> stream = SkStream::MakeFromFile(path); |
| 700 | if (!stream) { |
mtklein | fd731ce | 2014-09-10 12:19:30 -0700 | [diff] [blame] | 701 | SkDebugf("Could not read %s.\n", path); |
reed | ca2622b | 2016-03-18 07:25:55 -0700 | [diff] [blame] | 702 | return nullptr; |
mtklein | fd731ce | 2014-09-10 12:19:30 -0700 | [diff] [blame] | 703 | } |
| 704 | |
reed | ca2622b | 2016-03-18 07:25:55 -0700 | [diff] [blame] | 705 | return SkPicture::MakeFromStream(stream.get()); |
mtklein | fd731ce | 2014-09-10 12:19:30 -0700 | [diff] [blame] | 706 | } |
| 707 | |
fmalita | 6519c21 | 2016-09-14 08:05:17 -0700 | [diff] [blame] | 708 | static sk_sp<SkPicture> ReadSVGPicture(const char* path) { |
Brian Osman | 133823d | 2018-09-19 14:14:15 -0400 | [diff] [blame] | 709 | sk_sp<SkData> data(SkData::MakeFromFileName(path)); |
| 710 | if (!data) { |
fmalita | 6519c21 | 2016-09-14 08:05:17 -0700 | [diff] [blame] | 711 | SkDebugf("Could not read %s.\n", path); |
| 712 | return nullptr; |
| 713 | } |
| 714 | |
Hal Canary | 0f66681 | 2018-03-22 15:21:12 -0400 | [diff] [blame] | 715 | #ifdef SK_XML |
Brian Osman | 133823d | 2018-09-19 14:14:15 -0400 | [diff] [blame] | 716 | SkMemoryStream stream(std::move(data)); |
fmalita | e1baa7c | 2016-09-14 12:04:30 -0700 | [diff] [blame] | 717 | sk_sp<SkSVGDOM> svgDom = SkSVGDOM::MakeFromStream(stream); |
fmalita | 6519c21 | 2016-09-14 08:05:17 -0700 | [diff] [blame] | 718 | if (!svgDom) { |
| 719 | SkDebugf("Could not parse %s.\n", path); |
| 720 | return nullptr; |
| 721 | } |
| 722 | |
fmalita | e1baa7c | 2016-09-14 12:04:30 -0700 | [diff] [blame] | 723 | // Use the intrinsic SVG size if available, otherwise fall back to a default value. |
| 724 | static const SkSize kDefaultContainerSize = SkSize::Make(128, 128); |
| 725 | if (svgDom->containerSize().isEmpty()) { |
| 726 | svgDom->setContainerSize(kDefaultContainerSize); |
| 727 | } |
| 728 | |
fmalita | 6519c21 | 2016-09-14 08:05:17 -0700 | [diff] [blame] | 729 | SkPictureRecorder recorder; |
fmalita | e1baa7c | 2016-09-14 12:04:30 -0700 | [diff] [blame] | 730 | svgDom->render(recorder.beginRecording(svgDom->containerSize().width(), |
| 731 | svgDom->containerSize().height())); |
fmalita | 6519c21 | 2016-09-14 08:05:17 -0700 | [diff] [blame] | 732 | return recorder.finishRecordingAsPicture(); |
Hal Canary | 0f66681 | 2018-03-22 15:21:12 -0400 | [diff] [blame] | 733 | #else |
| 734 | return nullptr; |
| 735 | #endif // SK_XML |
fmalita | 6519c21 | 2016-09-14 08:05:17 -0700 | [diff] [blame] | 736 | } |
| 737 | |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 738 | Benchmark* next() { |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 739 | std::unique_ptr<Benchmark> bench; |
mtklein | 65dfd2f | 2016-02-03 10:40:54 -0800 | [diff] [blame] | 740 | do { |
| 741 | bench.reset(this->rawNext()); |
| 742 | if (!bench) { |
| 743 | return nullptr; |
| 744 | } |
Mike Klein | 88544fb | 2019-03-20 10:50:33 -0500 | [diff] [blame] | 745 | } while (CommandLineFlags::ShouldSkip(FLAGS_sourceType, fSourceType) || |
| 746 | CommandLineFlags::ShouldSkip(FLAGS_benchType, fBenchType)); |
mtklein | 18300a3 | 2016-03-16 13:53:35 -0700 | [diff] [blame] | 747 | return bench.release(); |
mtklein | 65dfd2f | 2016-02-03 10:40:54 -0800 | [diff] [blame] | 748 | } |
| 749 | |
| 750 | Benchmark* rawNext() { |
mtklein | e714e75 | 2014-07-31 12:13:48 -0700 | [diff] [blame] | 751 | if (fBenches) { |
Hal Canary | 972eba3 | 2018-07-30 17:07:07 -0400 | [diff] [blame] | 752 | Benchmark* bench = fBenches->get()(nullptr); |
mtklein | e714e75 | 2014-07-31 12:13:48 -0700 | [diff] [blame] | 753 | fBenches = fBenches->next(); |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 754 | fSourceType = "bench"; |
mtklein | fd731ce | 2014-09-10 12:19:30 -0700 | [diff] [blame] | 755 | fBenchType = "micro"; |
mtklein | e714e75 | 2014-07-31 12:13:48 -0700 | [diff] [blame] | 756 | return bench; |
| 757 | } |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 758 | |
mtklein | e714e75 | 2014-07-31 12:13:48 -0700 | [diff] [blame] | 759 | while (fGMs) { |
Ben Wagner | 406ff50 | 2019-08-12 16:39:24 -0400 | [diff] [blame] | 760 | std::unique_ptr<skiagm::GM> gm = fGMs->get()(); |
mtklein | e714e75 | 2014-07-31 12:13:48 -0700 | [diff] [blame] | 761 | fGMs = fGMs->next(); |
mtklein | cf5d9c9 | 2015-01-23 10:31:45 -0800 | [diff] [blame] | 762 | if (gm->runAsBench()) { |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 763 | fSourceType = "gm"; |
mtklein | fd731ce | 2014-09-10 12:19:30 -0700 | [diff] [blame] | 764 | fBenchType = "micro"; |
Ben Wagner | 406ff50 | 2019-08-12 16:39:24 -0400 | [diff] [blame] | 765 | return new GMBench(std::move(gm)); |
mtklein | e714e75 | 2014-07-31 12:13:48 -0700 | [diff] [blame] | 766 | } |
| 767 | } |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 768 | |
Hal Canary | 5dfefa2 | 2019-10-24 13:52:17 -0400 | [diff] [blame] | 769 | while (fCurrentTextBlobTrace < fTextBlobTraces.count()) { |
| 770 | SkString path = fTextBlobTraces[fCurrentTextBlobTrace++]; |
| 771 | SkString basename = SkOSPath::Basename(path.c_str()); |
| 772 | static constexpr char kEnding[] = ".trace"; |
| 773 | if (basename.endsWith(kEnding)) { |
| 774 | basename.remove(basename.size() - strlen(kEnding), strlen(kEnding)); |
| 775 | } |
| 776 | fSourceType = "texttrace"; |
| 777 | fBenchType = "micro"; |
| 778 | return CreateDiffCanvasBench( |
| 779 | SkStringPrintf("SkDiffBench-%s", basename.c_str()), |
| 780 | [path](){ return SkStream::MakeFromFile(path.c_str()); }); |
| 781 | } |
| 782 | |
mtklein | fd731ce | 2014-09-10 12:19:30 -0700 | [diff] [blame] | 783 | // First add all .skps as RecordingBenches. |
| 784 | while (fCurrentRecording < fSKPs.count()) { |
| 785 | const SkString& path = fSKPs[fCurrentRecording++]; |
reed | ca2622b | 2016-03-18 07:25:55 -0700 | [diff] [blame] | 786 | sk_sp<SkPicture> pic = ReadPicture(path.c_str()); |
| 787 | if (!pic) { |
mtklein | fd731ce | 2014-09-10 12:19:30 -0700 | [diff] [blame] | 788 | continue; |
| 789 | } |
| 790 | SkString name = SkOSPath::Basename(path.c_str()); |
| 791 | fSourceType = "skp"; |
| 792 | fBenchType = "recording"; |
Mike Klein | 88d9071 | 2018-01-27 17:30:04 +0000 | [diff] [blame] | 793 | fSKPBytes = static_cast<double>(pic->approximateBytesUsed()); |
| 794 | fSKPOps = pic->approximateOpCount(); |
Mike Klein | a705cb9 | 2019-05-14 12:33:40 -0500 | [diff] [blame] | 795 | return new RecordingBench(name.c_str(), pic.get(), FLAGS_bbh); |
mtklein | fd731ce | 2014-09-10 12:19:30 -0700 | [diff] [blame] | 796 | } |
| 797 | |
Mike Reed | e45ff46 | 2017-12-06 10:47:03 -0500 | [diff] [blame] | 798 | // Add all .skps as DeserializePictureBenchs. |
| 799 | while (fCurrentDeserialPicture < fSKPs.count()) { |
| 800 | const SkString& path = fSKPs[fCurrentDeserialPicture++]; |
| 801 | sk_sp<SkData> data = SkData::MakeFromFileName(path.c_str()); |
| 802 | if (!data) { |
| 803 | continue; |
| 804 | } |
| 805 | SkString name = SkOSPath::Basename(path.c_str()); |
| 806 | fSourceType = "skp"; |
| 807 | fBenchType = "deserial"; |
Mike Reed | 7557bbb | 2017-12-24 19:50:57 -0500 | [diff] [blame] | 808 | fSKPBytes = static_cast<double>(data->size()); |
Mike Klein | 88d9071 | 2018-01-27 17:30:04 +0000 | [diff] [blame] | 809 | fSKPOps = 0; |
Mike Reed | e45ff46 | 2017-12-06 10:47:03 -0500 | [diff] [blame] | 810 | return new DeserializePictureBench(name.c_str(), std::move(data)); |
| 811 | } |
| 812 | |
mtklein | fd731ce | 2014-09-10 12:19:30 -0700 | [diff] [blame] | 813 | // Then once each for each scale as SKPBenches (playback). |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 814 | while (fCurrentScale < fScales.count()) { |
| 815 | while (fCurrentSKP < fSKPs.count()) { |
robertphillips | 5b69377 | 2014-11-21 06:19:36 -0800 | [diff] [blame] | 816 | const SkString& path = fSKPs[fCurrentSKP]; |
reed | ca2622b | 2016-03-18 07:25:55 -0700 | [diff] [blame] | 817 | sk_sp<SkPicture> pic = ReadPicture(path.c_str()); |
| 818 | if (!pic) { |
robertphillips | 5b69377 | 2014-11-21 06:19:36 -0800 | [diff] [blame] | 819 | fCurrentSKP++; |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 820 | continue; |
| 821 | } |
robertphillips | 5b69377 | 2014-11-21 06:19:36 -0800 | [diff] [blame] | 822 | |
| 823 | while (fCurrentUseMPD < fUseMPDs.count()) { |
| 824 | if (FLAGS_bbh) { |
| 825 | // The SKP we read off disk doesn't have a BBH. Re-record so it grows one. |
| 826 | SkRTreeFactory factory; |
| 827 | SkPictureRecorder recorder; |
robertphillips | 5b69377 | 2014-11-21 06:19:36 -0800 | [diff] [blame] | 828 | pic->playback(recorder.beginRecording(pic->cullRect().width(), |
| 829 | pic->cullRect().height(), |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 830 | &factory, |
robertphillips | dda5445 | 2016-07-13 13:27:16 -0700 | [diff] [blame] | 831 | 0)); |
reed | ca2622b | 2016-03-18 07:25:55 -0700 | [diff] [blame] | 832 | pic = recorder.finishRecordingAsPicture(); |
robertphillips | 5b69377 | 2014-11-21 06:19:36 -0800 | [diff] [blame] | 833 | } |
| 834 | SkString name = SkOSPath::Basename(path.c_str()); |
| 835 | fSourceType = "skp"; |
| 836 | fBenchType = "playback"; |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 837 | return new SKPBench(name.c_str(), pic.get(), fClip, fScales[fCurrentScale], |
| 838 | fUseMPDs[fCurrentUseMPD++], FLAGS_loopSKP); |
mtklein | 2084050 | 2014-08-21 15:51:22 -0700 | [diff] [blame] | 839 | } |
robertphillips | 5b69377 | 2014-11-21 06:19:36 -0800 | [diff] [blame] | 840 | fCurrentUseMPD = 0; |
| 841 | fCurrentSKP++; |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 842 | } |
fmalita | 6519c21 | 2016-09-14 08:05:17 -0700 | [diff] [blame] | 843 | |
| 844 | while (fCurrentSVG++ < fSVGs.count()) { |
| 845 | const char* path = fSVGs[fCurrentSVG - 1].c_str(); |
| 846 | if (sk_sp<SkPicture> pic = ReadSVGPicture(path)) { |
| 847 | fSourceType = "svg"; |
| 848 | fBenchType = "playback"; |
| 849 | return new SKPBench(SkOSPath::Basename(path).c_str(), pic.get(), fClip, |
| 850 | fScales[fCurrentScale], false, FLAGS_loopSKP); |
| 851 | } |
| 852 | } |
| 853 | |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 854 | fCurrentSKP = 0; |
fmalita | 6519c21 | 2016-09-14 08:05:17 -0700 | [diff] [blame] | 855 | fCurrentSVG = 0; |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 856 | fCurrentScale++; |
| 857 | } |
| 858 | |
joshualitt | 261c3ad | 2015-04-27 09:16:57 -0700 | [diff] [blame] | 859 | // Now loop over each skp again if we have an animation |
cdalton | 63a8285 | 2015-06-29 14:06:10 -0700 | [diff] [blame] | 860 | if (fZoomMax != 1.0f && fZoomPeriodMs > 0) { |
joshualitt | 261c3ad | 2015-04-27 09:16:57 -0700 | [diff] [blame] | 861 | while (fCurrentAnimSKP < fSKPs.count()) { |
| 862 | const SkString& path = fSKPs[fCurrentAnimSKP]; |
reed | ca2622b | 2016-03-18 07:25:55 -0700 | [diff] [blame] | 863 | sk_sp<SkPicture> pic = ReadPicture(path.c_str()); |
| 864 | if (!pic) { |
joshualitt | 261c3ad | 2015-04-27 09:16:57 -0700 | [diff] [blame] | 865 | fCurrentAnimSKP++; |
| 866 | continue; |
| 867 | } |
| 868 | |
| 869 | fCurrentAnimSKP++; |
| 870 | SkString name = SkOSPath::Basename(path.c_str()); |
Ben Wagner | acf98df | 2019-07-12 12:51:44 -0400 | [diff] [blame] | 871 | sk_sp<SKPAnimationBench::Animation> animation = |
| 872 | SKPAnimationBench::MakeZoomAnimation(fZoomMax, fZoomPeriodMs); |
| 873 | return new SKPAnimationBench(name.c_str(), pic.get(), fClip, std::move(animation), |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 874 | FLAGS_loopSKP); |
joshualitt | 261c3ad | 2015-04-27 09:16:57 -0700 | [diff] [blame] | 875 | } |
| 876 | } |
| 877 | |
scroggo | 60869a4 | 2015-04-01 12:09:17 -0700 | [diff] [blame] | 878 | for (; fCurrentCodec < fImages.count(); fCurrentCodec++) { |
scroggo | 303fa35 | 2015-10-05 11:03:34 -0700 | [diff] [blame] | 879 | fSourceType = "image"; |
| 880 | fBenchType = "skcodec"; |
scroggo | 60869a4 | 2015-04-01 12:09:17 -0700 | [diff] [blame] | 881 | const SkString& path = fImages[fCurrentCodec]; |
Mike Klein | 88544fb | 2019-03-20 10:50:33 -0500 | [diff] [blame] | 882 | if (CommandLineFlags::ShouldSkip(FLAGS_match, path.c_str())) { |
mtklein | 6f0ff91 | 2016-01-11 09:04:21 -0800 | [diff] [blame] | 883 | continue; |
| 884 | } |
bungeman | 38d909e | 2016-08-02 14:40:46 -0700 | [diff] [blame] | 885 | sk_sp<SkData> encoded(SkData::MakeFromFileName(path.c_str())); |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 886 | std::unique_ptr<SkCodec> codec(SkCodec::MakeFromData(encoded)); |
scroggo | 60869a4 | 2015-04-01 12:09:17 -0700 | [diff] [blame] | 887 | if (!codec) { |
| 888 | // Nothing to time. |
msarett | 9d9725c | 2015-04-24 11:41:55 -0700 | [diff] [blame] | 889 | SkDebugf("Cannot find codec for %s\n", path.c_str()); |
scroggo | 60869a4 | 2015-04-01 12:09:17 -0700 | [diff] [blame] | 890 | continue; |
| 891 | } |
scroggo | 2102799 | 2015-04-02 13:22:38 -0700 | [diff] [blame] | 892 | |
scroggo | 60869a4 | 2015-04-01 12:09:17 -0700 | [diff] [blame] | 893 | while (fCurrentColorType < fColorTypes.count()) { |
scroggo | 2102799 | 2015-04-02 13:22:38 -0700 | [diff] [blame] | 894 | const SkColorType colorType = fColorTypes[fCurrentColorType]; |
scroggo | 2102799 | 2015-04-02 13:22:38 -0700 | [diff] [blame] | 895 | |
msarett | c7796b9 | 2016-01-07 14:20:20 -0800 | [diff] [blame] | 896 | SkAlphaType alphaType = codec->getInfo().alphaType(); |
msarett | 67cb666 | 2016-06-21 08:49:26 -0700 | [diff] [blame] | 897 | if (FLAGS_simpleCodec) { |
| 898 | if (kUnpremul_SkAlphaType == alphaType) { |
| 899 | alphaType = kPremul_SkAlphaType; |
| 900 | } |
| 901 | |
| 902 | fCurrentColorType++; |
| 903 | } else { |
| 904 | switch (alphaType) { |
| 905 | case kOpaque_SkAlphaType: |
| 906 | // We only need to test one alpha type (opaque). |
msarett | c7796b9 | 2016-01-07 14:20:20 -0800 | [diff] [blame] | 907 | fCurrentColorType++; |
msarett | 67cb666 | 2016-06-21 08:49:26 -0700 | [diff] [blame] | 908 | break; |
| 909 | case kUnpremul_SkAlphaType: |
| 910 | case kPremul_SkAlphaType: |
| 911 | if (0 == fCurrentAlphaType) { |
| 912 | // Test unpremul first. |
| 913 | alphaType = kUnpremul_SkAlphaType; |
| 914 | fCurrentAlphaType++; |
| 915 | } else { |
| 916 | // Test premul. |
| 917 | alphaType = kPremul_SkAlphaType; |
| 918 | fCurrentAlphaType = 0; |
| 919 | fCurrentColorType++; |
| 920 | } |
| 921 | break; |
| 922 | default: |
| 923 | SkASSERT(false); |
| 924 | fCurrentColorType++; |
| 925 | break; |
| 926 | } |
scroggo | 2102799 | 2015-04-02 13:22:38 -0700 | [diff] [blame] | 927 | } |
| 928 | |
msarett | c7796b9 | 2016-01-07 14:20:20 -0800 | [diff] [blame] | 929 | // Make sure we can decode to this color type and alpha type. |
| 930 | SkImageInfo info = |
| 931 | codec->getInfo().makeColorType(colorType).makeAlphaType(alphaType); |
scroggo | 2102799 | 2015-04-02 13:22:38 -0700 | [diff] [blame] | 932 | const size_t rowBytes = info.minRowBytes(); |
Mike Reed | f0ffb89 | 2017-10-03 14:47:21 -0400 | [diff] [blame] | 933 | SkAutoMalloc storage(info.computeByteSize(rowBytes)); |
scroggo | 2102799 | 2015-04-02 13:22:38 -0700 | [diff] [blame] | 934 | |
scroggo | eb602a5 | 2015-07-09 08:16:03 -0700 | [diff] [blame] | 935 | const SkCodec::Result result = codec->getPixels( |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 936 | info, storage.get(), rowBytes); |
scroggo | 60869a4 | 2015-04-01 12:09:17 -0700 | [diff] [blame] | 937 | switch (result) { |
scroggo | eb602a5 | 2015-07-09 08:16:03 -0700 | [diff] [blame] | 938 | case SkCodec::kSuccess: |
| 939 | case SkCodec::kIncompleteInput: |
scroggo | 60869a4 | 2015-04-01 12:09:17 -0700 | [diff] [blame] | 940 | return new CodecBench(SkOSPath::Basename(path.c_str()), |
bungeman | 38d909e | 2016-08-02 14:40:46 -0700 | [diff] [blame] | 941 | encoded.get(), colorType, alphaType); |
scroggo | eb602a5 | 2015-07-09 08:16:03 -0700 | [diff] [blame] | 942 | case SkCodec::kInvalidConversion: |
scroggo | 60869a4 | 2015-04-01 12:09:17 -0700 | [diff] [blame] | 943 | // This is okay. Not all conversions are valid. |
| 944 | break; |
scroggo | 60869a4 | 2015-04-01 12:09:17 -0700 | [diff] [blame] | 945 | default: |
| 946 | // This represents some sort of failure. |
| 947 | SkASSERT(false); |
| 948 | break; |
| 949 | } |
| 950 | } |
| 951 | fCurrentColorType = 0; |
| 952 | } |
| 953 | |
msarett | 8445102 | 2016-02-11 06:45:51 -0800 | [diff] [blame] | 954 | // Run AndroidCodecBenches |
| 955 | const int sampleSizes[] = { 2, 4, 8 }; |
| 956 | for (; fCurrentAndroidCodec < fImages.count(); fCurrentAndroidCodec++) { |
| 957 | fSourceType = "image"; |
| 958 | fBenchType = "skandroidcodec"; |
| 959 | |
| 960 | const SkString& path = fImages[fCurrentAndroidCodec]; |
Mike Klein | 88544fb | 2019-03-20 10:50:33 -0500 | [diff] [blame] | 961 | if (CommandLineFlags::ShouldSkip(FLAGS_match, path.c_str())) { |
msarett | 8445102 | 2016-02-11 06:45:51 -0800 | [diff] [blame] | 962 | continue; |
| 963 | } |
bungeman | 38d909e | 2016-08-02 14:40:46 -0700 | [diff] [blame] | 964 | sk_sp<SkData> encoded(SkData::MakeFromFileName(path.c_str())); |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 965 | std::unique_ptr<SkAndroidCodec> codec(SkAndroidCodec::MakeFromData(encoded)); |
msarett | 8445102 | 2016-02-11 06:45:51 -0800 | [diff] [blame] | 966 | if (!codec) { |
| 967 | // Nothing to time. |
| 968 | SkDebugf("Cannot find codec for %s\n", path.c_str()); |
| 969 | continue; |
| 970 | } |
| 971 | |
| 972 | while (fCurrentSampleSize < (int) SK_ARRAY_COUNT(sampleSizes)) { |
| 973 | int sampleSize = sampleSizes[fCurrentSampleSize]; |
| 974 | fCurrentSampleSize++; |
Brian Osman | 788b916 | 2020-02-07 10:36:46 -0500 | [diff] [blame] | 975 | if (10 * sampleSize > std::min(codec->getInfo().width(), codec->getInfo().height())) { |
msarett | 8445102 | 2016-02-11 06:45:51 -0800 | [diff] [blame] | 976 | // Avoid benchmarking scaled decodes of already small images. |
| 977 | break; |
| 978 | } |
| 979 | |
bungeman | 38d909e | 2016-08-02 14:40:46 -0700 | [diff] [blame] | 980 | return new AndroidCodecBench(SkOSPath::Basename(path.c_str()), |
| 981 | encoded.get(), sampleSize); |
msarett | 8445102 | 2016-02-11 06:45:51 -0800 | [diff] [blame] | 982 | } |
| 983 | fCurrentSampleSize = 0; |
| 984 | } |
| 985 | |
Leon Scroggins III | 87caae6 | 2020-05-04 10:02:45 -0400 | [diff] [blame] | 986 | #ifdef SK_ENABLE_ANDROID_UTILS |
msarett | 7f69144 | 2015-09-22 11:56:16 -0700 | [diff] [blame] | 987 | // Run the BRDBenches |
msarett | 7f69144 | 2015-09-22 11:56:16 -0700 | [diff] [blame] | 988 | // We intend to create benchmarks that model the use cases in |
| 989 | // android/libraries/social/tiledimage. In this library, an image is decoded in 512x512 |
| 990 | // tiles. The image can be translated freely, so the location of a tile may be anywhere in |
| 991 | // the image. For that reason, we will benchmark decodes in five representative locations |
| 992 | // in the image. Additionally, this use case utilizes power of two scaling, so we will |
| 993 | // test on power of two sample sizes. The output tile is always 512x512, so, when a |
| 994 | // sampleSize is used, the size of the subset that is decoded is always |
| 995 | // (sampleSize*512)x(sampleSize*512). |
| 996 | // There are a few good reasons to only test on power of two sample sizes at this time: |
msarett | 7f69144 | 2015-09-22 11:56:16 -0700 | [diff] [blame] | 997 | // All use cases we are aware of only scale by powers of two. |
| 998 | // PNG decodes use the indicated sampling strategy regardless of the sample size, so |
| 999 | // these tests are sufficient to provide good coverage of our scaling options. |
msarett | 8445102 | 2016-02-11 06:45:51 -0800 | [diff] [blame] | 1000 | const uint32_t brdSampleSizes[] = { 1, 2, 4, 8, 16 }; |
msarett | 7f69144 | 2015-09-22 11:56:16 -0700 | [diff] [blame] | 1001 | const uint32_t minOutputSize = 512; |
mtklein | 6f0ff91 | 2016-01-11 09:04:21 -0800 | [diff] [blame] | 1002 | for (; fCurrentBRDImage < fImages.count(); fCurrentBRDImage++) { |
msarett | d1227a7 | 2016-05-18 06:23:57 -0700 | [diff] [blame] | 1003 | fSourceType = "image"; |
| 1004 | fBenchType = "BRD"; |
| 1005 | |
mtklein | 6f0ff91 | 2016-01-11 09:04:21 -0800 | [diff] [blame] | 1006 | const SkString& path = fImages[fCurrentBRDImage]; |
Mike Klein | 88544fb | 2019-03-20 10:50:33 -0500 | [diff] [blame] | 1007 | if (CommandLineFlags::ShouldSkip(FLAGS_match, path.c_str())) { |
mtklein | 6f0ff91 | 2016-01-11 09:04:21 -0800 | [diff] [blame] | 1008 | continue; |
| 1009 | } |
scroggo | 860e8a6 | 2015-10-15 07:51:28 -0700 | [diff] [blame] | 1010 | |
msarett | d1227a7 | 2016-05-18 06:23:57 -0700 | [diff] [blame] | 1011 | while (fCurrentColorType < fColorTypes.count()) { |
| 1012 | while (fCurrentSampleSize < (int) SK_ARRAY_COUNT(brdSampleSizes)) { |
| 1013 | while (fCurrentSubsetType <= kLastSingle_SubsetType) { |
scroggo | 860e8a6 | 2015-10-15 07:51:28 -0700 | [diff] [blame] | 1014 | |
bungeman | 38d909e | 2016-08-02 14:40:46 -0700 | [diff] [blame] | 1015 | sk_sp<SkData> encoded(SkData::MakeFromFileName(path.c_str())); |
msarett | d1227a7 | 2016-05-18 06:23:57 -0700 | [diff] [blame] | 1016 | const SkColorType colorType = fColorTypes[fCurrentColorType]; |
| 1017 | uint32_t sampleSize = brdSampleSizes[fCurrentSampleSize]; |
| 1018 | int currentSubsetType = fCurrentSubsetType++; |
scroggo | 860e8a6 | 2015-10-15 07:51:28 -0700 | [diff] [blame] | 1019 | |
msarett | d1227a7 | 2016-05-18 06:23:57 -0700 | [diff] [blame] | 1020 | int width = 0; |
| 1021 | int height = 0; |
reed | 42943c8 | 2016-09-12 12:01:44 -0700 | [diff] [blame] | 1022 | if (!valid_brd_bench(encoded, colorType, sampleSize, minOutputSize, |
msarett | d1227a7 | 2016-05-18 06:23:57 -0700 | [diff] [blame] | 1023 | &width, &height)) { |
| 1024 | break; |
msarett | 7f69144 | 2015-09-22 11:56:16 -0700 | [diff] [blame] | 1025 | } |
msarett | d1227a7 | 2016-05-18 06:23:57 -0700 | [diff] [blame] | 1026 | |
| 1027 | SkString basename = SkOSPath::Basename(path.c_str()); |
| 1028 | SkIRect subset; |
| 1029 | const uint32_t subsetSize = sampleSize * minOutputSize; |
| 1030 | switch (currentSubsetType) { |
| 1031 | case kTopLeft_SubsetType: |
| 1032 | basename.append("_TopLeft"); |
| 1033 | subset = SkIRect::MakeXYWH(0, 0, subsetSize, subsetSize); |
| 1034 | break; |
| 1035 | case kTopRight_SubsetType: |
| 1036 | basename.append("_TopRight"); |
| 1037 | subset = SkIRect::MakeXYWH(width - subsetSize, 0, subsetSize, |
| 1038 | subsetSize); |
| 1039 | break; |
| 1040 | case kMiddle_SubsetType: |
| 1041 | basename.append("_Middle"); |
| 1042 | subset = SkIRect::MakeXYWH((width - subsetSize) / 2, |
| 1043 | (height - subsetSize) / 2, subsetSize, subsetSize); |
| 1044 | break; |
| 1045 | case kBottomLeft_SubsetType: |
| 1046 | basename.append("_BottomLeft"); |
| 1047 | subset = SkIRect::MakeXYWH(0, height - subsetSize, subsetSize, |
| 1048 | subsetSize); |
| 1049 | break; |
| 1050 | case kBottomRight_SubsetType: |
| 1051 | basename.append("_BottomRight"); |
| 1052 | subset = SkIRect::MakeXYWH(width - subsetSize, |
| 1053 | height - subsetSize, subsetSize, subsetSize); |
| 1054 | break; |
| 1055 | default: |
| 1056 | SkASSERT(false); |
| 1057 | } |
| 1058 | |
| 1059 | return new BitmapRegionDecoderBench(basename.c_str(), encoded.get(), |
| 1060 | colorType, sampleSize, subset); |
msarett | 7f69144 | 2015-09-22 11:56:16 -0700 | [diff] [blame] | 1061 | } |
msarett | d1227a7 | 2016-05-18 06:23:57 -0700 | [diff] [blame] | 1062 | fCurrentSubsetType = 0; |
| 1063 | fCurrentSampleSize++; |
msarett | 7f69144 | 2015-09-22 11:56:16 -0700 | [diff] [blame] | 1064 | } |
msarett | d1227a7 | 2016-05-18 06:23:57 -0700 | [diff] [blame] | 1065 | fCurrentSampleSize = 0; |
| 1066 | fCurrentColorType++; |
msarett | 7f69144 | 2015-09-22 11:56:16 -0700 | [diff] [blame] | 1067 | } |
msarett | d1227a7 | 2016-05-18 06:23:57 -0700 | [diff] [blame] | 1068 | fCurrentColorType = 0; |
msarett | 7f69144 | 2015-09-22 11:56:16 -0700 | [diff] [blame] | 1069 | } |
Leon Scroggins III | 87caae6 | 2020-05-04 10:02:45 -0400 | [diff] [blame] | 1070 | #endif // SK_ENABLE_ANDROID_UTILS |
msarett | 7f69144 | 2015-09-22 11:56:16 -0700 | [diff] [blame] | 1071 | |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 1072 | return nullptr; |
mtklein | e714e75 | 2014-07-31 12:13:48 -0700 | [diff] [blame] | 1073 | } |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 1074 | |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 1075 | void fillCurrentOptions(NanoJSONResultsWriter& log) const { |
| 1076 | log.appendString("source_type", fSourceType); |
| 1077 | log.appendString("bench_type", fBenchType); |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 1078 | if (0 == strcmp(fSourceType, "skp")) { |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 1079 | log.appendString("clip", |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 1080 | SkStringPrintf("%d %d %d %d", fClip.fLeft, fClip.fTop, |
| 1081 | fClip.fRight, fClip.fBottom).c_str()); |
djsollen | f2b340f | 2016-01-29 08:51:04 -0800 | [diff] [blame] | 1082 | SkASSERT_RELEASE(fCurrentScale < fScales.count()); // debugging paranoia |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 1083 | log.appendString("scale", SkStringPrintf("%.2g", fScales[fCurrentScale]).c_str()); |
robertphillips | 5b69377 | 2014-11-21 06:19:36 -0800 | [diff] [blame] | 1084 | if (fCurrentUseMPD > 0) { |
| 1085 | SkASSERT(1 == fCurrentUseMPD || 2 == fCurrentUseMPD); |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 1086 | log.appendString("multi_picture_draw", |
| 1087 | fUseMPDs[fCurrentUseMPD-1] ? "true" : "false"); |
robertphillips | 5b69377 | 2014-11-21 06:19:36 -0800 | [diff] [blame] | 1088 | } |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 1089 | } |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 1090 | } |
| 1091 | |
| 1092 | void fillCurrentMetrics(NanoJSONResultsWriter& log) const { |
mtklein | 051e56d | 2014-12-04 08:46:51 -0800 | [diff] [blame] | 1093 | if (0 == strcmp(fBenchType, "recording")) { |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 1094 | log.appendMetric("bytes", fSKPBytes); |
| 1095 | log.appendMetric("ops", fSKPOps); |
mtklein | 051e56d | 2014-12-04 08:46:51 -0800 | [diff] [blame] | 1096 | } |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 1097 | } |
| 1098 | |
mtklein | e714e75 | 2014-07-31 12:13:48 -0700 | [diff] [blame] | 1099 | private: |
Leon Scroggins III | 87caae6 | 2020-05-04 10:02:45 -0400 | [diff] [blame] | 1100 | #ifdef SK_ENABLE_ANDROID_UTILS |
msarett | b23e6aa | 2015-06-09 13:56:10 -0700 | [diff] [blame] | 1101 | enum SubsetType { |
| 1102 | kTopLeft_SubsetType = 0, |
| 1103 | kTopRight_SubsetType = 1, |
msarett | ab80e35 | 2015-06-17 10:28:22 -0700 | [diff] [blame] | 1104 | kMiddle_SubsetType = 2, |
| 1105 | kBottomLeft_SubsetType = 3, |
| 1106 | kBottomRight_SubsetType = 4, |
| 1107 | kTranslate_SubsetType = 5, |
| 1108 | kZoom_SubsetType = 6, |
msarett | 7f69144 | 2015-09-22 11:56:16 -0700 | [diff] [blame] | 1109 | kLast_SubsetType = kZoom_SubsetType, |
| 1110 | kLastSingle_SubsetType = kBottomRight_SubsetType, |
msarett | b23e6aa | 2015-06-09 13:56:10 -0700 | [diff] [blame] | 1111 | }; |
Leon Scroggins III | 87caae6 | 2020-05-04 10:02:45 -0400 | [diff] [blame] | 1112 | #endif |
msarett | b23e6aa | 2015-06-09 13:56:10 -0700 | [diff] [blame] | 1113 | |
mtklein | e714e75 | 2014-07-31 12:13:48 -0700 | [diff] [blame] | 1114 | const BenchRegistry* fBenches; |
| 1115 | const skiagm::GMRegistry* fGMs; |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 1116 | SkIRect fClip; |
| 1117 | SkTArray<SkScalar> fScales; |
| 1118 | SkTArray<SkString> fSKPs; |
fmalita | 6519c21 | 2016-09-14 08:05:17 -0700 | [diff] [blame] | 1119 | SkTArray<SkString> fSVGs; |
Hal Canary | 5dfefa2 | 2019-10-24 13:52:17 -0400 | [diff] [blame] | 1120 | SkTArray<SkString> fTextBlobTraces; |
robertphillips | 5b69377 | 2014-11-21 06:19:36 -0800 | [diff] [blame] | 1121 | SkTArray<bool> fUseMPDs; |
msarett | 95f192d | 2015-02-13 09:05:41 -0800 | [diff] [blame] | 1122 | SkTArray<SkString> fImages; |
msarett | 74deb98 | 2015-10-20 16:45:56 -0700 | [diff] [blame] | 1123 | SkTArray<SkColorType, true> fColorTypes; |
cdalton | 63a8285 | 2015-06-29 14:06:10 -0700 | [diff] [blame] | 1124 | SkScalar fZoomMax; |
| 1125 | double fZoomPeriodMs; |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 1126 | |
Mike Klein | 88d9071 | 2018-01-27 17:30:04 +0000 | [diff] [blame] | 1127 | double fSKPBytes, fSKPOps; |
mtklein | 051e56d | 2014-12-04 08:46:51 -0800 | [diff] [blame] | 1128 | |
mtklein | fd731ce | 2014-09-10 12:19:30 -0700 | [diff] [blame] | 1129 | const char* fSourceType; // What we're benching: bench, GM, SKP, ... |
| 1130 | const char* fBenchType; // How we bench it: micro, recording, playback, ... |
Hal Canary | 2362ae7 | 2019-10-24 13:40:40 -0400 | [diff] [blame] | 1131 | int fCurrentRecording = 0; |
| 1132 | int fCurrentDeserialPicture = 0; |
| 1133 | int fCurrentScale = 0; |
| 1134 | int fCurrentSKP = 0; |
| 1135 | int fCurrentSVG = 0; |
Hal Canary | 5dfefa2 | 2019-10-24 13:52:17 -0400 | [diff] [blame] | 1136 | int fCurrentTextBlobTrace = 0; |
Hal Canary | 2362ae7 | 2019-10-24 13:40:40 -0400 | [diff] [blame] | 1137 | int fCurrentUseMPD = 0; |
| 1138 | int fCurrentCodec = 0; |
| 1139 | int fCurrentAndroidCodec = 0; |
Leon Scroggins III | 87caae6 | 2020-05-04 10:02:45 -0400 | [diff] [blame] | 1140 | #ifdef SK_ENABLE_ANDROID_UTILS |
Hal Canary | 2362ae7 | 2019-10-24 13:40:40 -0400 | [diff] [blame] | 1141 | int fCurrentBRDImage = 0; |
Leon Scroggins III | 87caae6 | 2020-05-04 10:02:45 -0400 | [diff] [blame] | 1142 | int fCurrentSubsetType = 0; |
| 1143 | #endif |
Hal Canary | 2362ae7 | 2019-10-24 13:40:40 -0400 | [diff] [blame] | 1144 | int fCurrentColorType = 0; |
| 1145 | int fCurrentAlphaType = 0; |
Hal Canary | 2362ae7 | 2019-10-24 13:40:40 -0400 | [diff] [blame] | 1146 | int fCurrentSampleSize = 0; |
| 1147 | int fCurrentAnimSKP = 0; |
mtklein | e714e75 | 2014-07-31 12:13:48 -0700 | [diff] [blame] | 1148 | }; |
| 1149 | |
msarett | c149f0e | 2016-01-04 11:35:43 -0800 | [diff] [blame] | 1150 | // Some runs (mostly, Valgrind) are so slow that the bot framework thinks we've hung. |
| 1151 | // This prints something every once in a while so that it knows we're still working. |
| 1152 | static void start_keepalive() { |
Mike Klein | 03141d2 | 2017-10-30 11:57:15 -0400 | [diff] [blame] | 1153 | static std::thread* intentionallyLeaked = new std::thread([]{ |
| 1154 | for (;;) { |
| 1155 | static const int kSec = 1200; |
| 1156 | #if defined(SK_BUILD_FOR_WIN) |
| 1157 | Sleep(kSec * 1000); |
| 1158 | #else |
| 1159 | sleep(kSec); |
| 1160 | #endif |
| 1161 | SkDebugf("\nBenchmarks still running...\n"); |
msarett | c149f0e | 2016-01-04 11:35:43 -0800 | [diff] [blame] | 1162 | } |
Mike Klein | 03141d2 | 2017-10-30 11:57:15 -0400 | [diff] [blame] | 1163 | }); |
| 1164 | (void)intentionallyLeaked; |
msarett | c149f0e | 2016-01-04 11:35:43 -0800 | [diff] [blame] | 1165 | } |
| 1166 | |
Mike Klein | be28ee2 | 2017-02-06 12:46:20 -0500 | [diff] [blame] | 1167 | int main(int argc, char** argv) { |
Mike Klein | 88544fb | 2019-03-20 10:50:33 -0500 | [diff] [blame] | 1168 | CommandLineFlags::Parse(argc, argv); |
Brian Osman | 53136aa | 2017-07-20 15:43:35 -0400 | [diff] [blame] | 1169 | |
Brian Osman | bc8150f | 2017-07-24 11:38:01 -0400 | [diff] [blame] | 1170 | initializeEventTracingForTools(); |
Brian Osman | 53136aa | 2017-07-20 15:43:35 -0400 | [diff] [blame] | 1171 | |
Mike Klein | adacaef | 2017-02-06 09:26:14 -0500 | [diff] [blame] | 1172 | #if defined(SK_BUILD_FOR_IOS) |
| 1173 | cd_Documents(); |
| 1174 | #endif |
jcgregorio | 3b27ade | 2014-11-13 08:06:40 -0800 | [diff] [blame] | 1175 | SetupCrashHandler(); |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 1176 | SkAutoGraphics ag; |
mtklein | cc29d26 | 2015-07-09 10:04:56 -0700 | [diff] [blame] | 1177 | SkTaskGroup::Enabler enabled(FLAGS_threads); |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 1178 | |
Chris Dalton | 040238b | 2017-12-18 14:22:34 -0700 | [diff] [blame] | 1179 | SetCtxOptionsFromCommonFlags(&grContextOpts); |
krajcevski | 69a5560 | 2014-08-13 10:46:31 -0700 | [diff] [blame] | 1180 | |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 1181 | if (kAutoTuneLoops != FLAGS_loops) { |
mtklein | a189ccd | 2014-07-14 12:28:47 -0700 | [diff] [blame] | 1182 | FLAGS_samples = 1; |
| 1183 | FLAGS_gpuFrameLag = 0; |
| 1184 | } |
| 1185 | |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 1186 | if (!FLAGS_writePath.isEmpty()) { |
| 1187 | SkDebugf("Writing files to %s.\n", FLAGS_writePath[0]); |
| 1188 | if (!sk_mkdir(FLAGS_writePath[0])) { |
| 1189 | SkDebugf("Could not create %s. Files won't be written.\n", FLAGS_writePath[0]); |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 1190 | FLAGS_writePath.set(0, nullptr); |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 1191 | } |
| 1192 | } |
| 1193 | |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 1194 | std::unique_ptr<SkWStream> logStream(new SkNullWStream); |
mtklein | 60317d0f | 2014-07-14 11:30:37 -0700 | [diff] [blame] | 1195 | if (!FLAGS_outResultsFile.isEmpty()) { |
mtklein | 5352015 | 2016-01-20 09:53:59 -0800 | [diff] [blame] | 1196 | #if defined(SK_RELEASE) |
Chris Dalton | 2e1381e | 2019-10-23 14:35:19 -0600 | [diff] [blame] | 1197 | // SkJSONWriter uses a 32k in-memory cache, so it only flushes occasionally and is well |
| 1198 | // equipped for a stream that re-opens, appends, and closes the file on every write. |
| 1199 | logStream.reset(new NanoFILEAppendAndCloseStream(FLAGS_outResultsFile[0])); |
mtklein | 5352015 | 2016-01-20 09:53:59 -0800 | [diff] [blame] | 1200 | #else |
| 1201 | SkDebugf("I'm ignoring --outResultsFile because this is a Debug build."); |
| 1202 | return 1; |
| 1203 | #endif |
mtklein | 60317d0f | 2014-07-14 11:30:37 -0700 | [diff] [blame] | 1204 | } |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 1205 | NanoJSONResultsWriter log(logStream.get(), SkJSONWriter::Mode::kPretty); |
| 1206 | log.beginObject(); // root |
mtklein | 1915b62 | 2014-08-20 11:45:00 -0700 | [diff] [blame] | 1207 | |
| 1208 | if (1 == FLAGS_properties.count() % 2) { |
| 1209 | SkDebugf("ERROR: --properties must be passed with an even number of arguments.\n"); |
| 1210 | return 1; |
| 1211 | } |
| 1212 | for (int i = 1; i < FLAGS_properties.count(); i += 2) { |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 1213 | log.appendString(FLAGS_properties[i-1], FLAGS_properties[i]); |
mtklein | 1915b62 | 2014-08-20 11:45:00 -0700 | [diff] [blame] | 1214 | } |
jcgregorio | bf5e523 | 2014-07-17 13:14:16 -0700 | [diff] [blame] | 1215 | |
| 1216 | if (1 == FLAGS_key.count() % 2) { |
| 1217 | SkDebugf("ERROR: --key must be passed with an even number of arguments.\n"); |
| 1218 | return 1; |
| 1219 | } |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 1220 | if (FLAGS_key.count()) { |
| 1221 | log.beginObject("key"); |
| 1222 | for (int i = 1; i < FLAGS_key.count(); i += 2) { |
| 1223 | log.appendString(FLAGS_key[i - 1], FLAGS_key[i]); |
| 1224 | } |
| 1225 | log.endObject(); // key |
mtklein | 94e5156 | 2014-08-19 12:41:53 -0700 | [diff] [blame] | 1226 | } |
mtklein | 60317d0f | 2014-07-14 11:30:37 -0700 | [diff] [blame] | 1227 | |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 1228 | const double overhead = estimate_timer_overhead(); |
mtklein | 55b0ffc | 2014-07-17 08:38:23 -0700 | [diff] [blame] | 1229 | SkDebugf("Timer overhead: %s\n", HUMANIZE(overhead)); |
Mike Klein | 9129477 | 2014-07-16 19:59:32 -0400 | [diff] [blame] | 1230 | |
cdalton | e1b8958 | 2015-06-25 19:17:08 -0700 | [diff] [blame] | 1231 | SkTArray<double> samples; |
mtklein | bb6a028 | 2014-07-01 08:43:42 -0700 | [diff] [blame] | 1232 | |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 1233 | if (kAutoTuneLoops != FLAGS_loops) { |
| 1234 | SkDebugf("Fixed number of loops; times would only be misleading so we won't print them.\n"); |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 1235 | } else if (FLAGS_quiet) { |
mtklein | 66cfcff | 2015-12-04 06:35:30 -0800 | [diff] [blame] | 1236 | SkDebugf("! -> high variance, ? -> moderate variance\n"); |
| 1237 | SkDebugf(" micros \tbench\n"); |
mtklein | bbba168 | 2015-10-28 11:36:30 -0700 | [diff] [blame] | 1238 | } else if (FLAGS_ms) { |
cdalton | e1b8958 | 2015-06-25 19:17:08 -0700 | [diff] [blame] | 1239 | SkDebugf("curr/maxrss\tloops\tmin\tmedian\tmean\tmax\tstddev\tsamples\tconfig\tbench\n"); |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 1240 | } else { |
mtklein | d75c466 | 2015-04-30 07:11:22 -0700 | [diff] [blame] | 1241 | SkDebugf("curr/maxrss\tloops\tmin\tmedian\tmean\tmax\tstddev\t%-*s\tconfig\tbench\n", |
qiankun.miao | 8247ec3 | 2014-09-09 19:24:36 -0700 | [diff] [blame] | 1242 | FLAGS_samples, "samples"); |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 1243 | } |
| 1244 | |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 1245 | SkTArray<Config> configs; |
bsalomon | c255337 | 2014-07-22 13:09:05 -0700 | [diff] [blame] | 1246 | create_configs(&configs); |
| 1247 | |
msarett | c149f0e | 2016-01-04 11:35:43 -0800 | [diff] [blame] | 1248 | if (FLAGS_keepAlive) { |
| 1249 | start_keepalive(); |
| 1250 | } |
| 1251 | |
Mike Klein | 03fa5d4 | 2019-03-22 11:39:09 -0500 | [diff] [blame] | 1252 | SetAnalyticAAFromCommonFlags(); |
liyuqian | 38911a7 | 2016-10-04 11:23:22 -0700 | [diff] [blame] | 1253 | |
Mike Klein | 2a57e79 | 2020-01-14 12:47:52 -0600 | [diff] [blame] | 1254 | if (FLAGS_forceRasterPipeline) { gSkForceRasterPipelineBlitter = true; } |
Mike Klein | ea4459d | 2020-01-16 13:05:04 -0600 | [diff] [blame] | 1255 | if (FLAGS_skvm) { gUseSkVMBlitter = gSkVMJITViaDylib = true; } |
Yuqian Li | 550148b | 2017-01-13 10:13:13 -0500 | [diff] [blame] | 1256 | |
mtklein | e070c2b | 2014-10-14 08:40:43 -0700 | [diff] [blame] | 1257 | int runs = 0; |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 1258 | BenchmarkStream benchStream; |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 1259 | log.beginObject("results"); |
Jim Van Verth | 8a9a371 | 2019-05-31 10:49:12 -0400 | [diff] [blame] | 1260 | AutoreleasePool pool; |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 1261 | while (Benchmark* b = benchStream.next()) { |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 1262 | std::unique_ptr<Benchmark> bench(b); |
Mike Klein | 88544fb | 2019-03-20 10:50:33 -0500 | [diff] [blame] | 1263 | if (CommandLineFlags::ShouldSkip(FLAGS_match, bench->getUniqueName())) { |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 1264 | continue; |
| 1265 | } |
| 1266 | |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 1267 | if (!configs.empty()) { |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 1268 | log.beginBench(bench->getUniqueName(), bench->getSize().fX, bench->getSize().fY); |
joshualitt | 8a6697a | 2015-09-30 12:11:07 -0700 | [diff] [blame] | 1269 | bench->delayedSetup(); |
jcgregorio | bf5e523 | 2014-07-17 13:14:16 -0700 | [diff] [blame] | 1270 | } |
egdaniel | 3bf9206 | 2015-06-26 08:12:46 -0700 | [diff] [blame] | 1271 | for (int i = 0; i < configs.count(); ++i) { |
| 1272 | Target* target = is_enabled(b, configs[i]); |
| 1273 | if (!target) { |
| 1274 | continue; |
| 1275 | } |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 1276 | |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 1277 | // During HWUI output this canvas may be nullptr. |
egdaniel | 3bf9206 | 2015-06-26 08:12:46 -0700 | [diff] [blame] | 1278 | SkCanvas* canvas = target->getCanvas(); |
svaisanen | c47635e | 2016-01-28 06:05:43 -0800 | [diff] [blame] | 1279 | const char* config = target->config.name.c_str(); |
egdaniel | 3bf9206 | 2015-06-26 08:12:46 -0700 | [diff] [blame] | 1280 | |
brianosman | 7a5ada8 | 2016-02-08 13:49:12 -0800 | [diff] [blame] | 1281 | if (FLAGS_pre_log || FLAGS_dryRun) { |
benjaminwagner | 8d61f0d | 2016-01-25 13:02:40 -0800 | [diff] [blame] | 1282 | SkDebugf("Running %s\t%s\n" |
| 1283 | , bench->getUniqueName() |
| 1284 | , config); |
brianosman | 7a5ada8 | 2016-02-08 13:49:12 -0800 | [diff] [blame] | 1285 | if (FLAGS_dryRun) { |
| 1286 | continue; |
| 1287 | } |
benjaminwagner | 8d61f0d | 2016-01-25 13:02:40 -0800 | [diff] [blame] | 1288 | } |
| 1289 | |
Mike Klein | ee25423 | 2019-03-28 08:32:14 -0500 | [diff] [blame] | 1290 | if (FLAGS_purgeBetweenBenches) { |
| 1291 | SkGraphics::PurgeAllCaches(); |
| 1292 | } |
| 1293 | |
Brian Osman | 5ad87aa | 2017-09-08 16:05:23 -0400 | [diff] [blame] | 1294 | TRACE_EVENT2("skia", "Benchmark", "name", TRACE_STR_COPY(bench->getUniqueName()), |
| 1295 | "config", TRACE_STR_COPY(config)); |
Brian Osman | c3cdef5 | 2017-08-31 14:09:22 -0400 | [diff] [blame] | 1296 | |
egdaniel | 3bf9206 | 2015-06-26 08:12:46 -0700 | [diff] [blame] | 1297 | target->setup(); |
robertphillips | 5b69377 | 2014-11-21 06:19:36 -0800 | [diff] [blame] | 1298 | bench->perCanvasPreDraw(canvas); |
| 1299 | |
cdalton | e1b8958 | 2015-06-25 19:17:08 -0700 | [diff] [blame] | 1300 | int maxFrameLag; |
mtklein | a1ebeb2 | 2015-10-01 09:43:39 -0700 | [diff] [blame] | 1301 | int loops = target->needsFrameTiming(&maxFrameLag) |
egdaniel | 3bf9206 | 2015-06-26 08:12:46 -0700 | [diff] [blame] | 1302 | ? setup_gpu_bench(target, bench.get(), maxFrameLag) |
| 1303 | : setup_cpu_bench(overhead, target, bench.get()); |
cdalton | e1b8958 | 2015-06-25 19:17:08 -0700 | [diff] [blame] | 1304 | |
Leon Scroggins III | b30d113 | 2017-10-02 09:48:15 -0400 | [diff] [blame] | 1305 | if (kFailedLoops == loops) { |
| 1306 | // Can't be timed. A warning note has already been printed. |
| 1307 | cleanup_run(target); |
| 1308 | continue; |
| 1309 | } |
| 1310 | |
Yuqian Li | 3528eb3 | 2017-09-21 13:23:49 -0400 | [diff] [blame] | 1311 | if (runs == 0 && FLAGS_ms < 1000) { |
| 1312 | // Run the first bench for 1000ms to warm up the nanobench if FLAGS_ms < 1000. |
| 1313 | // Otherwise, the first few benches' measurements will be inaccurate. |
| 1314 | auto stop = now_ms() + 1000; |
| 1315 | do { |
| 1316 | time(loops, bench.get(), target); |
Jim Van Verth | 49d6bca | 2020-02-28 11:05:44 -0500 | [diff] [blame] | 1317 | pool.drain(); |
Yuqian Li | 3528eb3 | 2017-09-21 13:23:49 -0400 | [diff] [blame] | 1318 | } while (now_ms() < stop); |
| 1319 | } |
| 1320 | |
mtklein | bbba168 | 2015-10-28 11:36:30 -0700 | [diff] [blame] | 1321 | if (FLAGS_ms) { |
| 1322 | samples.reset(); |
| 1323 | auto stop = now_ms() + FLAGS_ms; |
| 1324 | do { |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 1325 | samples.push_back(time(loops, bench.get(), target) / loops); |
Jim Van Verth | 49d6bca | 2020-02-28 11:05:44 -0500 | [diff] [blame] | 1326 | pool.drain(); |
mtklein | bbba168 | 2015-10-28 11:36:30 -0700 | [diff] [blame] | 1327 | } while (now_ms() < stop); |
| 1328 | } else { |
cdalton | e1b8958 | 2015-06-25 19:17:08 -0700 | [diff] [blame] | 1329 | samples.reset(FLAGS_samples); |
| 1330 | for (int s = 0; s < FLAGS_samples; s++) { |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 1331 | samples[s] = time(loops, bench.get(), target) / loops; |
Jim Van Verth | 49d6bca | 2020-02-28 11:05:44 -0500 | [diff] [blame] | 1332 | pool.drain(); |
cdalton | e1b8958 | 2015-06-25 19:17:08 -0700 | [diff] [blame] | 1333 | } |
cdalton | e1b8958 | 2015-06-25 19:17:08 -0700 | [diff] [blame] | 1334 | } |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 1335 | |
Mike Klein | fec9b90 | 2019-05-31 10:03:07 -0500 | [diff] [blame] | 1336 | // Scale each result to the benchmark's own units, time/unit. |
| 1337 | for (double& sample : samples) { |
| 1338 | sample *= (1.0 / bench->getUnits()); |
| 1339 | } |
| 1340 | |
joshualitt | e45c81c | 2015-12-02 09:05:37 -0800 | [diff] [blame] | 1341 | SkTArray<SkString> keys; |
| 1342 | SkTArray<double> values; |
| 1343 | bool gpuStatsDump = FLAGS_gpuStatsDump && Benchmark::kGPU_Backend == configs[i].backend; |
| 1344 | if (gpuStatsDump) { |
| 1345 | // TODO cache stats |
| 1346 | bench->getGpuStats(canvas, &keys, &values); |
| 1347 | } |
joshualitt | e45c81c | 2015-12-02 09:05:37 -0800 | [diff] [blame] | 1348 | |
robertphillips | 5b69377 | 2014-11-21 06:19:36 -0800 | [diff] [blame] | 1349 | bench->perCanvasPostDraw(canvas); |
| 1350 | |
egdaniel | 3bf9206 | 2015-06-26 08:12:46 -0700 | [diff] [blame] | 1351 | if (Benchmark::kNonRendering_Backend != target->config.backend && |
tomhudson | d968a6f | 2015-03-26 11:28:06 -0700 | [diff] [blame] | 1352 | !FLAGS_writePath.isEmpty() && FLAGS_writePath[0]) { |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 1353 | SkString pngFilename = SkOSPath::Join(FLAGS_writePath[0], config); |
mtklein | 9628905 | 2014-09-10 12:05:59 -0700 | [diff] [blame] | 1354 | pngFilename = SkOSPath::Join(pngFilename.c_str(), bench->getUniqueName()); |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 1355 | pngFilename.append(".png"); |
egdaniel | 3bf9206 | 2015-06-26 08:12:46 -0700 | [diff] [blame] | 1356 | write_canvas_png(target, pngFilename); |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 1357 | } |
| 1358 | |
Mike Klein | 512a244 | 2018-09-27 10:44:56 -0400 | [diff] [blame] | 1359 | // Building stats.plot often shows up in profiles, |
| 1360 | // so skip building it when we're not going to print it anyway. |
| 1361 | const bool want_plot = !FLAGS_quiet; |
| 1362 | |
| 1363 | Stats stats(samples, want_plot); |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 1364 | log.beginObject(config); |
| 1365 | |
| 1366 | log.beginObject("options"); |
| 1367 | log.appendString("name", bench->getName()); |
| 1368 | benchStream.fillCurrentOptions(log); |
| 1369 | target->fillOptions(log); |
| 1370 | log.endObject(); // options |
| 1371 | |
| 1372 | // Metrics |
| 1373 | log.appendMetric("min_ms", stats.min); |
| 1374 | log.beginArray("samples"); |
| 1375 | for (double sample : samples) { |
| 1376 | log.appendDoubleDigits(sample, 16); |
| 1377 | } |
| 1378 | log.endArray(); // samples |
| 1379 | benchStream.fillCurrentMetrics(log); |
joshualitt | e45c81c | 2015-12-02 09:05:37 -0800 | [diff] [blame] | 1380 | if (gpuStatsDump) { |
| 1381 | // dump to json, only SKPBench currently returns valid keys / values |
| 1382 | SkASSERT(keys.count() == values.count()); |
| 1383 | for (int i = 0; i < keys.count(); i++) { |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 1384 | log.appendMetric(keys[i].c_str(), values[i]); |
joshualitt | e45c81c | 2015-12-02 09:05:37 -0800 | [diff] [blame] | 1385 | } |
| 1386 | } |
joshualitt | e45c81c | 2015-12-02 09:05:37 -0800 | [diff] [blame] | 1387 | |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 1388 | log.endObject(); // config |
| 1389 | |
mtklein | e070c2b | 2014-10-14 08:40:43 -0700 | [diff] [blame] | 1390 | if (runs++ % FLAGS_flushEvery == 0) { |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 1391 | log.flush(); |
mtklein | e070c2b | 2014-10-14 08:40:43 -0700 | [diff] [blame] | 1392 | } |
mtklein | 60317d0f | 2014-07-14 11:30:37 -0700 | [diff] [blame] | 1393 | |
bsalomon | 6eb03cc | 2014-08-07 14:28:50 -0700 | [diff] [blame] | 1394 | if (kAutoTuneLoops != FLAGS_loops) { |
egdaniel | 3bf9206 | 2015-06-26 08:12:46 -0700 | [diff] [blame] | 1395 | if (configs.count() == 1) { |
mtklein | a189ccd | 2014-07-14 12:28:47 -0700 | [diff] [blame] | 1396 | config = ""; // Only print the config if we run the same bench on more than one. |
| 1397 | } |
mtklein | d75c466 | 2015-04-30 07:11:22 -0700 | [diff] [blame] | 1398 | SkDebugf("%4d/%-4dMB\t%s\t%s\n" |
| 1399 | , sk_tools::getCurrResidentSetSizeMB() |
| 1400 | , sk_tools::getMaxResidentSetSizeMB() |
mtklein | 53d2562 | 2014-09-18 07:39:42 -0700 | [diff] [blame] | 1401 | , bench->getUniqueName() |
| 1402 | , config); |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 1403 | } else if (FLAGS_quiet) { |
mtklein | 66cfcff | 2015-12-04 06:35:30 -0800 | [diff] [blame] | 1404 | const char* mark = " "; |
Hal Canary | e99e8da | 2019-01-14 16:34:50 -0500 | [diff] [blame] | 1405 | const double stddev_percent = |
| 1406 | sk_ieee_double_divide(100 * sqrt(stats.var), stats.mean); |
mtklein | 66cfcff | 2015-12-04 06:35:30 -0800 | [diff] [blame] | 1407 | if (stddev_percent > 5) mark = "?"; |
| 1408 | if (stddev_percent > 10) mark = "!"; |
| 1409 | |
| 1410 | SkDebugf("%10.2f %s\t%s\t%s\n", |
| 1411 | stats.median*1e3, mark, bench->getUniqueName(), config); |
Mike Reed | c665e5b | 2017-07-04 22:56:06 -0400 | [diff] [blame] | 1412 | } else if (FLAGS_csv) { |
Hal Canary | e99e8da | 2019-01-14 16:34:50 -0500 | [diff] [blame] | 1413 | const double stddev_percent = |
| 1414 | sk_ieee_double_divide(100 * sqrt(stats.var), stats.mean); |
Mike Reed | c665e5b | 2017-07-04 22:56:06 -0400 | [diff] [blame] | 1415 | SkDebugf("%g,%g,%g,%g,%g,%s,%s\n" |
| 1416 | , stats.min |
| 1417 | , stats.median |
| 1418 | , stats.mean |
| 1419 | , stats.max |
| 1420 | , stddev_percent |
| 1421 | , config |
| 1422 | , bench->getUniqueName() |
| 1423 | ); |
| 1424 | } else { |
| 1425 | const char* format = "%4d/%-4dMB\t%d\t%s\t%s\t%s\t%s\t%.0f%%\t%s\t%s\t%s\n"; |
Hal Canary | e99e8da | 2019-01-14 16:34:50 -0500 | [diff] [blame] | 1426 | const double stddev_percent = |
| 1427 | sk_ieee_double_divide(100 * sqrt(stats.var), stats.mean); |
Mike Reed | c665e5b | 2017-07-04 22:56:06 -0400 | [diff] [blame] | 1428 | SkDebugf(format |
mtklein | d75c466 | 2015-04-30 07:11:22 -0700 | [diff] [blame] | 1429 | , sk_tools::getCurrResidentSetSizeMB() |
| 1430 | , sk_tools::getMaxResidentSetSizeMB() |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 1431 | , loops |
mtklein | 55b0ffc | 2014-07-17 08:38:23 -0700 | [diff] [blame] | 1432 | , HUMANIZE(stats.min) |
| 1433 | , HUMANIZE(stats.median) |
| 1434 | , HUMANIZE(stats.mean) |
| 1435 | , HUMANIZE(stats.max) |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 1436 | , stddev_percent |
mtklein | bbba168 | 2015-10-28 11:36:30 -0700 | [diff] [blame] | 1437 | , FLAGS_ms ? to_string(samples.count()).c_str() : stats.plot.c_str() |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 1438 | , config |
mtklein | 9628905 | 2014-09-10 12:05:59 -0700 | [diff] [blame] | 1439 | , bench->getUniqueName() |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 1440 | ); |
| 1441 | } |
joshualitt | e45c81c | 2015-12-02 09:05:37 -0800 | [diff] [blame] | 1442 | |
joshualitt | e45c81c | 2015-12-02 09:05:37 -0800 | [diff] [blame] | 1443 | if (FLAGS_gpuStats && Benchmark::kGPU_Backend == configs[i].backend) { |
Brian Salomon | 0b4d8aa | 2017-10-11 15:34:27 -0400 | [diff] [blame] | 1444 | target->dumpStats(); |
bsalomon | 06cddec | 2014-10-24 10:40:50 -0700 | [diff] [blame] | 1445 | } |
joshualitt | e45c81c | 2015-12-02 09:05:37 -0800 | [diff] [blame] | 1446 | |
cdalton | 2c56ba5 | 2015-06-26 13:32:53 -0700 | [diff] [blame] | 1447 | if (FLAGS_verbose) { |
| 1448 | SkDebugf("Samples: "); |
| 1449 | for (int i = 0; i < samples.count(); i++) { |
| 1450 | SkDebugf("%s ", HUMANIZE(samples[i])); |
| 1451 | } |
| 1452 | SkDebugf("%s\n", bench->getUniqueName()); |
| 1453 | } |
egdaniel | 3bf9206 | 2015-06-26 08:12:46 -0700 | [diff] [blame] | 1454 | cleanup_run(target); |
Jim Van Verth | 8a9a371 | 2019-05-31 10:49:12 -0400 | [diff] [blame] | 1455 | pool.drain(); |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 1456 | } |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 1457 | if (!configs.empty()) { |
| 1458 | log.endBench(); |
| 1459 | } |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 1460 | } |
| 1461 | |
Herb Derby | 5a523fe | 2017-01-26 16:48:28 -0500 | [diff] [blame] | 1462 | SkGraphics::PurgeAllCaches(); |
| 1463 | |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 1464 | log.beginBench("memory_usage", 0, 0); |
| 1465 | log.beginObject("meta"); // config |
| 1466 | log.appendS32("max_rss_mb", sk_tools::getMaxResidentSetSizeMB()); |
| 1467 | log.endObject(); // config |
| 1468 | log.endBench(); |
| 1469 | |
Brian Osman | 68870aa | 2020-07-08 14:12:43 -0400 | [diff] [blame] | 1470 | RunSkSLMemoryBenchmarks(&log); |
| 1471 | |
Brian Osman | 8c0a1ca | 2019-01-28 14:24:29 -0500 | [diff] [blame] | 1472 | log.endObject(); // results |
| 1473 | log.endObject(); // root |
| 1474 | log.flush(); |
mtklein | e109145 | 2014-12-04 10:47:02 -0800 | [diff] [blame] | 1475 | |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 1476 | return 0; |
| 1477 | } |