From 22d605ac4e1701155868910cdd374654783b6fa5 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 20 Oct 2010 13:57:28 -0400 Subject: [PATCH] Kill off worker-node implementations of master code. --- bin/sawsim_hist.py | 2 ++ bin/vel_dep_scan.py | 2 ++ 2 files changed, 4 insertions(+) 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() -- 2.26.2