|
@@ -10,7 +10,7 @@ cd ..
|
|
|
|
|
|
for itr in $(seq 1 1); do
|
|
|
for heapsize in $(seq 16 2 26); do
|
|
|
- echo $heapsize
|
|
|
+
|
|
|
input_file="repro/data/log_basic_heap_extract_online_${heapsize}_itr_${itr}"
|
|
|
output=$(python3 repro/extract_data.py "$input_file")
|
|
|
|
|
@@ -26,7 +26,6 @@ for itr in $(seq 1 1); do
|
|
|
python3 repro/append-experiment-results.py $datafile $DS $Operation $optimization_flag $heapsize $extract_wc
|
|
|
|
|
|
input_file="repro/data/log_opt_heap_extract_online_${heapsize}_itr_${itr}"
|
|
|
- echo $input_file
|
|
|
output=$(python3 repro/extract_data.py "$input_file")
|
|
|
|
|
|
# Read the output into an array
|
|
@@ -40,7 +39,7 @@ for itr in $(seq 1 1); do
|
|
|
done
|
|
|
|
|
|
cat $datafile
|
|
|
-echo "\n\n"
|
|
|
+echo -e "\n\n"
|
|
|
|
|
|
for itr in $(seq 1 1); do
|
|
|
for heapsize in $(seq 16 2 26); do
|
|
@@ -70,7 +69,7 @@ done
|
|
|
|
|
|
|
|
|
cat $datafile
|
|
|
-echo "\n\n"
|
|
|
+echo -e "\n\n"
|
|
|
|
|
|
# Replace "python3" with your Python interpreter if needed
|
|
|
DS="Heap"
|
|
@@ -100,11 +99,11 @@ for itr in $(seq 1 1); do
|
|
|
done
|
|
|
|
|
|
cat $datafile
|
|
|
-echo "\n---------\n"
|
|
|
+echo -e "\n\n"
|
|
|
|
|
|
for itr in $(seq 1 1); do
|
|
|
for heapsize in $(seq 16 2 26); do
|
|
|
- echo ${heapsize}
|
|
|
+
|
|
|
input_file="repro/data/log_basic_heap_insert_preproc_${heapsize}_itr_$itr"
|
|
|
output=$(python3 repro/extract_data_from_preproc.py "$input_file")
|
|
|
# Read the output into an array
|