Improve data analysis

This commit is contained in:
Loic Guegan 2021-06-08 09:58:37 +02:00
parent 84d9ce59ae
commit 0a125c3661
32 changed files with 205278 additions and 38517 deletions

15
results/scheduler/hint_fw.awk Executable file
View file

@ -0,0 +1,15 @@
#!/usr/bin/awk -f
BEGIN {
RS="\n"
FS=" "
CSV_HEADER="node,ts"
CSV_DATA=""
skip=1
print(CSV_HEADER)
}
/forward a hint successfully/ {
gsub("]","",$0)
print($4","$2)
}