批量作业提交失败:请求的节点配置不可用 SLURM

Batch job submission failed: Requested node configuration is not available SLURM

我正在尝试使用 slurm 提交 bash 作业脚本。以下内容包含在我的 bash 脚本中:

#SBATCH --partition=normal
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=8
#SBATCH --cpus-per-task=2
#SBATCH --gres=gpu:v100d32q:1
#SBATCH --mem=12000
#SBATCH --time=0-01:00:00

我似乎无法理解为什么会出现以下错误:

sbatch: error: Batch job submission failed: Requested node configuration is not available

我知道以前有人问过这个问题。但似乎无法找到解决方案

我通过删除以下内容解决了错误:

#SBATCH --gres=gpu:v100d32q:1

计算愉快!