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

Method addIgnorableRoutine

numpy/linalg/lapack_lite/make_lite.py:121–127  ·  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

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

Callers 1

getLapackRoutinesFunction · 0.80

Calls 2

lowerMethod · 0.80

Tested by

no test coverage detected