-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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 copy option in DataTree.from_dict #9193
base: main
Are you sure you want to change the base?
Conversation
Is treenode used anywhere else besides as a mixin-class for DataTree? DataTree overrides TreeNode._set anyway. |
This test is a mutability test and a typo caused this error. This test used |
for more information, see https://pre-commit.ci
Elsewhere in Xarray (e.g., on |
Maybe |
👍 for a private constructor, if we want to use this internally inside Xarray. |
Well it wouldn't be for internal xarray usage for me, it would be for a backend/mfdatatree function. But it is a typical way we use to speed things up and implying checks are being bypassed, do we have any other public examples? My real problem is pretty similar to the intro example but I have 100+ datatrees instead, such a simple operation takes 1.5 minutes because of all the copies, it goes down to around 19ms with this pr. |
Yikes, that is pretty bad! Do you have a slightly more realistic benchmark you could share, and/or add to the asv tests? I am sure we can do much better for performance in Once we have the right behavior, it makes sense to start working on performance. I am optimistic that we can figure out how to improve performance without needing to expand the public API. |
Significantly speed up
from_dict
by removing unwanted copying.whats-new.rst