From ed0796e4ceacb470b0727b94b4a8fd8fd38d8e38 Mon Sep 17 00:00:00 2001 From: Nathan Baltzell Date: Tue, 28 Apr 2026 21:07:02 -0400 Subject: [PATCH 1/2] disable gnuplot fit logfile --- libexec/scaling.gpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/scaling.gpl b/libexec/scaling.gpl index 1589761971..7bd30b9c31 100644 --- a/libexec/scaling.gpl +++ b/libexec/scaling.gpl @@ -67,6 +67,7 @@ set key nobox inside top left f(x) = m*x m = 2 +set fit nolog fit [0:24] f(x) datafile using 1:(1/$2*1e3) via m rate = sprintf('%.1f Hz/CPU',m) plot datafile using 1:(1/$2*1e3) pt 7 notitle, f(x) title rate @@ -83,7 +84,6 @@ plot datafile \ '' using 1:($5) pt 9 with points title 'Reader' ,\ '' using 1:((column($#-1))) pt 11 with points title 'Writer' ,\ -#set logscale y set size 0.6,1.0 set origin 0.4,0.0 set key outside right vertical From 83b2e9f3899e889d5c8a16f629729408c0805aeb Mon Sep 17 00:00:00 2001 From: Nathan Baltzell Date: Wed, 29 Apr 2026 13:19:46 -0400 Subject: [PATCH 2/2] also silence stderr/stdout --- libexec/scaling.gpl | 1 + 1 file changed, 1 insertion(+) diff --git a/libexec/scaling.gpl b/libexec/scaling.gpl index 7bd30b9c31..3c5598d0d4 100644 --- a/libexec/scaling.gpl +++ b/libexec/scaling.gpl @@ -67,6 +67,7 @@ set key nobox inside top left f(x) = m*x m = 2 +set fit quiet set fit nolog fit [0:24] f(x) datafile using 1:(1/$2*1e3) via m rate = sprintf('%.1f Hz/CPU',m)