From dee40d9b905629846efc7a244a3642be2e7f7b67 Mon Sep 17 00:00:00 2001
From: Martin Lange <martin.lange@ufz.de>
Date: Wed, 7 Dec 2022 17:20:32 +0100
Subject: [PATCH] lower node and edge threshold in profiling graph

---
 benchmarks/run_profiling.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/benchmarks/run_profiling.sh b/benchmarks/run_profiling.sh
index 789e8363..68028ec5 100755
--- a/benchmarks/run_profiling.sh
+++ b/benchmarks/run_profiling.sh
@@ -10,7 +10,7 @@ for filename in benchmarks/profiling/*.py; do
   then
     echo "$fn"
     python benchmarks/profiling/"$fn".py prof/"$fn".pstats
-    gprof2dot --colour-nodes-by-selftime -f pstats prof/"$fn".pstats > prof/"$fn".dot
+    gprof2dot --colour-nodes-by-selftime -f pstats prof/"$fn".pstats -n 0.1 -e 0.02 > prof/"$fn".dot
     dot -Tsvg -o prof/"$fn".svg prof/"$fn".dot
     dot -Tpng -o prof/"$fn".png prof/"$fn".dot
   fi
-- 
GitLab