-
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
[FEA] Square Root via __array_ufunc__ protocol #1055
Comments
This appears to be true of all unary ops. All the unary ops are implemented in C++ and have Cython cdefs. They are just not exposed via the Series interface in python. |
Is the syntax you require for this
? |
Currently we use We could drop that down to Or, at some point, we should implement the |
For today, I can give you |
If it's ok, I'd like to leave this open until one of |
Oh sorry, I thought |
As a special case of #256 it would be useful to have a
sqrt
computation accessible from cudf on the Python side. This would enable the computation of groupby-std (among other things).Looking at instances of sqrt in the codebase today
We see references to it in C++ side, a few references to bindings in the Cython side, but no use of it on the Python side as far as I can tell. Oddly we do see
np.sqrt
used in theSeries.std
method, which I suspect converts to a numpy array?The text was updated successfully, but these errors were encountered: