Scripts
This commit is contained in:
16
in/scripts/benchmark_abs1.sh
Normal file
16
in/scripts/benchmark_abs1.sh
Normal file
@@ -0,0 +1,16 @@
|
||||
#!/bin/sh
|
||||
for y in 1 2; do
|
||||
for x in `seq 1 60`;do
|
||||
echo $x
|
||||
filename="results/abs_v${y}_f0_n${x}.out"
|
||||
echo "$x" > $filename
|
||||
./gen_abstract1.py $x $y > tmp.rs
|
||||
../main -z -c -p -v -B tmp.rs >&1 >> $filename
|
||||
result="$(tail -1 $filename | sed "s/STAT/$x /")"
|
||||
echo $result >> results/summary_v${y}_abs_f0.out
|
||||
echo $result
|
||||
echo
|
||||
done
|
||||
done
|
||||
|
||||
rm tmp.rs
|
||||
Reference in New Issue
Block a user