From 26d07c8eae44d0a6919fd775728cdb1bb2808298 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Thu, 19 Aug 2021 09:50:40 +0200 Subject: ParallelParamFit -> ParamFit, optionally without parallelism --- lib/parameters.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/parameters.py') diff --git a/lib/parameters.py b/lib/parameters.py index 41153a2..82b1fdc 100644 --- a/lib/parameters.py +++ b/lib/parameters.py @@ -319,11 +319,11 @@ class ParallelParamStats: def compute(self): """ - Fit functions on previously enqueue data. + Fit functions on previously enqueued data. Fitting is one in parallel with one process per core. - Results can be accessed using the public ParallelParamFit.results object. + Results can be accessed using the public ParamFit.results object. """ with Pool() as pool: results = pool.map(_compute_param_statistics_parallel, self.queue) -- cgit v1.2.3