diff options
author | Vratko Polak <vrpolak@cisco.com> | 2022-09-30 15:54:25 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2022-10-03 05:12:43 +0000 |
commit | 857f28cbb73b61afdc82b66c18d8667e56945739 (patch) | |
tree | 98377b71f5b0f84c909e1065eef6850fe12336a1 | |
parent | ea654523b71d2bafc941f8b95d06909324e3c902 (diff) |
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 <vrpolak@cisco.com>
(cherry picked from commit 186e30a749b404210c49081d2b6d1edfc58ffe90)
-rw-r--r-- | resources/libraries/python/PLRsearch/PLRsearch.py | 2 |
1 files changed, 1 insertions, 1 deletions
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() |