Commit 85e10115 authored by Denis Bilenko's avatar Denis Bilenko

bench_spawn.py: set number of iterations to 10k (from 20k)

parent 4d4f45d5
...@@ -3,9 +3,10 @@ ...@@ -3,9 +3,10 @@
import sys import sys
from time import time from time import time
N = 20000 N = 10000
counter = 0 counter = 0
def incr(): def incr():
global counter global counter
counter += 1 counter += 1
......
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