Show More
@@ -59,8 +59,8 b" default_config_file_name = u'ipcluster_config.py'" | |||||
59 | _description = """Start an IPython cluster for parallel computing. |
|
59 | _description = """Start an IPython cluster for parallel computing. | |
60 |
|
60 | |||
61 | An IPython cluster consists of 1 controller and 1 or more engines. |
|
61 | An IPython cluster consists of 1 controller and 1 or more engines. | |
62 | This command automates the startup of these processes using a wide |
|
62 | This command automates the startup of these processes using a wide range of | |
63 |
|
|
63 | startup methods (SSH, local processes, PBS, mpiexec, SGE, LSF, Condor, | |
64 | Windows HPC Server 2008). To start a cluster with 4 engines on your |
|
64 | Windows HPC Server 2008). To start a cluster with 4 engines on your | |
65 | local host simply do 'ipcluster start --n=4'. For more complex usage |
|
65 | local host simply do 'ipcluster start --n=4'. For more complex usage | |
66 | you will typically do 'ipython profile create mycluster --parallel', then edit |
|
66 | you will typically do 'ipython profile create mycluster --parallel', then edit | |
@@ -116,7 +116,7 b' def find_launcher_class(clsname, kind):' | |||||
116 | ========== |
|
116 | ========== | |
117 | clsname : str |
|
117 | clsname : str | |
118 | The full name of the launcher class, either with or without the |
|
118 | The full name of the launcher class, either with or without the | |
119 | module path, or an abbreviation (MPI, SSH, SGE, PBS, LSF, |
|
119 | module path, or an abbreviation (MPI, SSH, SGE, PBS, LSF, Condor | |
120 | WindowsHPC). |
|
120 | WindowsHPC). | |
121 | kind : str |
|
121 | kind : str | |
122 | Either 'EngineSet' or 'Controller'. |
|
122 | Either 'EngineSet' or 'Controller'. | |
@@ -125,7 +125,7 b' def find_launcher_class(clsname, kind):' | |||||
125 | # not a module, presume it's the raw name in apps.launcher |
|
125 | # not a module, presume it's the raw name in apps.launcher | |
126 | if kind and kind not in clsname: |
|
126 | if kind and kind not in clsname: | |
127 | # doesn't match necessary full class name, assume it's |
|
127 | # doesn't match necessary full class name, assume it's | |
128 | # just 'PBS' or 'MPI' prefix: |
|
128 | # just 'PBS' or 'MPI' etc prefix: | |
129 | clsname = clsname + kind + 'Launcher' |
|
129 | clsname = clsname + kind + 'Launcher' | |
130 | clsname = 'IPython.parallel.apps.launcher.'+clsname |
|
130 | clsname = 'IPython.parallel.apps.launcher.'+clsname | |
131 | klass = import_item(clsname) |
|
131 | klass = import_item(clsname) | |
@@ -287,6 +287,7 b' class IPClusterEngines(BaseParallelApplication):' | |||||
287 | Note that SSH does *not* move the connection files |
|
287 | Note that SSH does *not* move the connection files | |
288 | around, so you will likely have to do this manually |
|
288 | around, so you will likely have to do this manually | |
289 | unless the machines are on a shared file system. |
|
289 | unless the machines are on a shared file system. | |
|
290 | Condor : use HTCondor to submit engines to a batch queue | |||
290 | WindowsHPC : use Windows HPC |
|
291 | WindowsHPC : use Windows HPC | |
291 |
|
292 | |||
292 | If you are using one of IPython's builtin launchers, you can specify just the |
|
293 | If you are using one of IPython's builtin launchers, you can specify just the |
General Comments 0
You need to be logged in to leave comments.
Login now