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

Method check_complex

numpy/core/setup.py:63–69  ·  view source on GitHub ↗
(self, *a, **kw)

Source from the content-addressed store, hash-verified

61 return out
62
63 def check_complex(self, *a, **kw):
64 if self._check_complex is None:
65 out = check_complex(*a, **kw)
66 self._check_complex = pickle.dumps(out)
67 else:
68 out = copy.deepcopy(pickle.loads(self._check_complex))
69 return out
70
71def can_link_svml():
72 """SVML library is supported only on x86_64 architecture and currently

Callers 2

generate_config_hFunction · 0.80
generate_numpyconfig_hFunction · 0.80

Calls 1

check_complexFunction · 0.85

Tested by

no test coverage detected