Closed mpoehlmann closed 3 years ago
Thanks for raising the issue! Looks like there is a serialization issue with dask_histogram.boost.Histogram
. I'll start looking into it today. In the meantime the collection interface is working with the distributed scheduler:
h = dh.factory(
x,
axes=(dh.axis.Regular(10, -3, 3), dh.axis.Regular(10, -3, 3)),
storage=dh.storage.Double(),
)
h.compute()
Just merged #7 -- it fixes the snippet that caused the error. Feel free to re-open if the issue persists. Thanks!
When running one of examples with dask distributed, I get an error. If I comment out the client line, it works.
I am using Python 3.8.6 installed with conda, boost-histogram version 1.2.1, dask version 2021.09.1, and dask-histogram version 0.2.1.dev1+g4907a18. Thank you for your work on this project!