From b2341032da62a2d1ed21cc07c2ce7afc3721598f Mon Sep 17 00:00:00 2001 From: Nicolas Brunie <82109999+nibrunieAtSi5@users.noreply.github.com> Date: Sat, 30 Sep 2023 20:57:08 -0700 Subject: review feedback: 16-bit floating-point -> BF16 --- source/8086-SSE/s_bf16UIToCommonNaN.c | 2 +- source/8086-SSE/s_commonNaNToBF16UI.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/8086-SSE/s_bf16UIToCommonNaN.c b/source/8086-SSE/s_bf16UIToCommonNaN.c index b27b804..c1c774d 100644 --- a/source/8086-SSE/s_bf16UIToCommonNaN.c +++ b/source/8086-SSE/s_bf16UIToCommonNaN.c @@ -40,7 +40,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "softfloat.h" /*---------------------------------------------------------------------------- -| Assuming `uiA' has the bit pattern of a 32-bit floating-point NaN, converts +| Assuming `uiA' has the bit pattern of a BF16 NaN, converts | this NaN to the common NaN form, and stores the resulting common NaN at the | location pointed to by `zPtr'. If the NaN is a signaling NaN, the invalid | exception is raised. diff --git a/source/8086-SSE/s_commonNaNToBF16UI.c b/source/8086-SSE/s_commonNaNToBF16UI.c index 8cc5a61..d81cf51 100644 --- a/source/8086-SSE/s_commonNaNToBF16UI.c +++ b/source/8086-SSE/s_commonNaNToBF16UI.c @@ -39,8 +39,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "specialize.h" /*---------------------------------------------------------------------------- -| Converts the common NaN pointed to by `aPtr' into a 16-bit floating-point -| NaN, and returns the bit pattern of this value as an unsigned integer. +| Converts the common NaN pointed to by `aPtr' into a BF16 NaN, and +| returns the bit pattern of this value as an unsigned integer. *----------------------------------------------------------------------------*/ uint_fast16_t softfloat_commonNaNToBF16UI( const struct commonNaN *aPtr ) { -- cgit v1.1