micropython: add micropython component
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import time
|
||||
|
||||
|
||||
ITERS = 20000000
|
||||
|
||||
|
||||
def run(f):
|
||||
t = time.time()
|
||||
f(ITERS)
|
||||
t = time.time() - t
|
||||
print(t)
|
Reference in New Issue
Block a user