2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2026-02-08 08:38:35 +00:00

star statement detailed timing code

This commit is contained in:
2026-01-28 18:00:56 +00:00
parent 86ba377bd8
commit 5a1c0a2bd6
4 changed files with 45510 additions and 24 deletions

3
process_timings.sh Executable file
View File

@@ -0,0 +1,3 @@
#! /bin/sh
awk '{split($1,a,":"); sum[a[2]]+=$2; count[a[2]]++} END {for (k in sum) printf "%s: total %.6f s, count %d, avg %.6f s\n", k, sum[k], count[k], sum[k]/count[k]}' starstatement_timing.log | sort -nr --key=3