Add bench_playback, for quick profiling of SKR playback.
It is not completely fair to compare --skr and --noskr numbers. SKR looks unfairly good because some optimizations are baked into our SKPs at record time. But, at least, by using a kWriteOnly_Mode SkRecorder, we prevent SkPicturePlayback from compounding that unfairness. SkRecordDraw must handle its own playback-time optimizations (quickrejects) on its own. This code should look suspiciously similar to bench_record. BUG=skia:2378 R=fmalita@chromium.org, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/233833002 git-svn-id: http://skia.googlecode.com/svn/trunk@14151 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
parent
1f75ab9c66
commit
ba73d28bef
@ -16,6 +16,7 @@
|
||||
'bbh_shootout',
|
||||
'bench_pictures',
|
||||
'bench_record',
|
||||
'bench_playback',
|
||||
'filter',
|
||||
'lua_app',
|
||||
'lua_pictures',
|
||||
@ -307,6 +308,24 @@
|
||||
'record.gyp:*',
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'bench_playback',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../tools/bench_playback.cpp',
|
||||
'../tools/LazyDecodeBitmap.cpp',
|
||||
],
|
||||
'include_dirs': [
|
||||
'../src/core/',
|
||||
'../src/images',
|
||||
'../src/lazy',
|
||||
],
|
||||
'dependencies': [
|
||||
'flags.gyp:flags',
|
||||
'skia_lib.gyp:skia_lib',
|
||||
'record.gyp:*',
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'picture_renderer',
|
||||
'type': 'static_library',
|
||||
|
93
tools/bench_playback.cpp
Normal file
93
tools/bench_playback.cpp
Normal file
@ -0,0 +1,93 @@
|
||||
/*
|
||||
* Copyright 2014 Google Inc.
|
||||
*
|
||||
* Use of this source code is governed by a BSD-style license that can be
|
||||
* found in the LICENSE file.
|
||||
*/
|
||||
|
||||
#include "SkCommandLineFlags.h"
|
||||
#include "SkForceLinking.h"
|
||||
#include "SkGraphics.h"
|
||||
#include "SkOSFile.h"
|
||||
#include "SkPicture.h"
|
||||
#include "SkRecordDraw.h"
|
||||
#include "SkRecorder.h"
|
||||
#include "SkStream.h"
|
||||
#include "SkString.h"
|
||||
#include "SkTime.h"
|
||||
|
||||
__SK_FORCE_IMAGE_DECODER_LINKING;
|
||||
|
||||
DEFINE_string2(skps, r, "skps", "Directory containing SKPs to read and re-record.");
|
||||
DEFINE_int32(loops, 10, "Number of times to play back each SKP.");
|
||||
DEFINE_bool(skr, false, "Play via SkRecord instead of SkPicture.");
|
||||
DEFINE_int32(tile, 1000000000, "Simulated tile size.");
|
||||
|
||||
static void bench(SkPMColor* scratch, SkPicture& src, const char* name) {
|
||||
SkRecord record;
|
||||
SkRecorder recorder(SkRecorder::kWriteOnly_Mode, &record, src.width(), src.height());
|
||||
src.draw(&recorder);
|
||||
|
||||
SkAutoTDelete<SkCanvas> canvas(
|
||||
SkCanvas::NewRasterDirectN32(src.width(), src.height(), scratch, 0));
|
||||
canvas->clipRect(SkRect::MakeWH(FLAGS_tile, FLAGS_tile));
|
||||
|
||||
const SkMSec start = SkTime::GetMSecs();
|
||||
for (int i = 0; i < FLAGS_loops; i++) {
|
||||
if (FLAGS_skr) {
|
||||
SkRecordDraw(record, canvas.get());
|
||||
} else {
|
||||
src.draw(canvas.get());
|
||||
}
|
||||
}
|
||||
|
||||
const SkMSec elapsed = SkTime::GetMSecs() - start;
|
||||
const double msPerLoop = elapsed / (double)FLAGS_loops;
|
||||
printf("%5.1f\t%s\n", msPerLoop, name);
|
||||
}
|
||||
|
||||
int tool_main(int argc, char** argv);
|
||||
int tool_main(int argc, char** argv) {
|
||||
SkCommandLineFlags::Parse(argc, argv);
|
||||
SkAutoGraphics autoGraphics;
|
||||
|
||||
// We share a single scratch bitmap among benches to reduce the profile noise from allocation.
|
||||
static const int kMaxArea = 209825221; // tabl_mozilla is this big.
|
||||
SkAutoTMalloc<SkPMColor> scratch(kMaxArea);
|
||||
|
||||
SkOSFile::Iter it(FLAGS_skps[0], ".skp");
|
||||
SkString filename;
|
||||
bool failed = false;
|
||||
while (it.next(&filename)) {
|
||||
const SkString path = SkOSPath::SkPathJoin(FLAGS_skps[0], filename.c_str());
|
||||
|
||||
SkAutoTUnref<SkStream> stream(SkStream::NewFromFile(path.c_str()));
|
||||
if (!stream) {
|
||||
SkDebugf("Could not read %s.\n", path.c_str());
|
||||
failed = true;
|
||||
continue;
|
||||
}
|
||||
SkAutoTUnref<SkPicture> src(SkPicture::CreateFromStream(stream));
|
||||
if (!src) {
|
||||
SkDebugf("Could not read %s as an SkPicture.\n", path.c_str());
|
||||
failed = true;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (src->width() * src->height() > kMaxArea) {
|
||||
SkDebugf("%s (%dx%d) is larger than hardcoded scratch bitmap (%dpx).\n",
|
||||
path.c_str(), src->width(), src->height(), kMaxArea);
|
||||
failed = true;
|
||||
continue;
|
||||
}
|
||||
|
||||
bench(scratch.get(), *src, filename.c_str());
|
||||
}
|
||||
return failed ? 1 : 0;
|
||||
}
|
||||
|
||||
#if !defined SK_BUILD_FOR_IOS
|
||||
int main(int argc, char * const argv[]) {
|
||||
return tool_main(argc, (char**) argv);
|
||||
}
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user