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

Function scrubF2CSource

numpy/linalg/lapack_lite/make_lite.py:274–280  ·  view source on GitHub ↗
(c_file)

Source from the content-addressed store, hash-verified

272 raise F2CError
273
274def scrubF2CSource(c_file):
275 with open(c_file) as fo:
276 source = fo.read()
277 source = clapack_scrub.scrubSource(source, verbose=True)
278 with open(c_file, 'w') as fo:
279 fo.write(HEADER)
280 fo.write(source)
281
282def ensure_executable(name):
283 try:

Callers 1

mainFunction · 0.85

Calls 3

openFunction · 0.85
readMethod · 0.45
writeMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…