8000 BUG: mips doesn't use REAL(10) · matoro/numpy@022e8ae · GitHub
[go: up one dir, main page]

Skip to content

Commit 022e8ae

Browse files
committed
BUG: mips doesn't use REAL(10)
Same as e.g. loongarch per numpygh-24904, alpha per numpygh-25078, etc...
1 parent 94bc564 commit 022e8ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numpy/f2py/crackfortran.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2466,7 +2466,7 @@ def _selected_real_kind_func(p, r=0, radix=0):
24662466
if p < 16:
24672467
return 8
24682468
machine = platform.machine().lower()
2469-
if machine.startswith(('aarch64', 'alpha', 'arm64', 'loongarch', 'power', 'ppc', 'riscv', 's390x', 'sparc')):
2469+
if machine.startswith(('aarch64', 'alpha', 'arm64', 'loongarch', 'mips', 'power', 'ppc', 'riscv', 's390x', 'sparc')):
24702470
if p <= 33:
24712471
return 16
24722472
else:

0 commit comments

Comments
 (0)
0