##// END OF EJS Templates
Merge pull request #4305 from minrk/even-more-ways-to-get-ifaces...
Merge pull request #4305 from minrk/even-more-ways-to-get-ifaces Add even more ways to populate localinterfaces use netifaces for faster IPython.utils.localinterfaces when availlable, Parse subprocess output from ifconfig / ip addr / ipconfig. Lower priority than netifaces, but still higher priority than socket.gethostbyname. Fallback to gethostname otherwise. Should be much faster in worst case scenario where machine are badly configurred and can wait up to ~30s to start ipython. Slighly slower in other cases.

File last commit:

r9190:20a102a5
r12911:aeeb7f5a merge
Show More
task2.py
50 lines | 924 B | text/x-python | PythonLexer
Brian E Granger
Adding examples from ipython1-dev to docs/examples/kernel. These ...
r1337 #!/usr/bin/env python
# encoding: utf-8
MinRK
translate last remaining old parallel examples
r3690 from IPython.parallel import Client
Brian E Granger
Adding examples from ipython1-dev to docs/examples/kernel. These ...
r1337 import time
Fernando Perez
Add stdout flushing statements to example....
r2084 import sys
flush = sys.stdout.flush
Brian E Granger
Adding examples from ipython1-dev to docs/examples/kernel. These ...
r1337
MinRK
translate last remaining old parallel examples
r3690 rc = Client()
v = rc.load_balanced_view()
mux = rc[:]
Brian E Granger
Adding examples from ipython1-dev to docs/examples/kernel. These ...
r1337
for i in range(24):
MinRK
translate last remaining old parallel examples
r3690 v.apply(time.sleep, 1)
Brian E Granger
Adding examples from ipython1-dev to docs/examples/kernel. These ...
r1337
for i in range(6):
time.sleep(1.0)
Thomas Kluyver
Update print syntax in parallel examples.
r6455 print("Queue status (vebose=False)")
print(v.queue_status(verbose=False))
Fernando Perez
Add stdout flushing statements to example....
r2084 flush()
Brian E Granger
Adding examples from ipython1-dev to docs/examples/kernel. These ...
r1337
for i in range(24):
MinRK
translate last remaining old parallel examples
r3690 v.apply(time.sleep, 1)
Brian E Granger
Adding examples from ipython1-dev to docs/examples/kernel. These ...
r1337
for i in range(6):
time.sleep(1.0)
Thomas Kluyver
Update print syntax in parallel examples.
r6455 print("Queue status (vebose=True)")
print(v.queue_status(verbose=True))
Fernando Perez
Add stdout flushing statements to example....
r2084 flush()
Brian E Granger
Adding examples from ipython1-dev to docs/examples/kernel. These ...
r1337
for i in range(12):
MinRK
translate last remaining old parallel examples
r3690 v.apply(time.sleep, 2)
Brian E Granger
Adding examples from ipython1-dev to docs/examples/kernel. These ...
r1337
Thomas Kluyver
Update print syntax in parallel examples.
r6455 print("Queue status (vebose=True)")
print(v.queue_status(verbose=True))
Fernando Perez
Add stdout flushing statements to example....
r2084 flush()
Brian E Granger
Adding examples from ipython1-dev to docs/examples/kernel. These ...
r1337
MinRK
translate last remaining old parallel examples
r3690 # qs = v.queue_status(verbose=True)
# queued = qs['scheduled']
Brian E Granger
Adding examples from ipython1-dev to docs/examples/kernel. These ...
r1337
MinRK
translate last remaining old parallel examples
r3690 for msg_id in v.history[-4:]:
v.abort(msg_id)
Brian E Granger
Adding examples from ipython1-dev to docs/examples/kernel. These ...
r1337
for i in range(6):
time.sleep(1.0)
Thomas Kluyver
Update print syntax in parallel examples.
r6455 print("Queue status (vebose=True)")
print(v.queue_status(verbose=True))
Fernando Perez
Add stdout flushing statements to example....
r2084 flush()
Brian E Granger
Adding examples from ipython1-dev to docs/examples/kernel. These ...
r1337