We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 951d00b commit 97c8dd3Copy full SHA for 97c8dd3
1 file changed
easybuild/toolchains/nvhpc.py
@@ -48,8 +48,8 @@ class NVHPC(NvidiaCompilersToolchain, NVHPCX, NVBLAS, NVScaLAPACK):
48
def __new__(cls, *args, **kwargs):
49
tcdepnames = {dep['name'] for dep in kwargs.get('tcdeps', [])}
50
if 'GCCcore' in tcdepnames:
51
- # The newer higher level toolchains depend on nvidia-compilers
52
- # instead of GCCcore
+ # legacy NVHPC toolchains are compiler-only toolchains
+ # on top of GCCcore, switch to corresponding class
53
return NVHPCToolchain(*args, **kwargs)
54
else:
55
return super().__new__(cls)
0 commit comments