-
Notifications
You must be signed in to change notification settings - Fork 912
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
Make proxy NumPy arrays pass isinstance check in cudf.pandas
#16286
Make proxy NumPy arrays pass isinstance check in cudf.pandas
#16286
Conversation
7491769
to
365e1b0
Compare
The following numba on proxy numpy array works too. Closes #15694
Edit: There is fallback though
|
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.
So this approach creates a Proxy{Insert NumPy/Slow Object Name}Base
class (which inherits from the real NumPy/slow class) as a base class for the proxy type.
/okay to test |
/ok to test |
/ok to test |
/ok to test |
/ok to test |
/okay to test |
@mroeschke Could you take a look before we merge this PR? |
/okay to test |
/ok to test |
/merge |
cudf.pandas
cudf.pandas
…`" (#16586) Reverts #16286 Authors: - Matthew Murray (https://github.com/Matt711) - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - GALI PREM SAGAR (https://github.com/galipremsagar) URL: #16586
Description
Apart of #15397. Closes #14537. Creates
ProxyNDarray
which inherits fromnp.ndarray
.Checklist