Commit 1cb75bf8 authored by Hejing Li's avatar Hejing Li
Browse files

ae: deterministic add output processing

parent 8409084b
#!/bin/bash
set -x
# Runs the same simulation by default five times.
if [ -z "$1" ]
then
......@@ -15,5 +15,11 @@ START=1
# Parse the json file into experiment's out_dir
for i in $(seq 1 $run_num);
do
mkdir -p out/dt-gt-ib-sw/${i}
python3 pyexps/log_parser.py out/dt-gt-ib-sw-$i.json
cat out/dt-gt-ib-sw/${i}/host.client.0 | awk '/system.pc.simbricks_0:/ {print $1}' > out/dt-gt-ib-sw/${i}/host_trim
done
diff out/dt-gt-ib-sw/1/host_trim out/dt-gt-ib-sw/2/host_trim > out/dt-gt-ib-sw/host_trim12.diff
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment