fix(soak): reduce scale coeff 19/37319/1
authorVratko Polak <vrpolak@cisco.com>
Fri, 30 Sep 2022 13:54:25 +0000 (15:54 +0200)
committerTibor Frank <tifrank@cisco.com>
Mon, 3 Oct 2022 05:12:43 +0000 (05:12 +0000)
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)

resources/libraries/python/PLRsearch/PLRsearch.py

index 0e78cc9..0314a80 100644 (file)
@@ -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()