Skip to content
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

Open
steff456 opened this issue Feb 14, 2023 · 6 comments
Open

RFC: add cbrt #590

steff456 opened this issue Feb 14, 2023 · 6 comments
Labels
API extension Adds new functions or objects to the API. Needs Discussion Needs further discussion. RFC Request for comments. Feature requests and proposed changes.

Comments

@steff456
Copy link
Member

steff456 commented Feb 14, 2023

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 and sqrt, but does not include the IEEE 754 function cbrt.

While the cube root could be implemented in terms of pow, this is not desirable as the rational 1/3 is not typically equal to 1.0/3.0 due to limited floating-point precision. Cube root implementations are generally more accurate than the equivalent operation via pow.

Prior art

Proposal:

def cbrt(x: array, /) -> array

cc @kgryte

@steff456 steff456 added the API extension Adds new functions or objects to the API. label Feb 14, 2023
@asmeurer
Copy link
Member

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).

@kgryte
Copy link
Contributor

kgryte commented Feb 14, 2023

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.

@asmeurer
Copy link
Member

Even without implementing the complex version there's still the fact that cbrt(-1) returning -1 is a non-principle cube root (differing from power):

>>> np.power(-1, 1/3)
<stdin>:1: RuntimeWarning: invalid value encountered in power
nan
>>> np.cbrt(-1)
-1.0

@kgryte
Copy link
Contributor

kgryte commented Feb 15, 2023

Agreed. For negative reals, cbrt should return a negative real number. And thanks for highlighting a key limitation of power.

@asmeurer
Copy link
Member

asmeurer commented Feb 15, 2023

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 cbrt does, so we should definitely do that.

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.

@kgryte kgryte added this to the v2023 milestone Jun 29, 2023
@kgryte kgryte removed this from the v2023 milestone Jan 11, 2024
@kgryte kgryte changed the title Add cbrt function to the standard RFC: add cbrt Apr 4, 2024
@kgryte kgryte added RFC Request for comments. Feature requests and proposed changes. Needs Discussion Needs further discussion. labels Apr 4, 2024
@kgryte
Copy link
Contributor

kgryte commented Apr 4, 2024

Linking to a (closed) feature request on PyTorch: pytorch/pytorch#25766

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
API extension Adds new functions or objects to the API. Needs Discussion Needs further discussion. RFC Request for comments. Feature requests and proposed changes.
Projects
None yet
Development

No branches or pull requests

3 participants