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

Function check_func

numpy/core/setup.py:142–154  ·  view source on GitHub ↗
(
        func_name,
        decl=False,
        headers=["feature_detection_math.h", "feature_detection_cmath.h"],
    )

Source from the content-addressed store, hash-verified

140
141def check_math_capabilities(config, ext, moredefs, mathlibs):
142 def check_func(
143 func_name,
144 decl=False,
145 headers=["feature_detection_math.h", "feature_detection_cmath.h"],
146 ):
147 return config.check_func(
148 func_name,
149 libraries=mathlibs,
150 decl=decl,
151 call=True,
152 call_args=FUNC_CALL_ARGS[func_name],
153 headers=headers,
154 )
155
156 def check_funcs_once(
157 funcs_name,

Callers 1

check_funcsFunction · 0.85

Calls 1

check_funcMethod · 0.80

Tested by

no test coverage detected