1
General Questions and Answers / Re: Problem running QuantumATK X-2025.06 in parallel with SLURM
« on: September 1, 2025, 15:48 »
Hi Pshinyeong, QuantumATK ships it's own version of Intel MPI. The version shipped with QuantumATK X-2025.06 is Intel MPI 2021.15 which comes with Intel oneAPI 2024.2 (I believe), which is newer than the one you load in your job script. Newer versions of Intel MPI are not necessarily compatible with older versions, so that could be why it fails.
I suggest that you do not use a custom Intel MPI version unless you really, REALLY know what you're doing. So instead of loading oneAPI or OpenMPI as you would maybe normally do for other academic software your simply don't. QuantumATK is a self-container plug-and-play solution that works as-is without any installed libraries or tools.
So I recommend you remove the module loads and simply have this line to launch your job:
If in doubt - use the built in job manager GUI to set up submission scripts for Slurm.
I suggest that you do not use a custom Intel MPI version unless you really, REALLY know what you're doing. So instead of loading oneAPI or OpenMPI as you would maybe normally do for other academic software your simply don't. QuantumATK is a self-container plug-and-play solution that works as-is without any installed libraries or tools.
So I recommend you remove the module loads and simply have this line to launch your job:
Code
srun /path/to/atkpython $PYTHON_SCRIPT > $LOG_FILE
If in doubt - use the built in job manager GUI to set up submission scripts for Slurm.