From: Vratko Polak Date: Fri, 30 Sep 2022 13:54:25 +0000 (+0200) Subject: fix(soak): reduce scale coeff X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=commitdiff_plain;h=186e30a749b404210c49081d2b6d1edfc58ffe90 fix(soak): reduce scale coeff After some experiments using simulator (based on real measurment data), coeff value of 5 gives nice balance between exploration and precision. Change-Id: I6c416ed5bf3796b2e952ae4d17ab6e6bce5e1b5f Signed-off-by: Vratko Polak --- diff --git a/resources/libraries/python/PLRsearch/PLRsearch.py b/resources/libraries/python/PLRsearch/PLRsearch.py index 0e78cc936d..0314a80efb 100644 --- a/resources/libraries/python/PLRsearch/PLRsearch.py +++ b/resources/libraries/python/PLRsearch/PLRsearch.py @@ -572,7 +572,7 @@ class PLRsearch: # See https://stackoverflow.com/questions/15137292/large-objects-and-multiprocessing-pipes-and-send worker = multiprocessing.Process( target=Integrator.try_estimate_nd, - args=(worker_pipe_end, 10.0, self.trace_enabled) + args=(worker_pipe_end, 5.0, self.trace_enabled) ) worker.daemon = True worker.start()