From c041926ce54a8317cd327381c810856c448775a7 Mon Sep 17 00:00:00 2001 From: Sebastian Achilles <s.achilles@fz-juelich.de> Date: Thu, 10 Jun 2021 17:18:32 +0200 Subject: [PATCH] fix typo in nompi toolchain --- Custom_Toolchains/nompi.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Custom_Toolchains/nompi.py b/Custom_Toolchains/nompi.py index debcce03b..aeb4b29b2 100644 --- a/Custom_Toolchains/nompi.py +++ b/Custom_Toolchains/nompi.py @@ -24,7 +24,7 @@ # along with EasyBuild. If not, see <http://www.gnu.org/licenses/>. ## """ -EasyBuild support for nompi compiler toolchain (includes NVHPC and ParaStationMPI, and CUDA as dependency). +EasyBuild support for nompi compiler toolchain (includes NVHPC and OpenMPI, and CUDA as dependency). @author: Damian Alvarez (Forschungszentrum Juelich) """ @@ -35,6 +35,8 @@ from easybuild.toolchains.mpi.openmpi import OpenMPI from easybuild.toolchains.compiler.cuda import Cuda # Order matters! + + class Ompi(NvhpcToolchain, Cuda, OpenMPI): """Compiler toolchain with NVHPC and OpenMPI, with CUDA as dependency.""" NAME = 'nompi' -- GitLab