summaryrefslogtreecommitdiff
path: root/tests/internal_bench/bench.py
blob: d7087e0e091995b50313c5e6cb15f4b014886fed (plain)
1
2
3
4
5
6
7
8
9
10
11
import time


ITERS = 20000000


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