(x, y)
| 463 | |
| 464 | def test_map_overlap_multiarray_block_broadcast(): |
| 465 | def func(x, y): |
| 466 | # Return result with expected padding |
| 467 | z = x.size + y.size |
| 468 | return np.ones((3, 3)) * z |
| 469 | |
| 470 | # Chunks in trailing dimension will be unified to two chunks of size 6 |
| 471 | # and block broadcast will allow chunks from x to repeat |