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

Class UnknownFortranRoutine

numpy/linalg/lapack_lite/make_lite.py:91–101  ·  view source on GitHub ↗

Wrapper for a Fortran routine for which the corresponding file is not known.

Source from the content-addressed store, hash-verified

89 return f"FortranRoutine({self.name!r}, filename={self.filename!r})"
90
91class UnknownFortranRoutine(FortranRoutine):
92 """Wrapper for a Fortran routine for which the corresponding file
93 is not known.
94 """
95 type = 'unknown'
96
97 def __init__(self, name):
98 FortranRoutine.__init__(self, name=name, filename='<unknown>')
99
100 def dependencies(self):
101 return []
102
103class FortranLibrary:
104 """Container for a bunch of Fortran routines.

Callers 2

_findRoutineMethod · 0.85
addIgnorableRoutineMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…