A triangle counting assignment for A.U.TH Parallel and distributed systems class.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

20 lignes
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=2
  6. #SBATCH --output=ntasks2.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