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

Add copysign function to the standard #593

Closed
steff456 opened this issue Feb 14, 2023 · 3 comments · Fixed by #693
Closed

Add copysign function to the standard #593

steff456 opened this issue Feb 14, 2023 · 3 comments · Fixed by #693
Labels
API extension Adds new functions or objects to the API.

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 returning a value with the magnitude of x but the sign of y.

Overview

Based on array comparison data, the API is available in the majority of libraries in the PyData ecosystem.

The Array API specification does not currently include a convenient method of copying the sign from one value to another value via the IEEE 754 function copysign. This function is commonly used in the implementations of transcendental functions involving argument reductions.

While this can be implemented in terms of where, doing so is overly cumbersome.

Prior art

Proposal:

def copysign(x1: array, x2:array, /) -> array

cc @kgryte

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

This seems like a reasonable addition. Do TensorFlow and MXNet have alternatives or open feature requests?

@kgryte
Copy link
Contributor

kgryte commented Feb 23, 2023

MXNet does have a copysign function. TF is the odd one out and does not appear to have a copysign API even in its experimental NumPy namespace.

@asmeurer
Copy link
Member

asmeurer commented Aug 1, 2023

I don't know if this can actually be replicated with where because of -0.0.

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.
Projects
Status: Stage 2
Development

Successfully merging a pull request may close this issue.

4 participants