-
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 complex number support to round
#440
Conversation
Is this a good idea? NumPy and PyTorch both don't support this, and I'm guessing other libraries do too. Is this unambiguously defined in C99? The issue just mentions Matlab |
C99 doesn't expose rounding functions in its complex number arithmetic. Presumably this is because, for an individual complex number, relatively trivial to round the components separately. NumPy does independent rounding, but only for If we are going to not provide APIs for independently rounding components, we should probably have a rationale for a lack of explicit support in the standard. From a performance perspective, for those libraries implementing complex number arrays as interleaved strided arrays, cache locality will be better if only a single function call is needed for round components rather than require ( |
I'd say "lack of support in array libraries" is a good rationale. If anyone cares, they should go implement it first. Maybe we can provide guidance like "if you implement this, do it separate" (reserved functionality, like in a few other places). But requiring a thing that apparently no one has a need for feels a little odd. |
Not clear that this is the case. For example, PyTorch previously had support for complex I recognize that a guiding principle of the consortium is giving adequate weight to precedent when making specification decisions; however, we should also be cognizant as to whether simply because something is the case, it ought to be the case. For example, NumPy's behavior could be due to Now, as it turns out, there are legitimate reasons to not add complex number support to Namely, extending Given that the APL implementation of complex floor (and by association ceil and trunc) has not been implemented by array libraries, seems reasonable to not include their support in the specification at this time. And realistically, given that extending floor/ceil/trunc to the complex domain is likely to result in something which is unintuitive to most users (as most users would probably expect Instead, users should be expected to be explicit and intentional when attempting to floor/ceil/trunc complex numbers. This is not without performance costs for users of libraries such as NumPy, but better to push responsibility for resolving implementation ambiguity to userland. Accordingly, I have updated the PR to drop complex number support for |
round
, ceil
, floor
, and trunc
round
I don't know why anyone would want to round a complex number, do we have any particular use case? |
Based on the most recent consortium meeting (2022-06-23), this PR can move forward. If adding complex number support to |
As this PR has been discussed and preserves the status quo across array libraries, will merge. |
This PR
round
. Namely, when applyinground
to complex number operands, the real and imaginary components must be independently rounded.Notes
round
, but notceil
,floor
, ortrunc
. Reasons for not extending complex number support tofloor
,ceil
, andtrunc
are discussed in a comment below.