-
-
Notifications
You must be signed in to change notification settings - Fork 18.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
Fix memory growth bug in read_csv #24837
Fix memory growth bug in read_csv #24837
Conversation
I don't recall off the top of my head, but given that this regression was introduced during the RC period, do we still need to do a |
Codecov Report
@@ Coverage Diff @@
## master #24837 +/- ##
=======================================
Coverage 92.38% 92.38%
=======================================
Files 166 166
Lines 52382 52382
=======================================
Hits 48394 48394
Misses 3988 3988
Continue to review full report at Codecov.
|
Codecov Report
@@ Coverage Diff @@
## master #24837 +/- ##
=======================================
Coverage 92.39% 92.39%
=======================================
Files 166 166
Lines 52378 52378
=======================================
Hits 48393 48393
Misses 3985 3985
Continue to review full report at Codecov.
|
no i think this is ok as is, but can you add a memory asv here. |
The edge case where we hit powers of 2 every time during allocation can be painful. Closes pandas-devgh-24805. xref pandas-devgh-23527.
12aaad0
to
0c366a8
Compare
@jreback : Added an ASV as requested, and all is still green. PTAL. |
thanks @gfyoung |
* Fix memory growth bug in read_csv The edge case where we hit powers of 2 every time during allocation can be painful. Closes pandas-devgh-24805. xref pandas-devgh-23527. * TST: Add ASV benchmark for issue
* Fix memory growth bug in read_csv The edge case where we hit powers of 2 every time during allocation can be painful. Closes pandas-devgh-24805. xref pandas-devgh-23527. * TST: Add ASV benchmark for issue
The edge case where we hit powers of 2 every time during allocation can be painful.
Closes #24805.
xref #23527.