diff options
author | Martin Sustrik <sustrik@fastmq.commkdir> | 2009-09-04 16:02:41 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@fastmq.commkdir> | 2009-09-04 16:02:41 +0200 |
commit | 4307baf7bcc71ca91da0175e79cdfbf6cc1ad770 (patch) | |
tree | e4d5e5b663e6e98d21e9aa7f7ff180bbbbb71593 /perf/python | |
parent | 450b31c3b263ee6ceea27517a2a969d0c74bcd7e (diff) |
python binding functional
Diffstat (limited to 'perf/python')
-rw-r--r-- | perf/python/local_lat.py | 6 | ||||
-rw-r--r-- | perf/python/remote_lat.py | 4 | ||||
-rw-r--r-- | perf/python/remote_thr.py | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/perf/python/local_lat.py b/perf/python/local_lat.py index 7f1503f..e9d46e0 100644 --- a/perf/python/local_lat.py +++ b/perf/python/local_lat.py @@ -23,13 +23,13 @@ import libpyzmq def main (): if len (sys.argv) != 4: - print 'usage: local_lat <bind-to> <roundtrip-count> <message-size>' + print 'usage: local_lat <bind-to> <message-size> <roundtrip-count>' sys.exit (1) try: bind_to = sys.argv [1] - roundtrip_count = int (sys.argv [2]) - message_size = int (sys.argv [3]) + message_size = int (sys.argv [2]) + roundtrip_count = int (sys.argv [3]) except (ValueError, OverflowError), e: print 'message-size and roundtrip-count must be integers' sys.exit (1) diff --git a/perf/python/remote_lat.py b/perf/python/remote_lat.py index 372f567..f2ee04a 100644 --- a/perf/python/remote_lat.py +++ b/perf/python/remote_lat.py @@ -23,7 +23,7 @@ import libpyzmq def main (): if len(sys.argv) != 4: - print 'usage: remote_lat <connect-to> <roundtrip-count> <message-size>' + print 'usage: remote_lat <connect-to> <message-size> <roundtrip-count>' sys.exit (1) try: @@ -49,7 +49,7 @@ def main (): end = datetime.now () delta = (end - start).microseconds + 1000000 * (end - start).seconds - latency = delta / roundtrip_count / 2 + latency = float (delta) / roundtrip_count / 2 print "message size: %.0f [B]" % (message_size, ) print "roundtrip count: %.0f" % (roundtrip_count, ) diff --git a/perf/python/remote_thr.py b/perf/python/remote_thr.py index a80adfd..bab001d 100644 --- a/perf/python/remote_thr.py +++ b/perf/python/remote_thr.py @@ -27,7 +27,7 @@ def main (): sys.exit (1) try: - connect_to = argv [1] + connect_to = sys.argv [1] message_size = int (sys.argv [2]) message_count = int (sys.argv [3]) except (ValueError, OverflowError), e: |