summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bench/bench.py
blob: 0cd40a93fccd81819a319297bfc29f86a58c8eb0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import time


ITERS = 20000000

def run(f):
    t = time.time()
    f(ITERS)
    t = time.time() - t
    print(t)