(col, chunk)
| 28 | assert rowsize % dtype.itemsize == 0 |
| 29 | |
| 30 | def make_column(col, chunk): |
| 31 | return np.frombuffer(common.get_random_bytes( |
| 32 | rowsize, seed=col + 997 * chunk)).view(dtype) |
| 33 | |
| 34 | return [pd.DataFrame({ |
| 35 | 'c' + str(col): make_column(col, chunk) |