run_sims.in 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. #!/bin/bash
  2. seed="$1"
  3. if [ "$seed" == "" ]; then
  4. echo "Usage: $0 seed"
  5. exit 1
  6. fi
  7. # Uncomment the ones you want to run. Note that each one takes only one
  8. # core, but a nontrivial amount of RAM (estimated in the line above).
  9. ## 12 GiB
  10. #screen -t v1 python3 simulator.py vanilla none .05 10 $seed logdir
  11. ## 25 GiB
  12. #screen -t v2 python3 simulator.py vanilla none .1 10 $seed logdir
  13. ## 37 GiB
  14. #screen -t v3 python3 simulator.py vanilla none .15 10 $seed logdir
  15. ## 50 GiB
  16. #screen -t v4 python3 simulator.py vanilla none .2 10 $seed logdir
  17. ## 60 GiB
  18. #screen -t v5 python3 simulator.py vanilla none .25 10 $seed logdir
  19. ## 76 GiB
  20. #screen -t v6 python3 simulator.py vanilla none .30 10 $seed logdir
  21. ## 13 GiB
  22. #screen -t tt1 python3 simulator.py telescoping threshsig .05 10 $seed logdir
  23. ## 24 GiB
  24. #screen -t tt2 python3 simulator.py telescoping threshsig .1 10 $seed logdir
  25. ## 38 GiB
  26. #screen -t tt3 python3 simulator.py telescoping threshsig .15 10 $seed logdir
  27. ## 48 GiB
  28. #screen -t tt4 python3 simulator.py telescoping threshsig .2 10 $seed logdir
  29. ## 66 GiB
  30. #screen -t tt5 python3 simulator.py telescoping threshsig .25 10 $seed logdir
  31. ## 66 GiB
  32. #screen -t tt6 python3 simulator.py telescoping threshsig .30 10 $seed logdir
  33. ## 13 GiB
  34. #screen -t tm1 python3 simulator.py telescoping merkle .05 10 $seed logdir
  35. ## 24 GiB
  36. #screen -t tm2 python3 simulator.py telescoping merkle .1 10 $seed logdir
  37. ## 39 GiB
  38. #screen -t tm3 python3 simulator.py telescoping merkle .15 10 $seed logdir
  39. ## 48 GiB
  40. #screen -t tm4 python3 simulator.py telescoping merkle .2 10 $seed logdir
  41. ## 67 GiB
  42. #screen -t tm5 python3 simulator.py telescoping merkle .25 10 $seed logdir
  43. ## 69 GiB
  44. #screen -t tm6 python3 simulator.py telescoping merkle .30 10 $seed logdir
  45. ## 13 GiB
  46. #screen -t st1 python3 simulator.py singlepass threshsig .05 10 $seed logdir
  47. ## 24 GiB
  48. #screen -t st2 python3 simulator.py singlepass threshsig .1 10 $seed logdir
  49. ## 35 GiB
  50. #screen -t st3 python3 simulator.py singlepass threshsig .15 10 $seed logdir
  51. ## 49 GiB
  52. #screen -t st4 python3 simulator.py singlepass threshsig .2 10 $seed logdir
  53. ## 59 GiB
  54. #screen -t st5 python3 simulator.py singlepass threshsig .25 10 $seed logdir
  55. ## 71 GiB
  56. #screen -t st6 python3 simulator.py singlepass threshsig .30 10 $seed logdir
  57. ## 13 GiB
  58. #screen -t sm1 python3 simulator.py singlepass merkle .05 10 $seed logdir
  59. ## 24 GiB
  60. #screen -t sm2 python3 simulator.py singlepass merkle .1 10 $seed logdir
  61. ## 36 GiB
  62. #screen -t sm3 python3 simulator.py singlepass merkle .15 10 $seed logdir
  63. ## 51 GiB
  64. #screen -t sm4 python3 simulator.py singlepass merkle .2 10 $seed logdir
  65. ## 59 GiB
  66. #screen -t sm5 python3 simulator.py singlepass merkle .25 10 $seed logdir
  67. ## 75 GiB
  68. #screen -t sm6 python3 simulator.py singlepass merkle .30 10 $seed logdir