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

Function hasassumedshape

numpy/f2py/auxfuncs.py:299–307  ·  view source on GitHub ↗
(rout)

Source from the content-addressed store, hash-verified

297
298
299def hasassumedshape(rout):
300 if rout.get('hasassumedshape'):
301 return True
302 for a in rout['args']:
303 for d in rout['vars'].get(a, {}).get('dimension', []):
304 if d == ':':
305 rout['hasassumedshape'] = True
306 return True
307 return False
308
309
310def requiresf90wrapper(rout):

Callers 2

issubroutine_wrapFunction · 0.85
requiresf90wrapperFunction · 0.85

Calls 1

getMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…