Add the results from teh measurements
This commit is contained in:
parent
60fe76e366
commit
3057f11512
7
results-27-02-2020-60fe76e366/awk_scrpts.txt
Normal file
7
results-27-02-2020-60fe76e366/awk_scrpts.txt
Normal file
@ -0,0 +1,7 @@
|
||||
awk '/Prefetcher disabled/,/END/{ print $0 }' < ~/log_newcalibration2.filtered.txt > ~/newcal.2.txt
|
||||
|
||||
cat ~/begin.txt ~/log_newcalibration2.filtered.txt | awk ' /BEGIN/,/Prefetcher disabled/{ print $0 }' > ~/newcal.1.txt
|
||||
|
||||
awk '/Calibrating/,/Please compare histograms for sanity/ { print $0 }' < ~/log_newcalibration2.txt > ~/log_newcalibration2.filtered.txt
|
||||
|
||||
|
44
results-27-02-2020-60fe76e366/gen_thresholds.awk
Normal file
44
results-27-02-2020-60fe76e366/gen_thresholds.awk
Normal file
@ -0,0 +1,44 @@
|
||||
#!/usr/bin/awk -f
|
||||
|
||||
BEGIN {
|
||||
addr = 0
|
||||
low_hit = 0
|
||||
high_hit = 0
|
||||
low_miss = 0
|
||||
high_miss = 0
|
||||
#print "DEBUG BEGIN"
|
||||
}
|
||||
|
||||
/Calibration for 0x/ {
|
||||
addr = $3
|
||||
low_hit = 0
|
||||
high_hit = 0
|
||||
low_miss = 0
|
||||
high_miss = 0
|
||||
#print "DEBUG addr " addr
|
||||
#print "DEBUG " (addr != 0)
|
||||
}
|
||||
|
||||
/:/ && addr != 0 {
|
||||
cycle = $1 + 0
|
||||
hit = $2 + 0
|
||||
miss = $3 + 0
|
||||
#print "DEBUG " cycle " " hit " " miss
|
||||
if (hit > 1) {
|
||||
high_hit = cycle
|
||||
} else if (high_hit == 0) {
|
||||
low_hit = cycle
|
||||
}
|
||||
if (miss > 1) {
|
||||
high_miss = cycle
|
||||
} else if (high_miss == 0) {
|
||||
low_miss = cycle
|
||||
}
|
||||
#print "DEBUG " low_miss ", " high_miss ", " low_hit ", " high_hit
|
||||
}
|
||||
|
||||
addr != 0 && /Calibration done./ {
|
||||
print "" addr ", " low_miss ", " high_miss ", " low_hit ", " high_hit
|
||||
addr = 0
|
||||
}
|
||||
|
2089607
results-27-02-2020-60fe76e366/log_newcalibration2.txt
Normal file
2089607
results-27-02-2020-60fe76e366/log_newcalibration2.txt
Normal file
File diff suppressed because it is too large
Load Diff
1044739
results-27-02-2020-60fe76e366/newcal.1.txt
Normal file
1044739
results-27-02-2020-60fe76e366/newcal.1.txt
Normal file
File diff suppressed because it is too large
Load Diff
1044739
results-27-02-2020-60fe76e366/newcal.2.txt
Normal file
1044739
results-27-02-2020-60fe76e366/newcal.2.txt
Normal file
File diff suppressed because it is too large
Load Diff
4096
results-27-02-2020-60fe76e366/res.1.txt
Normal file
4096
results-27-02-2020-60fe76e366/res.1.txt
Normal file
File diff suppressed because it is too large
Load Diff
4096
results-27-02-2020-60fe76e366/res.2.txt
Normal file
4096
results-27-02-2020-60fe76e366/res.2.txt
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user