MCPcopy Create free account
hub / github.com/numpy/numpy / get_flags_arch_f77

Method get_flags_arch_f77

numpy/distutils/fcompiler/mips.py:36–45  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

34 break
35 return opt
36 def get_flags_arch_f77(self):
37 r = None
38 if cpu.is_r10000(): r = 10000
39 elif cpu.is_r12000(): r = 12000
40 elif cpu.is_r8000(): r = 8000
41 elif cpu.is_r5000(): r = 5000
42 elif cpu.is_r4000(): r = 4000
43 if r is not None:
44 return ['r%s' % (r)]
45 return []
46 def get_flags_arch_f90(self):
47 r = self.get_flags_arch_f77()
48 if r:

Callers 1

get_flags_arch_f90Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected