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
This commit is contained in:
tomhudson@google.com 2012-09-13 15:42:33 +00:00
parent 163c84ba50
commit fc15722a21
2 changed files with 4 additions and 4 deletions

View File

@ -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:

View File

@ -11,7 +11,7 @@
#include <memory>
enum {
N = SkBENCHLOOP(1000000),
N = SkBENCHLOOP(100000),
M = SkBENCHLOOP(2)
};