diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2021-08-19 09:50:40 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2021-08-19 09:50:40 +0200 |
commit | 26d07c8eae44d0a6919fd775728cdb1bb2808298 (patch) | |
tree | b0380add225649a5ccc16455856b8c508281a4ea /lib/parameters.py | |
parent | 5312f01724edad7ef380ded9a6e34971b56c7939 (diff) |
ParallelParamFit -> ParamFit, optionally without parallelism
Diffstat (limited to 'lib/parameters.py')
-rw-r--r-- | lib/parameters.py | 4 |
1 files changed, 2 insertions, 2 deletions
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) |