diff options
| author | Krishna Pandey <kpandey81930@gmail.com> | 2025-08-27 11:42:09 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-27 11:42:09 +0530 |
| commit | f005e2cb7aea4ed74a62bfbb1dce51e063cd52a0 (patch) | |
| tree | dc99d85241112c9bac02e6b3e04d091cd6ca9e78 /libc/docs | |
| parent | a0c472d50f29d47223d3fc362ae11d9bff966dac (diff) | |
| download | llvm-f005e2cb7aea4ed74a62bfbb1dce51e063cd52a0.tar.gz llvm-f005e2cb7aea4ed74a62bfbb1dce51e063cd52a0.tar.bz2 llvm-f005e2cb7aea4ed74a62bfbb1dce51e063cd52a0.zip | |
[libc][math][c++23] Add {modf,remainder,remquo}bf16 math functions (#154652)
This PR adds the following basic math functions for BFloat16 type along
with the tests:
- modfbf16
- remainderbf16
- remquobf16
---------
Signed-off-by: Krishna Pandey <kpandey81930@gmail.com>
Co-authored-by: OverMighty <its.overmighty@gmail.com>
Diffstat (limited to 'libc/docs')
| -rw-r--r-- | libc/docs/headers/math/index.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/docs/headers/math/index.rst b/libc/docs/headers/math/index.rst index 6a2699e88aa9..b329bf031312 100644 --- a/libc/docs/headers/math/index.rst +++ b/libc/docs/headers/math/index.rst @@ -209,7 +209,7 @@ Basic Operations +------------------+------------------+-----------------+------------------------+----------------------+------------------------+------------------------+------------------------+----------------------------+ | lround | |check| | |check| | |check| | |check| | |check| | |check| | 7.12.9.7 | F.10.6.7 | +------------------+------------------+-----------------+------------------------+----------------------+------------------------+------------------------+------------------------+----------------------------+ -| modf | |check| | |check| | |check| | |check| | |check| | | 7.12.6.18 | F.10.3.18 | +| modf | |check| | |check| | |check| | |check| | |check| | |check| | 7.12.6.18 | F.10.3.18 | +------------------+------------------+-----------------+------------------------+----------------------+------------------------+------------------------+------------------------+----------------------------+ | nan | |check| | |check| | |check| | |check| | |check| | |check| | 7.12.11.2 | F.10.8.2 | +------------------+------------------+-----------------+------------------------+----------------------+------------------------+------------------------+------------------------+----------------------------+ @@ -223,9 +223,9 @@ Basic Operations +------------------+------------------+-----------------+------------------------+----------------------+------------------------+------------------------+------------------------+----------------------------+ | nextup | |check| | |check| | |check| | |check| | |check| | |check| | 7.12.11.5 | F.10.8.5 | +------------------+------------------+-----------------+------------------------+----------------------+------------------------+------------------------+------------------------+----------------------------+ -| remainder | |check| | |check| | |check| | |check| | |check| | | 7.12.10.2 | F.10.7.2 | +| remainder | |check| | |check| | |check| | |check| | |check| | |check| | 7.12.10.2 | F.10.7.2 | +------------------+------------------+-----------------+------------------------+----------------------+------------------------+------------------------+------------------------+----------------------------+ -| remquo | |check| | |check| | |check| | |check| | |check| | | 7.12.10.3 | F.10.7.3 | +| remquo | |check| | |check| | |check| | |check| | |check| | |check| | 7.12.10.3 | F.10.7.3 | +------------------+------------------+-----------------+------------------------+----------------------+------------------------+------------------------+------------------------+----------------------------+ | rint | |check| | |check| | |check| | |check| | |check| | |check| | 7.12.9.4 | F.10.6.4 | +------------------+------------------+-----------------+------------------------+----------------------+------------------------+------------------------+------------------------+----------------------------+ |
