Skip to content

Commit d0de4ef

Browse files
committed
arch: async-loads -> async-pipe
1 parent b21e8eb commit d0de4ef

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

devito/arch/archinfo.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1139,7 +1139,7 @@ def supports(self, query, language=None):
11391139
warning(f"Couldn't establish if `query={query}` is supported on this "
11401140
"system. Assuming it is not.")
11411141
return False
1142-
elif query == 'async-loads' and cc >= 80:
1142+
elif query == 'async-pipe' and cc >= 80:
11431143
# Asynchronous pipeline loads -- introduced in Ampere
11441144
return True
11451145
elif query in ('tma', 'thread-block-cluster') and cc >= 90: # noqa: SIM103
@@ -1156,7 +1156,7 @@ class Volta(NvidiaDevice):
11561156
class Ampere(Volta):
11571157

11581158
def supports(self, query, language=None):
1159-
if query == 'async-loads':
1159+
if query == 'async-pipe':
11601160
return True
11611161
else:
11621162
return super().supports(query, language)

0 commit comments

Comments
 (0)