(a, **kwargs)
| 253 | |
| 254 | |
| 255 | def empty_like(a, **kwargs): |
| 256 | xp = get_array_namespace(a) |
| 257 | return xp.empty_like(a, **kwargs) |
| 258 | |
| 259 | |
| 260 | def astype(data, dtype, *, xp=None, **kwargs): |
nothing calls this directly
no test coverage detected
searching dependent graphs…