##// END OF EJS Templates
some initial tests for newparallel
some initial tests for newparallel

File last commit:

r3609:8d078bcc
r3637:e0abb035
Show More
job_wrapper.py
25 lines | 550 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
updated newparallel examples, moved into docs
r3609 from IPython.zmq.parallel.engine import EngineFactory
from IPython.zmq.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()