From fc15722a21308c46cfd0c8f1afce6e7435250725 Mon Sep 17 00:00:00 2001 From: "tomhudson@google.com" Date: Thu, 13 Sep 2012 15:42:33 +0000 Subject: Turn down repeat count on ref counting and memory pool benches. No reason these things need to run for 10s of ms. http://codereview.appspot.com/6501122/ git-svn-id: http://skia.googlecode.com/svn/trunk@5524 2bbb7eff-a529-9590-31e7-b0007b416f81 --- bench/GrMemoryPoolBench.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bench/GrMemoryPoolBench.cpp') diff --git a/bench/GrMemoryPoolBench.cpp b/bench/GrMemoryPoolBench.cpp index 861a43e4fb..d9dc49d213 100644 --- a/bench/GrMemoryPoolBench.cpp +++ b/bench/GrMemoryPoolBench.cpp @@ -35,7 +35,7 @@ GrMemoryPool A::gPool(10 * (1 << 10), 10 * (1 << 10)); */ class GrMemoryPoolBenchStack : public SkBenchmark { enum { - N = SkBENCHLOOP(5 * (1 << 20)), + N = SkBENCHLOOP(1 * (1 << 20)), }; public: GrMemoryPoolBenchStack(void* param) : INHERITED(param) { @@ -90,7 +90,7 @@ private: */ class GrMemoryPoolBenchRandom : public SkBenchmark { enum { - N = SkBENCHLOOP(5 * (1 << 20)), + N = SkBENCHLOOP(1 * (1 << 20)), }; public: GrMemoryPoolBenchRandom(void* param) : INHERITED(param) { @@ -126,7 +126,7 @@ private: */ class GrMemoryPoolBenchQueue : public SkBenchmark { enum { - N = SkBENCHLOOP((1 << 10)), + N = SkBENCHLOOP((1 << 8)), M = SkBENCHLOOP(4 * (1 << 10)), }; public: -- cgit v1.2.3