diff options
Diffstat (limited to 'perf/python')
-rw-r--r-- | perf/python/Makefile.am | 5 | ||||
-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 |
4 files changed, 11 insertions, 6 deletions
diff --git a/perf/python/Makefile.am b/perf/python/Makefile.am new file mode 100644 index 0000000..cda8477 --- /dev/null +++ b/perf/python/Makefile.am @@ -0,0 +1,5 @@ +EXTRA_DIST = \ + local_lat.py \ + remote_lat.py \ + local_thr.py \ + remote_thr.py 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: |