Skip to content

Commit

Permalink
arch: Add more nvidia archs
Browse files Browse the repository at this point in the history
  • Loading branch information
FabioLuporini committed Jan 24, 2025
1 parent 3d85383 commit b8de9ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions devito/arch/archinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
# Generic GPUs
'AMDGPUX', 'NVIDIAX', 'INTELGPUX',
# Nvidia GPUs
'AMPERE',
'VOLTA', 'AMPERE', 'HOPPER', 'BLACKWELL',
# Intel GPUs
'PVC', 'INTELGPUMAX', 'MAX1100', 'MAX1550']

Expand Down Expand Up @@ -912,7 +912,7 @@ def supports(self, query, language=None):
# Asynchronous pipeline loads -- introduced in Ampere
return True
elif query == 'tma' and cc >= 90:
# Tensor Memory Acceleratory -- introduced in Hopper
# Tensor Memory Accelerator -- introduced in Hopper
return True
else:
return False
Expand Down

0 comments on commit b8de9ec

Please sign in to comment.