(self, *a, **kw)
| 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 | |
| 71 | def can_link_svml(): |
| 72 | """SVML library is supported only on x86_64 architecture and currently |
no test coverage detected