You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
226 B
14 lines
226 B
import bench
|
|
from ucollections import namedtuple
|
|
|
|
T = namedtuple("Tup", ["foo1", "foo2", "foo3", "foo4", "num"])
|
|
|
|
|
|
def test(num):
|
|
t = T(0, 0, 0, 0, 20000000)
|
|
i = 0
|
|
while i < t.num:
|
|
i += 1
|
|
|
|
|
|
bench.run(test)
|
|
|