-
Notifications
You must be signed in to change notification settings - Fork 51
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
RFC: add cbrt
#590
Comments
It looks like the NumPy cbrt doesn't support complex arguments. Presumably for a floating-point negative argument cbrt should return a real negative number, but for a complex real negative argument it should return the principle cube root (if we add complex support). |
Complex cube root is tricky (see JuliaLang/julia#36534). My initial sense is that we'd want to leave unspecified if complex dtypes are supported. |
Even without implementing the complex version there's still the fact that cbrt(-1) returning -1 is a non-principle cube root (differing from >>> np.power(-1, 1/3)
<stdin>:1: RuntimeWarning: invalid value encountered in power
nan
>>> np.cbrt(-1)
-1.0 |
Agreed. For negative reals, |
I don't really see it as a limitation. There are very good reasons for power to return principle roots, even if that means returning nan instead of a real value for noncomplex floating-point inputs. Of course, sometimes you do want a real cube root. And it seems that that's the C standard for what I agree that omitting an extension to complex numbers is probably best because that would require choosing between either returning different values for negative reals, or using a non-principle branch cut, and both seem problematic. Maybe worth bringing up in a consortium meeting though. |
Linking to a (closed) feature request on PyTorch: pytorch/pytorch#25766 |
This RFC requests to include a new API in the array API specification for the purpose of computing the cube root.
Overview
Based on array comparison data, the API is available in the majority of libraries in the PyData ecosystem.
The Array API Specification currently includes
pow
andsqrt
, but does not include the IEEE 754 functioncbrt
.pow:
array-api/src/array_api_stubs/_2022_12/elementwise_functions.py
Line 1786 in 3d91878
sqrt:
array-api/src/array_api_stubs/_2022_12/elementwise_functions.py
Line 2139 in 3d91878
While the cube root could be implemented in terms of
pow
, this is not desirable as the rational 1/3 is not typically equal to1.0/3.0
due to limited floating-point precision. Cube root implementations are generally more accurate than the equivalent operation viapow
.Prior art
Proposal:
cc @kgryte
The text was updated successfully, but these errors were encountered: