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): ...@@ -174,7 +174,8 @@ def time(fn, *args):
def test_bpnn(iterations): def test_bpnn(iterations):
times = [] times = []
for _ in range(iterations): for _ in range(iterations):
times.append( time(demo) ) result, t = time(demo)
times.append(t)
return times return times
if __name__ == "__main__": 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