You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A followup to #12619; to enable copy-on-write in pandas one says set_option("mode.copy_on_write", True), whereas to enable in cudf one must say set_option("copy_on_write", True).
There might be other cases, but where cudf exposes the same configuration options as pandas, the names should match as a principle of least surprise.
The text was updated successfully, but these errors were encountered:
Copy-on-write looks to be the only matching option right now. Matching the intricacies of the pandas system is actually somewhat more complicated than just renaming, since they implement the nested dictionaries as attribute access on the the pd.options module.
A followup to #12619; to enable copy-on-write in pandas one says
set_option("mode.copy_on_write", True)
, whereas to enable in cudf one must sayset_option("copy_on_write", True)
.There might be other cases, but where cudf exposes the same configuration options as pandas, the names should match as a principle of least surprise.
The text was updated successfully, but these errors were encountered: