Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add sizeof for hist #9

Merged
merged 1 commit into from
Apr 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/lpcjobqueue/patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"""
import awkward
import uproot
import hist
from dask.sizeof import sizeof


Expand All @@ -14,3 +15,9 @@ def sizeof_awkward_generic(obj):
@sizeof.register(uproot.model.Model)
def sizeof_uproot_generic(obj):
return obj.num_bytes


@sizeof.register(hist.hist.Hist)
def sizeof_hist(obj):
# doesn't include axes but that should be relatively small
return sizeof(obj.view(flow=True))