You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
463 B
Bash
23 lines
463 B
Bash
#!/usr/bin/env bash
|
|
#SBATCH -o perf-$j.out
|
|
#SBATCH -e perf-%j.err
|
|
#SBATCH -N 1
|
|
#SBATCH --ntasks-per-node 32
|
|
#SBATCH --partition=free-rider
|
|
|
|
hostname
|
|
date
|
|
|
|
source /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
|
|
|
|
# vuelca lista de nodos asignados a un archivo "nodefile"
|
|
nodelist=$(scontrol show hostname $SLURM_NODELIST)
|
|
printf "%s\n" "${nodelist[@]}" > nodefile
|
|
|
|
source venv/bin/activate
|
|
|
|
# ejecuta mpirun con el nodefile creado
|
|
make perf
|
|
|
|
rm nodefile
|