2372a33523
Smaller is better, winner of each group marked with *: * 0.81 sort_stdsort_repeated 2.60 sort_qsort_repeated 11.06 sort_skheap_repeated 15.81 sort_skqsort_repeated * 1.76 sort_stdsort_backward 23.17 sort_qsort_backward 14.32 sort_skheap_backward 7.06 sort_skqsort_backward * 0.78 sort_stdsort_forward 4.00 sort_qsort_forward 15.19 sort_skheap_forward 2.76 sort_skqsort_forward 13.47 sort_stdsort_rand10 27.71 sort_qsort_rand10 15.80 sort_skheap_rand10 * 11.11 sort_skqsort_rand10 17.94 sort_stdsort_rand 48.69 sort_qsort_rand 16.52 sort_skheap_rand * 11.98 sort_skqsort_rand libc++ must special case repeated, forward, and backward sorted data? To reproduce, run this and ignore (unrelated) sort_topo_rand: $ ninja -C out nanobench; and out/nanobench -m sort_ -q Change-Id: I3724188f2a6acac61d9e8c2bd43443792e0ae0ce Reviewed-on: https://skia-review.googlesource.com/131156 Commit-Queue: Mike Klein <mtklein@chromium.org> Commit-Queue: Ben Wagner <bungeman@google.com> Auto-Submit: Mike Klein <mtklein@chromium.org> Reviewed-by: Ben Wagner <bungeman@google.com>
188 lines
4.3 KiB
C++
188 lines
4.3 KiB
C++
/*
|
|
* Copyright 2013 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 "SkTSort.h"
|
|
#include <algorithm>
|
|
#include <stdlib.h>
|
|
|
|
static const int N = 1000;
|
|
|
|
static void rand_proc(int array[N]) {
|
|
SkRandom rand;
|
|
for (int i = 0; i < N; ++i) {
|
|
array[i] = rand.nextS();
|
|
}
|
|
}
|
|
|
|
static void randN_proc(int array[N]) {
|
|
SkRandom rand;
|
|
int mod = N / 10;
|
|
for (int i = 0; i < N; ++i) {
|
|
array[i] = rand.nextU() % mod;
|
|
}
|
|
}
|
|
|
|
static void forward_proc(int array[N]) {
|
|
for (int i = 0; i < N; ++i) {
|
|
array[i] = i;
|
|
}
|
|
}
|
|
|
|
static void backward_proc(int array[N]) {
|
|
for (int i = 0; i < N; ++i) {
|
|
array[i] = -i;
|
|
}
|
|
}
|
|
|
|
static void same_proc(int array[N]) {
|
|
for (int i = 0; i < N; ++i) {
|
|
array[i] = N;
|
|
}
|
|
}
|
|
|
|
typedef void (*SortProc)(int array[N]);
|
|
|
|
enum Type {
|
|
kRand, kRandN, kFore, kBack, kSame
|
|
};
|
|
|
|
static const struct {
|
|
const char* fName;
|
|
SortProc fProc;
|
|
} gRec[] = {
|
|
{ "rand", rand_proc },
|
|
{ "rand10", randN_proc },
|
|
{ "forward", forward_proc },
|
|
{ "backward", backward_proc },
|
|
{ "repeated", same_proc },
|
|
};
|
|
|
|
static void skqsort_sort(int array[N]) {
|
|
// End is inclusive for SkTQSort!
|
|
SkTQSort<int>(array, array + N - 1);
|
|
}
|
|
|
|
static void skheap_sort(int array[N]) {
|
|
SkTHeapSort<int>(array, N);
|
|
}
|
|
|
|
extern "C" {
|
|
static int int_compare(const void* a, const void* b) {
|
|
const int ai = *(const int*)a;
|
|
const int bi = *(const int*)b;
|
|
return ai < bi ? -1 : (ai > bi);
|
|
}
|
|
}
|
|
|
|
static void qsort_sort(int array[N]) {
|
|
qsort(array, N, sizeof(int), int_compare);
|
|
}
|
|
|
|
static void stdsort_sort(int array[N]) {
|
|
std::sort(array, array+N);
|
|
}
|
|
|
|
enum SortType {
|
|
kSKQSort, kSKHeap, kQSort, kStdSort,
|
|
};
|
|
|
|
static const struct {
|
|
const char* fName;
|
|
SortProc fProc;
|
|
} gSorts[] = {
|
|
{ "skqsort", skqsort_sort },
|
|
{ "skheap", skheap_sort },
|
|
{ "qsort", qsort_sort },
|
|
{ "stdsort", stdsort_sort },
|
|
};
|
|
|
|
class SortBench : public Benchmark {
|
|
SkString fName;
|
|
const Type fType;
|
|
const SortProc fSortProc;
|
|
SkAutoTMalloc<int> fUnsorted;
|
|
|
|
public:
|
|
SortBench(Type t, SortType s) : fType(t), fSortProc(gSorts[s].fProc) {
|
|
fName.printf("sort_%s_%s", gSorts[s].fName, gRec[t].fName);
|
|
}
|
|
|
|
bool isSuitableFor(Backend backend) override {
|
|
return backend == kNonRendering_Backend;
|
|
}
|
|
|
|
protected:
|
|
const char* onGetName() override {
|
|
return fName.c_str();
|
|
}
|
|
|
|
// Delayed initialization only done if onDraw will be called.
|
|
void onDelayedSetup() override {
|
|
fUnsorted.reset(N);
|
|
gRec[fType].fProc(fUnsorted.get());
|
|
}
|
|
|
|
void onDraw(int loops, SkCanvas*) override {
|
|
SkAutoTMalloc<int> sorted(N);
|
|
for (int i = 0; i < loops; i++) {
|
|
memcpy(sorted.get(), fUnsorted.get(), N*sizeof(int));
|
|
fSortProc(sorted.get());
|
|
#ifdef SK_DEBUG
|
|
for (int j = 1; j < N; ++j) {
|
|
SkASSERT(sorted[j - 1] <= sorted[j]);
|
|
}
|
|
#endif
|
|
}
|
|
}
|
|
|
|
private:
|
|
typedef Benchmark INHERITED;
|
|
};
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
static Benchmark* NewSkQSort(Type t) {
|
|
return new SortBench(t, kSKQSort);
|
|
}
|
|
static Benchmark* NewSkHeap(Type t) {
|
|
return new SortBench(t, kSKHeap);
|
|
}
|
|
static Benchmark* NewQSort(Type t) {
|
|
return new SortBench(t, kQSort);
|
|
}
|
|
static Benchmark* NewStdSort(Type t) {
|
|
return new SortBench(t, kStdSort);
|
|
}
|
|
|
|
DEF_BENCH( return NewSkQSort(kRand); )
|
|
DEF_BENCH( return NewSkHeap(kRand); )
|
|
DEF_BENCH( return NewQSort(kRand); )
|
|
DEF_BENCH( return NewStdSort(kRand); )
|
|
|
|
DEF_BENCH( return NewSkQSort(kRandN); )
|
|
DEF_BENCH( return NewSkHeap(kRandN); )
|
|
DEF_BENCH( return NewQSort(kRandN); )
|
|
DEF_BENCH( return NewStdSort(kRandN); )
|
|
|
|
DEF_BENCH( return NewSkQSort(kFore); )
|
|
DEF_BENCH( return NewSkHeap(kFore); )
|
|
DEF_BENCH( return NewQSort(kFore); )
|
|
DEF_BENCH( return NewStdSort(kFore); )
|
|
|
|
DEF_BENCH( return NewSkQSort(kBack); )
|
|
DEF_BENCH( return NewSkHeap(kBack); )
|
|
DEF_BENCH( return NewQSort(kBack); )
|
|
DEF_BENCH( return NewStdSort(kBack); )
|
|
|
|
DEF_BENCH( return NewSkQSort(kSame); )
|
|
DEF_BENCH( return NewSkHeap(kSame); )
|
|
DEF_BENCH( return NewQSort(kSame); )
|
|
DEF_BENCH( return NewStdSort(kSame); )
|