Commit ff7b5fd1 authored by Ryan McClelland's avatar Ryan McClelland Committed by Carles Cufí
Browse files

compute Library: fix inline function that is not static



'vlogq_f32' is static but used in inline function 'vlogq_f16' which is not static

Signed-off-by: default avatarRyan McClelland <ryanmcclelland@meta.com>
parent e7b30717
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -442,7 +442,7 @@ inline float16x8_t vexpq_f16(float16x8_t x)
    return res;
}

inline float16x8_t vlogq_f16(float16x8_t x)
static inline float16x8_t vlogq_f16(float16x8_t x)
{
    // TODO (COMPMID-1535) : Revisit FP16 approximations
    const float32x4_t x_high = vcvt_f32_f16(vget_high_f16(x));