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 afa6558 commit da91065Copy full SHA for da91065
easybuild/tools/options.py
@@ -1007,7 +1007,7 @@ def validate(self):
1007
amdgcn_cc_regex = re.compile(r'gfx[0-9]+[a-z]?$')
1008
# Generic convention.
1009
# Regex is not perfect, as it doesn't catch gfx[...]--generic
1010
- amdgcn_generic_regex = re.compile(r'gfx[0-9]+[-]?[0-9]?-generic$')
+ amdgcn_generic_regex = re.compile(r'gfx[0-9]+(\-[0-9])?-generic$')
1011
faulty_amdgcn_ccs = [x for x in self.options.amdgcn_capabilities
1012
if not amdgcn_cc_regex.match(x) and not amdgcn_generic_regex.match(x)]
1013
if faulty_amdgcn_ccs:
0 commit comments