Skip to content

Commit

Permalink
Merge pull request #2445 from devitocodes/graviton
Browse files Browse the repository at this point in the history
arch: fix graviton march
  • Loading branch information
mloubout authored Aug 20, 2024
2 parents 0e5be9a + 9bb508e commit 731f595
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion devito/arch/archinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,9 @@ def version(self):
@cached_property
def march(self):
if self.version >= 4:
return 'neoverse-n2'
return 'neoverse-v2'
elif self.version == 3:
return 'neoverse-v1'
else:
return 'neoverse-n1'

Expand Down

0 comments on commit 731f595

Please sign in to comment.