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.

10 lines
558 B

2 years ago
  1. #!/bin/bash
  2. cd ..
  3. cd hyperplonk
  4. # Run the benchmark binary
  5. RAYON_NUM_THREADS=64 cargo bench --no-default-features --features=bench
  6. RAYON_NUM_THREADS=32 cargo bench --no-default-features --features=bench
  7. RAYON_NUM_THREADS=16 cargo bench --no-default-features --features=bench
  8. RAYON_NUM_THREADS=8 cargo bench --no-default-features --features=bench
  9. RAYON_NUM_THREADS=4 cargo bench --no-default-features --features=bench
  10. RAYON_NUM_THREADS=2 cargo bench --no-default-features --features=bench
  11. RAYON_NUM_THREADS=1 cargo bench --no-default-features --features=bench