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

Method addIgnorableRoutine

numpy/linalg/lapack_lite/make_lite.py:120–126  ·  view source on GitHub ↗

Add a routine that we don't want to consider when looking at dependencies.

(self, rname)

Source from the content-addressed store, hash-verified

118 return FortranRoutine(rname, filename)
119
120 def addIgnorableRoutine(self, rname):
121 """Add a routine that we don't want to consider when looking at
122 dependencies.
123 """
124 rname = rname.lower()
125 routine = UnknownFortranRoutine(rname)
126 self.names_to_routines[rname] = routine
127
128 def addRoutine(self, rname):
129 """Add a routine to the library.

Callers 1

getLapackRoutinesFunction · 0.80

Calls 2

lowerMethod · 0.80

Tested by

no test coverage detected