Commit f08c44cd authored by Stefan Behnel's avatar Stefan Behnel

fix timings for bpnn benchmark

parent 8c4208f9
......@@ -174,7 +174,8 @@ def time(fn, *args):
def test_bpnn(iterations):
times = []
for _ in range(iterations):
times.append( time(demo) )
result, t = time(demo)
times.append(t)
return times
if __name__ == "__main__":
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment