Results for new version of cache_utils

This commit is contained in:
guillaume didier 2020-03-18 14:31:55 +01:00
parent ba210848e2
commit 8c9d54e44b
3 changed files with 1310758 additions and 0 deletions

View File

@ -0,0 +1,4 @@
#!/bin/sh
awk '/^Iteration [:digit:]*[.]*/ ' < log.txt > iterations.txt
awk -f `dirname $0`/analyse_iterations.awk < iterations.txt # This uses system to split off awk scripts doing the analysis
paste -d"," *.csv > combined.csv

View File

@ -0,0 +1,10 @@
BEGIN {
i = 0
}
{
start = $0
getline
end = $0
system("awk '$0 == \""start"\",$0 == \""end"\"' < log.txt | awk '/Calibration for/ { addr = $3 }\n /Hits/ { hmin = $3; hmax = $5; hmed = $7}\n /Miss/ {mmin = $3; mmax = $5; mmed = $7}\n /Calibration done/ {print addr\", \"hmin\", \"hmax\", \"hmed\", \"mmin\", \"mmax\", \"mmed}'> "i".csv")
i = i + 1
}

File diff suppressed because it is too large Load Diff