(x: NamedArray[Any, Any])
| 22 | |
| 23 | |
| 24 | def _get_data_namespace(x: NamedArray[Any, Any]) -> ModuleType: |
| 25 | if isinstance(x._data, _arrayapi): |
| 26 | return x._data.__array_namespace__() |
| 27 | |
| 28 | return np |
| 29 | |
| 30 | |
| 31 | # %% Creation Functions |
no test coverage detected
searching dependent graphs…