Skip to content

Commit

Permalink
MINOR: [Docs] document Float16 support in C++ (#38494)
Browse files Browse the repository at this point in the history
### Rationale for this change

There is, at least, partial halffloat support in Arrow C++. A reason to not merge this is that there is still quite a bit casting work to be completed:
* #20213
* #32802

Authored-by: anjakefala <[email protected]>
Signed-off-by: Antoine Pitrou <[email protected]>
  • Loading branch information
anjakefala authored Nov 16, 2023
1 parent 0e52d30 commit 62cf42b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docs/source/status.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Data Types
+-------------------+-------+-------+-------+------------+-------+-------+-------+-------+
| UInt8/16/32/64 |||||||||
+-------------------+-------+-------+-------+------------+-------+-------+-------+-------+
| Float16 | | ||| ✓ (1)| ✓ || |
| Float16 | ✓ (1) | ||| ✓ (2)| ✓ || |
+-------------------+-------+-------+-------+------------+-------+-------+-------+-------+
| Float32/64 |||||||||
+-------------------+-------+-------+-------+------------+-------+-------+-------+-------+
Expand Down Expand Up @@ -96,7 +96,7 @@ Data Types
| Data type | C++ | Java | Go | JavaScript | C# | Rust | Julia | Swift |
| (special) | | | | | | | | |
+===================+=======+=======+=======+============+=======+=======+=======+=======+
| Dictionary || ✓ (2) ||| ✓ (2) | ✓ (2) || |
| Dictionary || ✓ (3) ||| ✓ (3) | ✓ (3) || |
+-------------------+-------+-------+-------+------------+-------+-------+-------+-------+
| Extension |||| | ||| |
+-------------------+-------+-------+-------+------------+-------+-------+-------+-------+
Expand All @@ -105,8 +105,9 @@ Data Types

Notes:

* \(1) Float16 support in C# is only available when targeting .NET 6+.
* \(2) Nested dictionaries not supported
* \(1) Casting to/from Float16 in C++ is not supported.
* \(2) Float16 support in C# is only available when targeting .NET 6+.
* \(3) Nested dictionaries not supported

.. seealso::
The :ref:`format_columnar` specification.
Expand Down

0 comments on commit 62cf42b

Please sign in to comment.