-
Notifications
You must be signed in to change notification settings - Fork 920
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
[BUG] ContiguousSplitUntypedTest fails when run with the arena allocator #11249
Comments
This issue has been labeled |
This appears to be an out of memory error which is not a problem with the algorithm. The |
This issue has been labeled |
I ran this on a 16GB V100, so I guess if tests are expected to require more than that this is "working as designed." However it seems a bit excessive to need that much memory for a test. |
I agree. Actually, I don't think we should have this specific gtest. I'm inclined to disable it or remove it altogether. |
Disables a `ContiguousSplitUntypedTest` that simply creates a very large (over 3GB) column to test the output buffer size does not overflow. The gtests ends requiring 25GB of device memory when used with the arena allocator as mentioned in #11249. Very large columns like this should be not part of the unit test for libcudf. This PR disables the test so it can be available for testing on specific conditions outside of CI. Closes #11249 Authors: - David Wendt (https://github.com/davidwendt) Approvers: - Nghia Truong (https://github.com/ttnghia) - Bradley Dice (https://github.com/bdice) URL: #11706
Describe the bug
ContiguousSplitUntypedTest fails when run with the arena allocator but passes when run with the pool or cuda allocators:
Steps/Code to reproduce bug
Run
cpp/build/gtests/COPYING_TEST --rmm_mode=arena
Expected behavior
Tests should pass with any supported RMM memory resource.
The text was updated successfully, but these errors were encountered: