Update generate_csv
This commit is contained in:
parent
7bede05ed0
commit
04412f3c45
1 changed files with 19 additions and 7 deletions
|
@ -1,11 +1,23 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
echo "naive latencies global"
|
|
||||||
{ echo "delta" ; ls|grep xp1-|while read -r line; do cat $line/res/*.txt|grep -Po "\d*µs"|grep -Po "\d*"; done } > naive_latencies_global.csv
|
|
||||||
echo "naive latencies distri"
|
|
||||||
{ echo "hs,type,delta";ls|grep xp1-|while read -r line; do cat $line/res/*.txt|grep -Po "\d*µs"|grep -Po "\d*"|python3 ./format-data.py $line; done } > naive_latencies_distri.csv
|
|
||||||
|
|
||||||
echo "orig latencies global"
|
echo "orig latencies global"
|
||||||
{ echo "delta" ; ls|grep xp2-|while read -r line; do cat $line/res/*.csv|grep -Po "\d*µs"|grep -Po "\d*"; done } > orig_latencies_global.csv
|
{ echo "delta" ; ls|grep orig-|while read -r line; do cat $line/res/orig.csv|grep -Po "\d*µs"|grep -Po "\d*"; done } > orig_latencies_global.csv
|
||||||
echo "orig latencies distri"
|
echo "orig latencies distri"
|
||||||
{ echo "hs,type,delta";ls|grep xp2-|while read -r line; do cat $line/res/*.csv|grep -Po "\d*µs"|grep -Po "\d*"|python3 ./format-data.py $line; done } > orig_latencies_distri.csv
|
{ echo "hs,type,delta";ls|grep orig-|while read -r line; do cat $line/res/orig.csv|grep -Po "\d*µs"|grep -Po "\d*"|python3 ./format-data.py $line; done } > orig_latencies_distri.csv
|
||||||
|
|
||||||
|
echo "naive latencies global"
|
||||||
|
{ echo "delta" ; ls|grep naive-|while read -r line; do cat $line/res/naive.csv|grep -Po "\d*µs"|grep -Po "\d*"; done } > naive_latencies_global.csv
|
||||||
|
echo "naive latencies distri"
|
||||||
|
{ echo "hs,type,delta";ls|grep naive-|while read -r line; do cat $line/res/naive.csv|grep -Po "\d*µs"|grep -Po "\d*"|python3 ./format-data.py $line; done } > naive_latencies_distri.csv
|
||||||
|
|
||||||
|
echo "rr latencies global"
|
||||||
|
{ echo "delta" ; ls|grep rr-|while read -r line; do cat $line/res/rr.csv|grep -Po "\d*µs"|grep -Po "\d*"; done } > rr_latencies_global.csv
|
||||||
|
echo "rr latencies distri"
|
||||||
|
{ echo "hs,type,delta";ls|grep rr-|while read -r line; do cat $line/res/rr.csv|grep -Po "\d*µs"|grep -Po "\d*"|python3 ./format-data.py $line; done } > rr_latencies_distri.csv
|
||||||
|
|
||||||
|
echo "rrh latencies global"
|
||||||
|
{ echo "delta" ; ls|grep rrh-|while read -r line; do cat $line/res/rrh.csv|grep -Po "\d*µs"|grep -Po "\d*"; done } > rrh_latencies_global.csv
|
||||||
|
echo "rrh latencies distri"
|
||||||
|
{ echo "hs,type,delta";ls|grep rrh-|while read -r line; do cat $line/res/rrh.csv|grep -Po "\d*µs"|grep -Po "\d*"|python3 ./format-data.py $line; done } > rrh_latencies_distri.csv
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue