你已经派生过 gprMax
镜像自地址
https://gitee.com/sunhf/gprMax.git
已同步 2025-08-07 15:10:13 +08:00
18 行
473 B
Bash
18 行
473 B
Bash
#!/bin/bash
|
|
#SBATCH --job-name=gprMax-tests
|
|
#SBATCH --time=24:0:0
|
|
#SBATCH --ntasks=1
|
|
#SBATCH --partition=serial
|
|
#SBATCH --qos=serial
|
|
|
|
# Set the number of threads to 1
|
|
# This prevents any threaded system libraries from automatically
|
|
# using threading.
|
|
export OMP_NUM_THREADS=1
|
|
|
|
source ../.venv/bin/activate
|
|
|
|
reframe -C configuration/archer2_settings.py -c . -r --performance-report
|
|
|
|
sacct --format=JobID,State,Submit,Start,End,Elapsed,NodeList --units=M -j $SLURM_JOBID
|