(x, y)
| 1243 | ) |
| 1244 | |
| 1245 | def check(x, y): |
| 1246 | actual = parallel_add(x, y) |
| 1247 | assert isinstance(actual.data, da.Array) |
| 1248 | assert actual.data.chunks == array.chunks |
| 1249 | assert_identical(data_array, actual) |
| 1250 | |
| 1251 | check(data_array, 0) |
| 1252 | check(0, data_array) |
no test coverage detected
searching dependent graphs…