Results for new version of cache_utils
This commit is contained in:
parent
ba210848e2
commit
8c9d54e44b
4
cache_utils/results-ba21084/analyse.sh
Executable file
4
cache_utils/results-ba21084/analyse.sh
Executable 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
|
10
cache_utils/results-ba21084/analyse_iterations.awk
Normal file
10
cache_utils/results-ba21084/analyse_iterations.awk
Normal 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
|
||||
}
|
1310744
cache_utils/results-ba21084/citron-vert/log.txt
Normal file
1310744
cache_utils/results-ba21084/citron-vert/log.txt
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user