<span>Hello,</span><div><span>I'm performing some tests (CPU-only systems) in order to compare MPI versus hybrid setup. The system is running OpenMPIv4.1.2 so that a job submission reads:</span></div><div><span>      mpirun -np 48 foo.exe</span></div><div><span>or </span></div><div><span>      export OMP_NUM_THREADS=8</span></div><div><span>      mpirun -np 6 foo.exe</span></div><div><span>In our system, the latter runs slightly faster (about 5 to 10%) but any performance gain/loss will depend on the system & app. </span></div><div><span>In the same system and for the same app, the first SLURM script reads:</span></div><div><span>      #!/bin/bash</span></div><div><span>      #SBATCH --job-name=***</span></div><div><span>      #SBATCH --output=*                   </span></div><div><span>      #SBATCH --ntasks=48</span></div><div><span>      mpirun foo.exe </span></div><div><span>This script runs fine. Then, and for the hybrid job, the script reads: </span></div><div><span>      #!/bin/bash</span></div><div><span>      #SBATCH --job-name=***hybrid</span></div><div><span>      #SBATCH --output=*** </span></div><div><span>      #SBATCH --ntasks=6       </span></div><div><span>      #SBATCH --cpus-per-task=8        </span></div><div><span>      export OMP_NUM_THREADS=$SLURM_CPUS_PER_TASK</span></div><div><span>      mpirun foo.exe </span></div><div><span>However, this runs much slower and it seems to slow down even more as it moves forward. Something is obviously not clicking correctly for the latter case. My only explanation is that the threads are not forked out correctly (by this I mean that the 8 threads are not assigned to the cores sharing the same L3). OpenMPI is supposed to choose the path of least resistance but I was wondering if I might need to recompile OpenMPI with some extra flags or modify the SLURM script somehow.    </span></div><div><span>Thanks.</span></div><span></span><br>