##// END OF EJS Templates
Make import checks more explicit in %whos...
Make import checks more explicit in %whos Since PyPy has a fake numpy, checking for 'numpy' is insufficient only check if numpy/numeric in use, to prevent unnecessary imports closes gh-904

File last commit:

r4910:0dc49390
r5149:8719351e
Show More
job_wrapper.py
25 lines | 542 B | text/x-python | PythonLexer
Fernando Perez
Add little soma workflow example
r3608 #!/usr/bin/env python
"""Python wrapper around a submitted workflow job.
In reality this would be a more sophisticated script, here we only illustrate
the basic idea by considering that a submitted 'job' is a Python string to be
executed.
"""
import sys
argv = sys.argv
MinRK
move IPython.zmq.parallel to IPython.parallel
r3666 from IPython.parallel.engine import EngineFactory
from IPython.parallel.ipengineapp import launch_new_instance
Fernando Perez
Add little soma workflow example
r3608
ns = {}
# job
exec sys.argv[1] in ns
MinRK
updated newparallel examples, moved into docs
r3609 # this should really use Config:
EngineFactory.user_ns = ns
Fernando Perez
Add little soma workflow example
r3608 # start engine with job namespace
MinRK
updated newparallel examples, moved into docs
r3609 launch_new_instance()