Add dup2 processing on csv
This commit is contained in:
parent
5983f703e6
commit
91bec2a572
1 changed files with 11 additions and 1 deletions
|
@ -50,7 +50,6 @@ cat <<EOF
|
||||||
===
|
===
|
||||||
rrh
|
rrh
|
||||||
===
|
===
|
||||||
|
|
||||||
latencies global
|
latencies global
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
@ -147,3 +146,14 @@ echo "flip blacklist"
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
} > rrh_flip_blacklist.csv
|
} > rrh_flip_blacklist.csv
|
||||||
|
|
||||||
|
cat <<EOF
|
||||||
|
===
|
||||||
|
dup2
|
||||||
|
===
|
||||||
|
EOF
|
||||||
|
|
||||||
|
echo "latencies global"
|
||||||
|
{ echo "delta" ; ls|grep '^dup2-'|while read -r line; do cat $line/res/dup2.csv|grep -Po "\d*µs"|grep -Po "\d*"; done } > dup2_global.csv
|
||||||
|
echo "latencies distri"
|
||||||
|
{ echo "hs,type,delta";ls|grep '^dup2-'|while read -r line; do cat $line/res/dup2.csv|grep -Po "\d*µs"|grep -Po "\d*"|python3 ./format-data.py $line; done } > dup2_distri.csv
|
||||||
|
|
Loading…
Reference in a new issue