-
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: Adding complex number support to the specification #373
Comments
Would we want a data type function for complex dtypes i.e. Interestingly there was a little discussion of a |
I don't know why I missed it... CuPy uses Thrust (and it's likely being used by many other projects that depends on CUDA; IIUC the implementation was ported to libcudacxx) so it's worth mentioning. Thrust's complex math funcs were based on FreeBSD's. In each FreeBSD man page the branch cut is clearly documented so it's a good starting point. However, as Thrust didn't document it clearly (I asked internally and was told to inspect the source directly, which is challenging given my lack of bandwidth) and it's unclear to me if the Thrust impl was a one-to-one translation of FreeBSD's since I don't have access to the FreeBSD source code, I'd proceed with caution. |
Tracking changes to existing APIs within the array API specification:
New APIs |
At this point, PRs have been submitted for all existing APIs for which we currently expect complex number support. |
All PRs have been merged - adding complex number support to the API is complete. Thanks a lot to everyone who contributed - and in particular @kgryte for all the spec writing. |
Complex Number Support
What follows is a plan for adding complex number support to the 2022 array API specification. This RFC is comprised of the following sections:
Prior Discussions
General Concerns
New APIs
Decisions
initial data types:
complex64
andcomplex128
?complex64
andcomplex128
to be added, thus mirroringfloat32
andfloat64
.rounding complex numbers (component-wise)
round
.ordering (lexicographic?)
argsort
,argmax
,argmin
,min
,max
,sort
)branch cut policy?
casting from complex to real
real
before castingcomplex numbers with components which are infinity and/or NaN
in Python, a complex number can be both infinite and NaN (according to
cmath.isinf
,cmath.isnan
)in NumPy (v1.23.5), behavior is consistent with Python
in C99 (see "complex floating types" section), one infinity model (e.g.,
inf + nan*j
==inf
)update: decision was made to allow implementation-dependent behavior for modeling complex NaNs and infinities. In particular, for complex multiplication and division, handling of complex infinities and NaNs may not be consistent across implementations.
Creation Functions
arange
No changes. No complex number support.
NumPy issue: BUG: arange behaves poorly on complex numbers numpy/numpy#10332
asarray
dtype
status: implemented
asarray
#434empty
empty_like
eye
No changes. Output array data type has not restrictions.
1 + 0j
.status: implemented
eye
whendtype
is a complex number data type #436from_dlpack
full
fill_value
complex
fill value.dtype
complex
, output array data type must be the default complex floating-point data type.status: implemented
full
andfull_like
#435full_like
fill_value
complex
fill value.dtype
dtype
isNone
to includecomplex
.status: implemented
full
andfull_like
#435linspace
start
complex
stop
complex
when either
start
orstop
is complex, the result must be complex.status: implemented
linspace
#568meshgrid
update to accept all numeric dtypes.
status: implemented
meshgrid
#437ones
No changes necessary.
1 + 0j
.status: implemented
ones
andones_like
whendtype
is a complex number data type #438ones_like
No changes necessary.
1 + 0j
.status: implemented
ones
andones_like
whendtype
is a complex number data type #438tril
triu
zeros
zeros_like
Data Type Functions
astype
Add note stating that, when casting from a complex data type to a real data type stating, the imaginary component is discarded and casting to integral data types is unspecified and thus implementation-dependent.real
if they want to discard the imaginary component.status: implemented
astype
#445broadcast_arrays
broadcast_to
can_cast
finfo
iinfo
result_type
Data Types
Add
complex64
andcomplex128
following precedent where the numeric suffix specifies the number of bits.status: implemented
Default Data Types
The default complex number data type is dependent on the default floating-point data type. If the latter is
float32
, the default complex data type must becomplex64
.status: implemented
Data Type Categories
Add complex data types to list of numeric data types.
Add "Real Data Types" category which should be equal to the current list of numeric data types.
Add "Complex Data Types" category which only includes the complex number data types.
status: implemented
Element-wise Functions
abs
Add support by returning the complex magnitude.
Add complex number special cases: same as
hypot(creal(z), cimag(z))
.status: implemented
hypot
#544abs
#546acos
Add complex number support.
Define special cases.
[-inf,-1]
,[1,inf]
status: implemented
acos
#517acosh
Add complex number support.
Define special cases.
[-inf,1]
status: implemented
acosh
#520add
Add complex number support. Complex number addition is well-defined.
status: implemented
asin
Add complex number support.
Define special cases.
status: implemented
asin
#521asinh
Add complex number support.
Define special cases.
[-inf*i, -i]
,[i, inf*i]
status: implemented
asinh
#522atan
Add complex number support.
Define special cases.
[-inf*i, -i]
,[i, inf*i]
status: implemented
atan
#523atan2
atanh
Add complex number support.
Define special cases.
[-inf, -1]
,[1,inf]
status: implemented
atanh
#524bitwise_and
bitwise_left_shift
bitwise_invert
bitwise_or
bitwise_right_shift
bitwise_xor
ceil
Add complex number support. Independently round components (e.g., as in MATLAB).cos
Add complex number support.
Define special cases.
status: implemented
cos
#454cosh
Add complex number support.
Define special cases.
status: implemented
cosh
#453divide
Add complex number support.
Define special cases.
status: implemented
equal
Add complex number support.
status: implemented
equal
#528exp
Add complex number support.
Define special cases.
status: implemented
exp
#451expm1
Add complex number support.
Define special cases.
exp
status: implemented
expm1
#452floor
Add complex number support. Independently round components (e.g., as in MATLAB).floor_divide
greater
No complex number support due to complex numbers lacking a natural ordering.
status: implemented
greater_equal
No complex number support due to complex numbers lacking a natural ordering.
status: implemented
isfinite
Add support for complex numbers.
status: implemented
isfinite
#531isinf
Add support for complex numbers.
status: implemented
isinf
#530isnan
Add support for complex numbers.
NaN
, the complex number is considered "NaN"status: implemented
isnan
#532less
No complex number support due to complex numbers lacking a natural ordering.
status: implemented
less_equal
No complex number support due to complex numbers lacking a natural ordering.
status: implemented
log
Add complex number support.
Define special cases.
[-inf, 0]
status: implemented
log
#514log1p
Add complex number support.
Define special cases.
log
status: implemented
log1p
#534log2
Add complex number support.
Define special cases.
log
status: implemented
log2
#535log10
Add complex number support.
Define special cases.
log
status: implemented
log10
#536logaddexp
logical_and
logical_not
logical_or
logical_xor
multiply
Add complex number support. Complex number multiplication is well-defined.
Define special cases.
status: implemented
negative
Add complex number support. No real changes necessary, as relies on
multiply
.status: implemented
negative
#448not_equal
Add complex number support.
status: implemented
not_equal
#529positive
Add complex number support. No changes necessary, as this is effectively the identity function.
status: implemented
positive
#447pow
Add complex number support.
Define special cases.
status: implemented
pow
#537remainder
round
Add complex number support.
status: implemented
round
#440sign
Add complex number support.
Define special cases.
NumPy: https://numpy.org/doc/stable/reference/generated/numpy.sign.html
x / sqrt(x*x)
; could also usex/|x|
Update: consensus is to use
x/|x|
.status: implemented
sign
#556sin
Add complex number support.
Define special cases. No branch cuts.
status: implemented
sin
#457sinh
Add complex number support.
Define special cases.
status: implemented
sinh
#456square
Add complex number support. Complex number multiplication is well-defined.
abs2
: Specify the expected behaviors for handling complex numbers #153 (comment)status: implemented
square
#552sqrt
Add complex number support.
Define special cases.
[-inf,0)
status: implemented
sqrt
#461subtract
Add complex number support. Complex number addition is well-defined.
status: implemented
tan
Add complex number support.
Define special cases.
status: implemented
tan
#459tanh
Add complex number support.
Define special cases.
status: implemented
tanh
#458trunc
Add complex number support. Independently truncate components (e.g., as in MATLAB).Linear Algebra Functions
matmul
Add complex number support.
status: implemented
matmul
#557matrix_transpose
tensordot
Add complex number support.
status: implemented
tensordot
#558vecdot
Implementations should conjugate when computing the complex dot product:
x^H y
vecdot
is ambiguous in the complex case. #356vecdot
#512status: implemented
vecdot
#512Manipulation Functions
concat
expand_dims
flip
permute_dims
reshape
roll
squeeze
stack
Searching Functions
argmax
Require that complex numbers be ordered in lexicographic order?
status: implemented
argmin
No complex number support due to complex numbers lacking a natural ordering.
status: implemented
nonzero
No changes necessary. A nonzero complex number is a complex number whose real or imaginary component is nonzero.
status: implemented
nonzero
#441where
Set Functions
unique_all
Specify complex number value equality.
equal
.status: implemented
unique_counts
Same as
unique_all
.status: implemented
unique_inverse
Same as
unique_all
.status: implemented
unique_values
Same as
unique_all
.status: implemented
Sorting Functions
argsort
No complex number support due to complex numbers lacking a natural ordering.
status: implemented
sort
No complex number support due to complex numbers lacking a natural ordering.
status: implemented
Statistical Functions
max
No complex number support due to complex numbers lacking a natural ordering.
status: implemented
mean
min
No complex number support due to complex numbers lacking a natural ordering.
status: implemented
prod
Add support for complex numbers. Complex number multiplication is well-defined.
dtype
option needs to be updated to accommodate complex numbers.status: implemented
prod
#553std
sum
Add support for complex numbers. Complex number addition is well-defined.
dtype
option needs to be updated to accommodate complex numbers.status: implemented
sum
#538var
Type Promotion
Rules
Add complex number type promotion table.
Related complex number type promotion to floating-point number type promotion (e.g.,
f8
andc16
)status: implemented
Mixing arrays with Python Scalars
Add
complex
Python scalars.Update note concerning mixed "kind" operations.
status: implemented
complex
#513Utility Functions
all
No changes necessary. The value
0+0j
should evaluate toFalse
. If a complex number has a non-zero component, the value should evaluate toTrue
.status: implemented
all
andany
#442any
Same as
all
.status: implemented
all
andany
#442Linear Algebra Extension
cholesky
Add complex number support.
Require that each square matrix must be Hermitian.
status: implemented
linalg.cholesky
#443cross
Add complex number support.
status: implemented
linalg.cross
#559det (determinant)
Add complex number support.
status: implemented
linalg.det
#542diagonal
eigh
Add complex number support.
status: implemented
eigh
andeigvalsh
#543eigvalsh
Add complex number support.
status: implemented
eigh
andeigvalsh
#543inv
Add complex number support.
status: implemented
linalg.inv
#547matmul
matrix_norm
Add complex number support.
Depends on svd.
status: implemented
linalg.matrix_norm
#565matrix_power
Add complex number support.
status: implemented
linalg.matrix_power
#549matrix_rank
Add complex number support.
Depends on svd.
status: implemented
linalg.matrix_rank
#563matrix_transpose
outer
Add complex number support.
status: implemented
linalg.outer
#560pinv
Add complex number support.
Depends on svd.
status: implemented
linalg.pinv
#564qr
Add complex number support.
status: implemented
linalg.qr
#548slogdet
Add complex number support.
status: implemented
linalg.slogdet
#567solve
Add complex number support.
status: implemented
linalg.solve
#566svd
Add complex number support.
S
is unconditionally real.status: implemented
linalg.svd
#561svdvals
Add complex number support.
status: implemented
linalg.svdvals
#562trace
Add complex number support.
status: implemented
linalg.trace
#541vecdot
vector_norm
Add complex number support.
status: implemented
linalg.vector_norm
#550The text was updated successfully, but these errors were encountered: