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.
|
- #! /usr/bin/env bash
-
- #SBATCH --time=20:00
- #SBATCH --partition=batch
- #SBATCH --nodes=1
- #SBATCH --ntasks-per-node=5
- #SBATCH --output=ntasks5.out
-
- module load gcc/9.2.0 openmpi/3.1.6
- LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/lib
-
- export OMP_NUM_THREADS=$SLURM_NTASKS
- export CILK_NWORKERS=$SLURM_NTASKS
-
- ./runall.sh mtx/belgium_osm.mtx 8
- ./runall.sh mtx/com-Youtube.mtx 8
- ./runall.sh mtx/dblp-2010.mtx 8
- ./runall.sh mtx/mycielskian13.mtx 8
- ./runall.sh mtx/NACA0015.mtx 8
|