generate_raw_data_heap.sh 1.0 KB

1234567891011121314151617181920212223
  1. nitrs=2
  2. cd ..
  3. for itr in $(seq 1 $nitrs); do
  4. ./docker/run-experiment 16 96 > "prac/data/log_16_1_heap_itr_$itr"
  5. echo "one heap extract on heapsize of 2^16"
  6. ./docker/run-experiment 18 108 > "prac/data/log_18_1_heap_itr_$itr"
  7. echo "one heap extract on heapsize of 2^18"
  8. ./docker/run-experiment 20 120 > "prac/data/log_20_1_heap_itr_$itr"
  9. echo "one heap extract on heapsize of 2^20"
  10. ./docker/run-experiment 22 132 > "prac/data/log_22_1_heap_itr_$itr"
  11. echo "one heap extract on heapsize of 2^22"
  12. ./docker/run-experiment 24 144 > "prac/data/log_24_1_heap_itr_$itr"
  13. echo "one heap extract on heapsize of 2^24"
  14. ./docker/run-experiment 26 156 > "prac/data/log_26_1_heap_itr_$itr"
  15. echo "one heap extract on heapsize of 2^26"
  16. ./docker/run-experiment 28 168 > "prac/data/log_28_1_heap_itr_$itr"
  17. echo "one heap extract on heapsize of 2^28"
  18. ./docker/run-experiment 30 180 > "prac/data/log_30_1_heap_itr_$itr"
  19. echo "one heap extract on heapsize of 2^30"
  20. done