You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
594 B

2 years ago
  1. #!/usr/bin/env bash
  2. #Fail out on error
  3. set -e
  4. cd ..
  5. cd hyperplonk
  6. # Run the benchmark binary
  7. RAYON_NUM_THREADS=64 cargo bench --no-default-features --features=bench
  8. RAYON_NUM_THREADS=32 cargo bench --no-default-features --features=bench
  9. RAYON_NUM_THREADS=16 cargo bench --no-default-features --features=bench
  10. RAYON_NUM_THREADS=8 cargo bench --no-default-features --features=bench
  11. RAYON_NUM_THREADS=4 cargo bench --no-default-features --features=bench
  12. RAYON_NUM_THREADS=2 cargo bench --no-default-features --features=bench
  13. RAYON_NUM_THREADS=1 cargo bench --no-default-features --features=bench