| Method Summary |
| |
__init__(self,
name)
sets up a suite of benchmarks |
Benchmark
|
__getitem__(self,
i)
returns the i-th benchmark in the suite through self[i] |
int
|
__len__(self)
returns the number of benchmarks in the suite |
str
|
__str__(self)
returns the name of the benchmark suite |
| |
addBenchmark(self,
benchmark)
adds a Benchmark to the suite |
str
|
getHTML(self,
filter,
level)
returns the results of the last benchmark run in HTML format. |
| |
run(self,
scale)
runs all benchmarks |
| Inherited from object |
| |
__delattr__(...)
x.__delattr__('name') <==> del x.name |
| |
__getattribute__(...)
x.__getattribute__('name') <==> x.name |
| |
__hash__(x)
x.__hash__() <==> hash(x) |
| |
__new__(T,
S,
...)
T.__new__(S, ...) -> a new object with type S, a subtype of T |
| |
__reduce__(...)
helper for pickle |
| |
__reduce_ex__(...)
helper for pickle |
| |
__repr__(x)
x.__repr__() <==> repr(x) |
| |
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value |