Created
January 27, 2023 21:42
-
-
Save nschloe/dfc9ae44ba4e4950c175e62db678f0d8 to your computer and use it in GitHub Desktop.
Python array I/O comparison
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sys import version_info | |
import matplotlib.pyplot as plt | |
import perfplot | |
import pickle | |
import netCDF4 | |
import numpy as np | |
import h5py | |
import tables | |
import zarr | |
def write_numpy(data): | |
np.save("out.npy", data) | |
def write_hdf5(data): | |
with h5py.File("out.h5", "w") as f: | |
f.create_dataset("data", data=data) | |
def write_netcdf(data): | |
with netCDF4.Dataset("out.nc", "w") as nc: | |
nc.createDimension("len_data", len(data)) | |
ncdata = nc.createVariable( | |
"mydata", | |
"float64", | |
("len_data",), | |
) | |
ncdata[:] = data | |
def write_pickle(data): | |
with open("out.pkl", "wb") as f: | |
pickle.dump(data, f) | |
def write_pytables(data): | |
with tables.open_file("out-pytables.h5", mode="w") as f: | |
gcolumns = f.create_group(f.root, "columns", "data") | |
f.create_array(gcolumns, "data", data, "data") | |
def write_zarr_zarr(data): | |
zarr.save_array("out.zarr", data) | |
def write_zarr_zip(data): | |
zarr.save_array("out.zip", data) | |
def write_zarr_zarr_uncompressed(data): | |
zarr.save_array("out-uncompressed.zarr", data, compressor=None) | |
def write_zarr_zip_uncompressed(data): | |
zarr.save_array("out-uncompressed.zip", data) | |
def setup(n): | |
data = np.random.rand(n) | |
n[...] = data.nbytes | |
return data | |
b = perfplot.bench( | |
setup=setup, | |
kernels=[ | |
write_numpy, | |
write_hdf5, | |
write_netcdf, | |
write_pickle, | |
write_pytables, | |
write_zarr_zarr, | |
write_zarr_zip, | |
write_zarr_zarr_uncompressed, | |
write_zarr_zip_uncompressed, | |
], | |
title="write comparison", | |
n_range=[2**k for k in range(28)], | |
xlabel="data.nbytes", | |
equality_check=None, | |
) | |
plt.text( | |
0.0, | |
-0.3, | |
", ".join( | |
[ | |
f"Python {version_info.major}.{version_info.minor}.{version_info.micro}", | |
f"h5py {h5py.__version__}", | |
f"netCDF4 {netCDF4.__version__}", | |
f"NumPy {np.__version__}", | |
f"PyTables {tables.__version__}", | |
f"Zarr {zarr.__version__}", | |
] | |
), | |
transform=plt.gca().transAxes, | |
fontsize="x-small", | |
verticalalignment="top", | |
) | |
b.save("out-write.png") | |
b.show() |
Author
nschloe
commented
Jan 27, 2023
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment