Skip to content
Snippets Groups Projects
Commit c858b920 authored by GOSSA JULIEN's avatar GOSSA JULIEN
Browse files

Update script.sh

parent 56023bba
Branches patch-2
No related merge requests found
...@@ -26,9 +26,8 @@ for size in ${structSize[*]}; do ...@@ -26,9 +26,8 @@ for size in ${structSize[*]}; do
for operation in ${operationType[*]}; do for operation in ${operationType[*]}; do
for opSize in ${nbrOperation[*]}; do for opSize in ${nbrOperation[*]}; do
for type in ${structType[*]}; do for type in ${structType[*]}; do
echo -ne "$size\t$operation\t$nbrOperation\t$type"
res=$((/usr/bin/time -f "\t%U\t%M" java Main.java $type $size $operation $nbrOperation) 2>&1) res=$((/usr/bin/time -f "\t%U\t%M" java Main.java $type $size $operation $nbrOperation) 2>&1)
echo $res >> perf.dat echo -e "$size\t$operation\t$nbrOperation\t$type\t$res"
done done
done done
done done
......
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