MCPcopy Index your code
hub / github.com/numpy/numpy / getWrappedRoutineNames

Function getWrappedRoutineNames

numpy/linalg/lapack_lite/make_lite.py:227–241  ·  view source on GitHub ↗
(wrapped_routines_file)

Source from the content-addressed store, hash-verified

225 return library
226
227def getWrappedRoutineNames(wrapped_routines_file):
228 routines = []
229 ignores = []
230 with open(wrapped_routines_file) as fo:
231 for line in fo:
232 line = line.strip()
233 if not line or line.startswith('#'):
234 continue
235 if line.startswith('IGNORE:'):
236 line = line[7:].strip()
237 ig = line.split()
238 ignores.extend(ig)
239 else:
240 routines.append(line)
241 return routines, ignores
242
243
244types = {'blas', 'lapack', 'd_lapack', 's_lapack', 'z_lapack', 'c_lapack', 'config'}

Callers 1

mainFunction · 0.85

Calls 4

openFunction · 0.85
stripMethod · 0.80
startswithMethod · 0.80
splitMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…