21 lines
495 B
Plaintext
21 lines
495 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
#SBATCH -J ejp_trg
|
||
|
#SBATCH -o logs/ejp_trg.o%j
|
||
|
#SBATCH -e logs/ejp_trg.e%j
|
||
|
#SBATCH -p skx-dev
|
||
|
#SBATCH -N 1
|
||
|
#SBATCH -n 48
|
||
|
#SBATCH -t 00:05:00
|
||
|
#SBATCH --mail-user=mail@florianstecker.net
|
||
|
#SBATCH --mail-type=all
|
||
|
|
||
|
export LD_LIBRARY_PATH=$WORK/mps/lib:$LD_LIBRARY_PATH
|
||
|
|
||
|
d=$(date +%Y%m%d_%H%M%S)
|
||
|
|
||
|
nmax=895882 # up to reflection group word length 22
|
||
|
# nmax=11575 # up to reflection group word length 1
|
||
|
|
||
|
ibrun ./singular_values $nmax $SCRATCH/ejp_trg_restart $WORK/ejp_trg/output/result_$d
|