From a45e1a01fc2f8628bf4cffba041b90b2b734383d Mon Sep 17 00:00:00 2001 From: Chun-wei Fan Date: Wed, 29 Sep 2021 10:42:55 +0800 Subject: [PATCH] fp16.c: Fix float_to_half() function call Correct the function being called. --- gsk/ngl/fp16.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gsk/ngl/fp16.c b/gsk/ngl/fp16.c index 2f71820ce4..29e83527f3 100644 --- a/gsk/ngl/fp16.c +++ b/gsk/ngl/fp16.c @@ -146,7 +146,7 @@ float_to_half (const float *f, guint16 *h, int n) if (have_f16c_msvc ()) float_to_half_f16c (f, h, n); else - float_to_half4_c (f, h, n); + float_to_half_c (f, h, n); } void