Skip to content

Commit fc4a1bb

Browse files
committed
misc: Code review
1 parent ae0a9f6 commit fc4a1bb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

devito/arch/compiler.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,10 @@ def sniff_compiler_version(cc, allow_fail=False):
6666
elif ver.startswith("icx"):
6767
compiler = "icx"
6868
elif ver.startswith("pgcc"):
69-
raise CompilationError('Portland compiler no longer supported')
69+
raise CompilationError(
70+
'Portland compiler no longer supported,'
71+
' use `nvc` from the nvidia HPC SDK instead'
72+
)
7073
elif ver.startswith("nvc++"):
7174
compiler = "nvc"
7275
elif ver.startswith("cray"):

0 commit comments

Comments
 (0)