diff --git a/AUTHORS.md b/AUTHORS.md index b95f3ff66f4cc8f002143e8199199e840d0cf30c..32f41f250997c53eaa77e2217a7a7326c3be4081 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -33,6 +33,7 @@ James A Clark Jeremy G Baier John Veitch Joshua Brandt +Josh Willis Katerina Chatziioannou Kaylee de Soto Khun Sang Phukon diff --git a/bilby/gw/conversion.py b/bilby/gw/conversion.py index e1ea605c8995922f686fc002a8070656c08ec80a..abef885cf2696f400d95eb0c7e7f9470586ebf0c 100644 --- a/bilby/gw/conversion.py +++ b/bilby/gw/conversion.py @@ -1167,6 +1167,7 @@ def compute_snrs(sample, likelihood, npool=1): ) new_samples = pool.map(_compute_snrs, tqdm(fill_args, file=sys.stdout)) pool.close() + pool.join() else: new_samples = [_compute_snrs(xx) for xx in tqdm(fill_args, file=sys.stdout)] @@ -1307,6 +1308,7 @@ def generate_posterior_samples_from_marginalized_likelihood( if pool is not None: pool.close() + pool.join() new_samples = np.concatenate( [np.array(val) for key, val in cached_samples_dict.items() if key != "_samples"]