skia2/bench/TopoSortBench.cpp
Mike Klein ea3f014e2b sk_tool_utils -> ToolUtils, and git clang-format
sk_tool_utils doesn't really fit the naming convention
the rest of code under tools/ tends to use.

Change-Id: I45326a174101c6eb4b6149e9c742f658f2fd23b1
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/202313
Auto-Submit: Mike Klein <mtklein@google.com>
Commit-Queue: Brian Osman <brianosman@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2019-03-20 18:05:42 +00:00

78 lines
1.9 KiB
C++

/*
* Copyright 2015 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "Benchmark.h"
#include "SkRandom.h"
#include "SkString.h"
#include "SkTTopoSort.h"
#include "ToolUtils.h"
class TopoSortBench : public Benchmark {
public:
TopoSortBench() { }
~TopoSortBench() override {
}
bool isSuitableFor(Backend backend) override {
return kNonRendering_Backend == backend;
}
protected:
const char* onGetName() override {
return "sort_topo_rand";
}
// Delayed initialization only done if onDraw will be called.
void onDelayedSetup() override {
ToolUtils::TopoTestNode::AllocNodes(&fGraph, kNumElements);
for (int i = kNumElements-1; i > 0; --i) {
int numEdges = fRand.nextU() % (kMaxEdges+1);
for (int j = 0; j < numEdges; ++j) {
int dep = fRand.nextU() % i;
fGraph[i]->dependsOn(fGraph[dep].get());
}
}
}
void onDraw(int loops, SkCanvas*) override {
for (int i = 0; i < loops; ++i) {
for (int j = 0; j < fGraph.count(); ++j) {
fGraph[j]->reset();
}
ToolUtils::TopoTestNode::Shuffle(&fGraph, &fRand);
SkDEBUGCODE(bool actualResult =) SkTTopoSort<ToolUtils::TopoTestNode>(&fGraph);
SkASSERT(actualResult);
#ifdef SK_DEBUG
for (int j = 0; j < fGraph.count(); ++j) {
SkASSERT(fGraph[j]->check());
}
#endif
}
}
private:
static const int kNumElements = 1000;
static const int kMaxEdges = 5;
SkTArray<sk_sp<ToolUtils::TopoTestNode>> fGraph;
SkRandom fRand;
typedef Benchmark INHERITED;
};
///////////////////////////////////////////////////////////////////////////////
DEF_BENCH( return new TopoSortBench(); )