-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
[pydrake] Add more examples of memory leaks #21986
[pydrake] Add more examples of memory leaks #21986
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 2 of 2 files at r1, all commit messages.
Reviewable status: needs at least two assigned reviewers
+@xuchenhan-tri for platform review per schedule, please. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 2 of 2 files at r1, all commit messages.
Reviewable status: 1 unresolved discussion
a discussion (no related file):
BTW, the amount of "blocks" do not grow linearly when I run the test. Is that expected/do you understand why it's not the case?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status: complete! all discussions resolved, LGTM from assignees rpoyner-tri(platform),xuchenhan-tri(platform)
a discussion (no related file):
Previously, xuchenhan-tri wrote…
BTW, the amount of "blocks" do not grow linearly when I run the test. Is that expected/do you understand why it's not the case?
No idea. I know that sys.getallocatedblocks()
returns a python object which uses a block, so will have some variation depending on whether the number is interned or not, but that would only be a 1-ish block difference, not the 3-10 block variation I see.
Towards #14387.
+@rpoyner-tri for feature review, please.
This change is