(self)
| 1360 | ): |
| 1361 | |
| 1362 | def setUp(self): |
| 1363 | super().setUp() |
| 1364 | self.array_size = (10_000, 10) |
| 1365 | # set chunkshape so it divides evenly into array_size, to avoid |
| 1366 | # partially filled chunks |
| 1367 | self.chunkshape = (1000, 10) |
| 1368 | # approximate size (in bytes) of non-data portion of hdf5 file |
| 1369 | self.hdf_overhead = 6000 |
| 1370 | |
| 1371 | def create_array(self, complevel): |
| 1372 | filters = tb.Filters(complevel=complevel, complib="blosc") |