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 ae0a9f6 commit fc4a1bbCopy full SHA for fc4a1bb
devito/arch/compiler.py
@@ -66,7 +66,10 @@ def sniff_compiler_version(cc, allow_fail=False):
66
elif ver.startswith("icx"):
67
compiler = "icx"
68
elif ver.startswith("pgcc"):
69
- raise CompilationError('Portland compiler no longer supported')
+ raise CompilationError(
70
+ 'Portland compiler no longer supported,'
71
+ ' use `nvc` from the nvidia HPC SDK instead'
72
+ )
73
elif ver.startswith("nvc++"):
74
compiler = "nvc"
75
elif ver.startswith("cray"):
0 commit comments