removed a duplicate script

This commit is contained in:
Stephen McQuay 2011-05-28 13:07:33 -06:00
parent 2246b53ee3
commit 0051938abb
1 changed files with 0 additions and 12 deletions

View File

@ -1,12 +0,0 @@
import sys
import shelve
s = shelve.open(sys.argv[1])
print s
# {'count': 10000, 'tasks': defaultdict(<type 'int'>, {'m5-2-1.local-31671': 10000}), 'extra': 256, 'receive': 1148.0290439128876, 'submit': 4.298105001449585, 'participants': 1, 'order': 5}
for k in sorted(s):
run = s[k]['stats']
print run['tasks']
print run['participants'], run['receive'] / run['count']