(array, shape)
| 314 | |
| 315 | |
| 316 | def broadcast_to(array, shape): |
| 317 | xp = get_array_namespace(array) |
| 318 | return xp.broadcast_to(array, shape) |
| 319 | |
| 320 | |
| 321 | def lazy_array_equiv(arr1, arr2): |
nothing calls this directly
no test coverage detected
searching dependent graphs…