You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
332 B
19 lines
332 B
@micropython.viper
|
|
def f0():
|
|
pass
|
|
|
|
@micropython.native
|
|
def call(r):
|
|
f = f0
|
|
for _ in r:
|
|
f()
|
|
|
|
bm_params = {
|
|
(50, 10): (15000,),
|
|
(100, 10): (30000,),
|
|
(1000, 10): (300000,),
|
|
(5000, 10): (1500000,),
|
|
}
|
|
|
|
def bm_setup(params):
|
|
return lambda: call(range(params[0])), lambda: (params[0] // 1000, None)
|
|
|