Files
Core2forAWS-MicroPython/tests/bench/bench.py
T

11 lines
114 B
Python
Raw Normal View History

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