-
Notifications
You must be signed in to change notification settings - Fork 916
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
[FEA] A cudf.config module to manage configuration options #5311
Comments
One other idea Ashwin mentioned was configuring the RMM allocator used. |
+1 - could have an option here to disable/enable cross joins when implemented. |
cc @rjzamora (in case you have needs for this as well) |
This issue has been labeled |
This issue has been labeled |
With #8153 merged, this configuration module could also be used to enable/disable packing of tables during serialization |
Would it make sense if this option existed at the dask-cuda level ? |
Ah, @charlesbluca pointed me to the previous dask-cuda discussion here: |
This PR adds `cudf.options`, a global dictionary to store configurations. A set of helper functions to manage the registries are also included. See documentation included in the PR for detail. See demonstration use in: #11272 Closes #5311 Authors: - Michael Wang (https://github.com/isVoid) Approvers: - Lawrence Mitchell (https://github.com/wence-) - Matthew Roeschke (https://github.com/mroeschke) - Bradley Dice (https://github.com/bdice) URL: #11193
In a discussion with @jakirkham the idea of a
cudf.config
module, similar to Dask was brought up.The specific use case we had in mind was a way for users to specify whether or not to use pack/unpack serialization; but there may be other such "global" options that we may want to expose in the future.
The text was updated successfully, but these errors were encountered: