diff --git a/IPython/parallel/apps/launcher.py b/IPython/parallel/apps/launcher.py index 7eb7344..4aa0c81 100644 --- a/IPython/parallel/apps/launcher.py +++ b/IPython/parallel/apps/launcher.py @@ -1184,7 +1184,6 @@ class PBSControllerLauncher(PBSLauncher, BatchClusterAppMixin): %s --log-to-file --profile-dir="{profile_dir}" --cluster-id="{cluster_id}" """%(' '.join(map(pipes.quote, ipcontroller_cmd_argv)))) - def start(self): """Start the controller by profile or profile_dir.""" return super(PBSControllerLauncher, self).start(1) @@ -1200,10 +1199,6 @@ class PBSEngineSetLauncher(PBSLauncher, BatchClusterAppMixin): %s --profile-dir="{profile_dir}" --cluster-id="{cluster_id}" """%(' '.join(map(pipes.quote,ipengine_cmd_argv)))) - def start(self, n): - """Start n engines by profile or profile_dir.""" - return super(PBSEngineSetLauncher, self).start(n) - #SGE is very similar to PBS @@ -1241,10 +1236,6 @@ class SGEEngineSetLauncher(SGELauncher, BatchClusterAppMixin): %s --profile-dir="{profile_dir}" --cluster-id="{cluster_id}" """%(' '.join(map(pipes.quote, ipengine_cmd_argv)))) - def start(self, n): - """Start n engines by profile or profile_dir.""" - return super(SGEEngineSetLauncher, self).start(n) - # LSF launchers @@ -1310,10 +1301,6 @@ class LSFEngineSetLauncher(LSFLauncher, BatchClusterAppMixin): %s --profile-dir="{profile_dir}" --cluster-id="{cluster_id}" """%(' '.join(map(pipes.quote, ipengine_cmd_argv)))) - def start(self, n): - """Start n engines by profile or profile_dir.""" - return super(LSFEngineSetLauncher, self).start(n) - # Condor Requires that we launch the ipengine/ipcontroller scripts rather # that the python instance but otherwise is very similar to PBS @@ -1380,10 +1367,6 @@ transfer_executable = False arguments = "--log-to-file '--profile-dir={profile_dir}' '--cluster-id={cluster_id}'" """ % condor_ipengine_cmd_argv) - def start(self, n): - """Start n engines by profile or profile_dir.""" - return super(CondorEngineSetLauncher, self).start(n) - #----------------------------------------------------------------------------- # A launcher for ipcluster itself!