-
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
Add conj
specification for computing the complex conjugate
#446
Conversation
My feeling would be that we should probably allow it, since Python itself also always implemntes |
As discussed in the Sept 22, 2022, consortium meeting, the plan is to merge this PR as is. We can revisit the decision to only support complex dtypes based on downstream library implementations and feedback should this prove problematic/undesirable. The spec, as written, uses should, so implementors can extend to real-valued dtypes for reasons of backward compatibility. However, users should only except that complex dtypes will work across all spec compliant array API implementations. |
This PR
conj
, which is widely implemented by array libraries.real
specification for returning the real component of a complex number #427.Notes
real
, runs contrary to array libraries, more generally, which allow real-valued arrays as input and defineconj
as a no-op for those inputs (see PyTorch v1.11, TensorFlow, and NumPy). However, this PR chooses to be consistent withreal
in requiring users to provide a complex number array for the primary reason that, in most cases, when a user is callingconj(z)
, the expectation is thatz
is complex-valued, and, if real-valued, this is likely a bug.