##// END OF EJS Templates
Merging the new-extensions branch....
Merging the new-extensions branch. * Previously, the latex Sphinx docs were in a single chapter. This has been fixed by adding a sixth argument of True to the ``latex_documents`` attribute of :file:`conf.py`. * The ``psum`` example in the MPI documentation has been updated to mpi4py version 1.1.0. Thanks to J. Thomas for this fix. * The top-level, zero-install :file:`ipython.py` script has been updated to the new application launching API. * The extension loading functions have been renamed to :func:`load_ipython_extension` and :func:`unload_ipython_extension`. * The :mod:`IPython.extensions.pretty` extension has been moved out of quarantine and fully updated to the new extension API. * New magics for loading/unloading/reloading extensions have been added: ``%load_ext``, ``%unload_ext`` and ``%reload_ext``.

File last commit:

r2099:9d979be0
r2286:4088ad0e merge
Show More
ipcluster.1
48 lines | 1.6 KiB | application/x-troff | GroffLexer
Stephan Peijnik
Add missing man pages contributed by Debian's Stephan Peijnik....
r2098 .TH IPCLUSTER 1 "October 28, 2008" "" ""
.SH NAME
\fBipcluster \- IPython parallel computing cluster control tool
.SH SYNOPSIS
.nf
.fam C
Fernando Perez
Small updates to Debian man pages for 0.10....
r2099 \fBipcluster\fP {\fmpiexec,local,mpirun,pbs,ssh\fP} [\fIoptions\fP]
Stephan Peijnik
Add missing man pages contributed by Debian's Stephan Peijnik....
r2098 .fam T
.fi
.SH DESCRIPTION
ipcluster is a control tool for IPython's parallel computing functions.
Fernando Perez
Small updates to Debian man pages for 0.10....
r2099
IPython cluster startup. This starts a controller and engines using various
approaches. Use the IPYTHONDIR environment variable to change your IPython
directory from the default of .ipython or _ipython. The log and security
subdirectories of your IPython directory will be used by this script for log
files and security files.
.SH POSITIONAL ARGUMENTS
The first positional argument should be one of: {mpiexec, local, mpirun, pbs,
ssh}, which are the available cluster types.
For detailed help on each, type "ipcluster TYPE --help". Briefly:
local run a local cluster
mpirun run a cluster using mpirun (mpiexec also works)
mpiexec run a cluster using mpiexec (mpirun also works)
pbs run a pbs cluster
ssh run a cluster using ssh, should have ssh-keys setup
Stephan Peijnik
Add missing man pages contributed by Debian's Stephan Peijnik....
r2098 .SH OPTIONS
.TP
.B
\-h, \-\-help
Fernando Perez
Small updates to Debian man pages for 0.10....
r2099 show help message and exit
Stephan Peijnik
Add missing man pages contributed by Debian's Stephan Peijnik....
r2098 .SH EXAMPLE
Fernando Perez
Small updates to Debian man pages for 0.10....
r2099 ipcluster local -n 4
Stephan Peijnik
Add missing man pages contributed by Debian's Stephan Peijnik....
r2098
Fernando Perez
Small updates to Debian man pages for 0.10....
r2099 This command will start 4 IPython engines on the local computer.
Stephan Peijnik
Add missing man pages contributed by Debian's Stephan Peijnik....
r2098 .SH SEE ALSO
.BR ipython(1), ipcontroller(1), ipengine(1)
.br
.SH AUTHOR
\fBipcluster\fP is a tool that ships with IPython, created by
the IPython Development Team.
.PP
This manual page was written by Stephan Peijnik <debian@sp.or.at>,
Fernando Perez
Small updates to Debian man pages for 0.10....
r2099 for the Debian project (but may be used by others). Modified by Fernando Perez
<Fernando.Perez@berkeley.edu> for inclusion in IPython.