You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
877 B
Python
35 lines
877 B
Python
"""
|
|
Measure latency of local RPC.
|
|
"""
|
|
|
|
import mitogen.core
|
|
import mitogen.utils
|
|
import ansible_mitogen.affinity
|
|
|
|
mitogen.utils.setup_gil()
|
|
ansible_mitogen.affinity.policy.assign_worker()
|
|
|
|
|
|
def do_nothing():
|
|
pass
|
|
|
|
@mitogen.main()
|
|
def main(router):
|
|
import optparse
|
|
parser = optparse.OptionParser(description=__doc__)
|
|
parser.add_option(
|
|
'-i', '--iterations', type=int, metavar='N', default=20000,
|
|
help='Number of iterations (default %default)')
|
|
parser.add_option('--debug', action='store_true')
|
|
opts, args = parser.parse_args()
|
|
|
|
f = router.fork(debug=opts.debug)
|
|
f.call(do_nothing)
|
|
t0 = mitogen.core.now()
|
|
for x in mitogen.core.range(opts.iterations):
|
|
f.call(do_nothing)
|
|
|
|
t1 = mitogen.core.now()
|
|
mean = (t1 - t0) / opts.iterations
|
|
print('++ iterations %d, mean %.03f us' % (opts.iterations, 1e6 * mean))
|