Skip to content

Commit 5a3f128

Browse files
committed
arch: async-loads -> async-pipe
1 parent c95e299 commit 5a3f128

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
@@ -1140,7 +1140,7 @@ def supports(self, query, language=None):
11401140
warning(f"Couldn't establish if `query={query}` is supported on this "
11411141
"system. Assuming it is not.")
11421142
return False
1143-
elif query == 'async-loads' and cc >= 80:
1143+
elif query == 'async-pipe' and cc >= 80:
11441144
# Asynchronous pipeline loads -- introduced in Ampere
11451145
return True
11461146
elif query in ('tma', 'thread-block-cluster') and cc >= 90:
@@ -1157,7 +1157,7 @@ class Volta(NvidiaDevice):
11571157
class Ampere(Volta):
11581158

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

0 commit comments

Comments
 (0)