Skip to content

Commit

Permalink
Merge pull request #55 from SeisSol/fugaku
Browse files Browse the repository at this point in the history
Pspamm a64fx
  • Loading branch information
davschneller authored Aug 16, 2023
2 parents a7aef34 + e8575ed commit c788a85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion yateto/codegen/gemm/gemmgen.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def __call__(self, routineName, fileName):
self._gemmDescr['alpha'],
self._gemmDescr['beta'],
'--arch',
cpu_arch,
'arm_sve' if cpu_arch == 'a64fx' else cpu_arch,
'--prefetching',
self._gemmDescr['prefetch'],
'--output_funcname',
Expand Down
2 changes: 1 addition & 1 deletion yateto/gemm_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def __init__(self, arch, cmd: str = 'pspamm.py', threshold: int = 128):
self._threshold = threshold

def _archSupported(self):
supported_set = {'thunderx2t99', 'knl', 'skx'}
supported_set = {'thunderx2t99', 'knl', 'skx', 'a64fx'}
if self._arch.name.lower() in supported_set:
return True
else:
Expand Down

0 comments on commit c788a85

Please sign in to comment.