Skip to content

Commit

Permalink
Merge pull request numpy#25078 from matoro/main
Browse files Browse the repository at this point in the history
BUG: alpha doesn't use REAL(10)
  • Loading branch information
mattip authored Nov 13, 2023
2 parents 58cbbe0 + 43aaf20 commit 3b98c61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpy/f2py/crackfortran.py
Original file line number Diff line number Diff line change
Expand Up @@ -2452,7 +2452,7 @@ def _selected_real_kind_func(p, r=0, radix=0):
if p < 16:
return 8
machine = platform.machine().lower()
if machine.startswith(('aarch64', 'arm64', 'loongarch', 'power', 'ppc', 'riscv', 's390x', 'sparc')):
if machine.startswith(('aarch64', 'alpha', 'arm64', 'loongarch', 'power', 'ppc', 'riscv', 's390x', 'sparc')):
if p <= 33:
return 16
else:
Expand Down

0 comments on commit 3b98c61

Please sign in to comment.