mstation 一体机常见错误

龙讯旷腾小于 1 分钟

mstation 一体机常见错误

Q: sinfo 显示节点状态为 drain

【解决方法】

scontrol update node=mstation state=idle

Q: 升级 PWMAT 后,提交作业报如下错误

升级 pwmat 为: intelmpi(2016) CUDA 8.0 最新版

...20220808/bin/PWmat: error while loading shared libraries:
libmpifort.so.12: cannot open shared object file: No such file or directory

【Root Cause】

升级后的 PWmat 采用 intel2016 编辑,需要加上 intel2016 的环境

【解决方法一】

在提交脚本加上如下脚本里的两条 source intel2016 环境的命令

cat pwmat-high-version.pbs
#PBS -N pwmat
#PBS -l nodes=1:ppn=4
#PBS -q batch
#PBS -l walltime=1000:00:00

source /opt/intel2016/compilers_and_libraries/linux/bin/compilervars.sh intel64
source /opt/intel2016/impi/5.1.3.181/bin64/mpivars.sh
which mpirun
cd $PBS_O_WORKDIR
mpirun -np 4 /home/test/PWMAT/20220808/bin/PWmat > output

【解决方法二】

将两条 source intel2016 环境的命令加到 ~/.bashrc 文件里.

上次编辑于:
贡献者: jiyunqq