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

Update type promotion rules for complex dtypes #491

Merged
merged 4 commits into from
Nov 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 16 additions & 7 deletions spec/API_specification/type_promotion.rst
Original file line number Diff line number Diff line change
Expand Up @@ -89,18 +89,27 @@ Mixed unsigned and signed integer type promotion table
Floating-point type promotion table
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

+--------+----+----+
| | f4 | f8 |
+========+====+====+
| **f4** | f4 | f8 |
+--------+----+----+
| **f8** | f8 | f8 |
+--------+----+----+
+---------+-----+-----+-----+-----+
| | f4 | f8 | c8 | c16 |
+=========+=====+=====+=====+=====+
| **f4** | f4 | f8 | c8 | c16 |
+---------+-----+-----+-----+-----+
| **f8** | f8 | f8 | c16 | c16 |
+---------+-----+-----+-----+-----+
| **c8** | c8 | c16 | c8 | c16 |
+---------+-----+-----+-----+-----+
| **c16** | c16 | c16 | c16 | c16 |
+---------+-----+-----+-----+-----+

where

- **f4**: single-precision (32-bit) floating-point number (i.e., ``float32``)
- **f8**: double-precision (64-bit) floating-point number (i.e., ``float64``)
- **c8**: single-precision complex floating-point number (i.e., ``complex64``)
composed of two single-precision (32-bit) floating-point numbers
- **c16**: double-precision complex floating-point number (i.e., ``complex128``)
composed of two double-precision (64-bit) floating-point numbers


Notes
~~~~~
Expand Down
Binary file removed spec/_static/images/dtype_promotion_complex.png
Binary file not shown.
Binary file modified spec/_static/images/dtype_promotion_lattice.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.