DEBSOURCES
Skip Quicknav
sources / micropython / 1.25.0%2Bds-1 / tests / internal_bench / bench.py
1234567891011
import time ITERS = 20000000 def run(f): t = time.time() f(ITERS) t = time.time() - t print(t)