From e601b6caa2ed81128c2240ee05c56f6c58c2f3ed Mon Sep 17 00:00:00 2001 From: Craig Tiller Date: Mon, 3 Feb 2025 16:32:01 -0800 Subject: [PATCH] [memory-diff] Increase threshold for call memory increased/decreased (#38674) Noise is currently higher than our detection threshold. Closes #38674 COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/38674 from ctiller:limits 9d3f4901e4a3d261fb121f5f22ecf60431e29cca PiperOrigin-RevId: 722842062 --- tools/profiling/memory/memory_diff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/profiling/memory/memory_diff.py b/tools/profiling/memory/memory_diff.py index a02d084f855..002a1e70d6e 100755 --- a/tools/profiling/memory/memory_diff.py +++ b/tools/profiling/memory/memory_diff.py @@ -169,7 +169,7 @@ else: call_increase = 0 channel_decrease = 0 channel_increase = 0 - call_significant = 100 + call_significant = 200 channel_significant = 1000 for scenario in _SCENARIOS.keys(): for key, value in sorted(_INTERESTING.items()):