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:
parent
163c84ba50
commit
fc15722a21
@ -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:
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include <memory>
|
||||
|
||||
enum {
|
||||
N = SkBENCHLOOP(1000000),
|
||||
N = SkBENCHLOOP(100000),
|
||||
M = SkBENCHLOOP(2)
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user