def pack(a): """Pack a boolean array *a* so that it takes 8x less space.""" return np.packbits(a.view(np.uint8))