We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3d5570 commit a82abc4Copy full SHA for a82abc4
easybuild/toolchains/nvompic.py
@@ -30,14 +30,14 @@
30
@author: Sebastian Achilles (Forschungszentrum Juelich)
31
"""
32
33
-from easybuild.toolchains.nvhpc import NvhpcToolchain
+from easybuild.toolchains.nvhpc import NVHPCToolchain
34
# We pull in MPI and CUDA at once so this maps nicely to HMNS
35
from easybuild.toolchains.mpi.openmpi import OpenMPI
36
from easybuild.toolchains.compiler.cuda import Cuda
37
38
39
# Order matters!
40
-class NVompic(NvhpcToolchain, Cuda, OpenMPI):
+class NVompic(NVHPCToolchain, Cuda, OpenMPI):
41
"""Compiler toolchain with NVHPC and OpenMPI, with CUDA as dependency."""
42
NAME = 'nvompic'
43
- SUBTOOLCHAIN = NvhpcToolchain.NAME
+ SUBTOOLCHAIN = NVHPCToolchain.NAME
0 commit comments