的个人主页 http://faculty.ustc.edu.cn/gaoankang/zh_CN/index.htm
Load modules
module load compiler-rt/2024.1.0 compiler/2024.1.0 mkl/2024.1 mpi/latest
clone the code
git clone git@github.com:gaoak/feicar3d.git
make and run
#!/bin/sh #SBATCH -J 3D2Dcase #SBATCH -o job-%j.log #SBATCH -e job-%j.err #SBATCH -p CPU-96C3TB #SBATCH -N 1 #SBATCH -n 64 #SBATCH --time=4:10:0 #SBATCH --qos=qos_cpu_96c3tb echo Time is `date` echo Directory is $PWD echo This job runs on the following nodes: echo $SLURM_JOB_NODELIST echo This job has allocated $SLURM_JOB_CPUS_PER_NODE cpu cores. export NEK_BUILD=/home/ses/agao20/code/feicar-dev mpirun -np 64 $NEK_BUILD/feicar3d > runlog 2>&1