From: W. Trevor King Date: Wed, 20 Oct 2010 17:57:28 +0000 (-0400) Subject: Kill off worker-node implementations of master code. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=22d605ac4e1701155868910cdd374654783b6fa5;p=sawsim.git Kill off worker-node implementations of master code. --- diff --git a/bin/sawsim_hist.py b/bin/sawsim_hist.py index da573dc..a3cc76d 100755 --- a/bin/sawsim_hist.py +++ b/bin/sawsim_hist.py @@ -1,6 +1,8 @@ #!/usr/bin/env python from pysawsim import sawsim_histogram as sh +from pysawsim.manager.mpi import MPI_worker_death +MPI_worker_death() sh.main() diff --git a/bin/vel_dep_scan.py b/bin/vel_dep_scan.py index f6a66a6..7864380 100755 --- a/bin/vel_dep_scan.py +++ b/bin/vel_dep_scan.py @@ -1,6 +1,8 @@ #!/usr/bin/env python from pysawsim import velocity_dependant_scan as vds +from pysawsim.manager.mpi import MPI_worker_death +MPI_worker_death() vds.main()