A triangle counting assignment for A.U.TH Parallel and distributed systems class.
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.
 
 
 
 
 
 

20 lines
465 B

  1. #! /usr/bin/env bash
  2. #SBATCH --time=20:00
  3. #SBATCH --partition=batch
  4. #SBATCH --nodes=1
  5. #SBATCH --ntasks-per-node=8
  6. #SBATCH --output=ntasks8.out
  7. module load gcc/9.2.0 openmpi/3.1.6
  8. LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/lib
  9. export OMP_NUM_THREADS=$SLURM_NTASKS
  10. export CILK_NWORKERS=$SLURM_NTASKS
  11. ./runall.sh mtx/belgium_osm.mtx 8
  12. ./runall.sh mtx/com-Youtube.mtx 8
  13. ./runall.sh mtx/dblp-2010.mtx 8
  14. ./runall.sh mtx/mycielskian13.mtx 8
  15. ./runall.sh mtx/NACA0015.mtx 8