Skip to content

Commit fec3357

Browse files
committed
arch: async-loads -> async-pipe
1 parent c5891d2 commit fec3357

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
@@ -1038,7 +1038,7 @@ def supports(self, query, language=None):
10381038
warning(f"Couldn't establish if `query={query}` is supported on this "
10391039
"system. Assuming it is not.")
10401040
return False
1041-
elif query == 'async-loads' and cc >= 80:
1041+
elif query == 'async-pipe' and cc >= 80:
10421042
# Asynchronous pipeline loads -- introduced in Ampere
10431043
return True
10441044
elif query in ('tma', 'thread-block-cluster') and cc >= 90:
@@ -1055,7 +1055,7 @@ class Volta(NvidiaDevice):
10551055
class Ampere(Volta):
10561056

10571057
def supports(self, query, language=None):
1058-
if query == 'async-loads':
1058+
if query == 'async-pipe':
10591059
return True
10601060
else:
10611061
return super().supports(query, language)

0 commit comments

Comments
 (0)