()
| 406 | |
| 407 | |
| 408 | def test_uneven_chunks(): |
| 409 | a = Array({}, "x", chunks=(3, 3), shape=(10, 10), dtype="f8") |
| 410 | assert a.chunks == ((3, 3, 3, 1), (3, 3, 3, 1)) |
| 411 | |
| 412 | |
| 413 | def test_numblocks_supports_singleton_block_dims(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…