mirror of
https://github.com/amd/blis.git
synced 2026-05-04 22:41:11 +00:00
Details: - Added missing license header to bli_pwr9_asm_macros_12x6.h. - Reverted temporary changes to various files in 'test' and 'testsuite' directories. - Moved testsuite/jobscripts into testsuite/old. - Minor whitespace/comment changes across various files.
27 lines
466 B
Bash
27 lines
466 B
Bash
#!/bin/bash
|
|
|
|
# execute in the general partition
|
|
#SBATCH --partition=general
|
|
|
|
# execute with 40 processes/tasks
|
|
#SBATCH --ntasks=1
|
|
|
|
# maximum time is 30 minutes
|
|
#SBATCH --time=00:30:00
|
|
|
|
# job name is my_job
|
|
#SBATCH --job-name=blis
|
|
|
|
# send email for status updates
|
|
#SBATCH --mail-type=ALL,TIME_LIMIT
|
|
#SBATCH --mail-user=ntukanov
|
|
|
|
# change default output file name
|
|
#SBATCH --output=cfig.out
|
|
|
|
# load environment
|
|
module load gcc/8.2
|
|
|
|
# application execution
|
|
srun cfig.sh
|