diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2024-05-12 20:36:31 +0300 |
---|---|---|
committer | Georgi Gerganov <ggerganov@gmail.com> | 2024-05-14 19:08:09 +0300 |
commit | c3c88f296a72432edb697ac8026dbf2ec18f2b21 (patch) | |
tree | d743ff537fd7be8daeedc1c04edf6b50908f9afe /ggml-quants.c | |
parent | 182adefcf36fc5f4263082ff032c0796fda65578 (diff) |
ggml : try fix ppc64 (whisper/0)
Diffstat (limited to 'ggml-quants.c')
-rw-r--r-- | ggml-quants.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ggml-quants.c b/ggml-quants.c index f711bd01..9e62a3f3 100644 --- a/ggml-quants.c +++ b/ggml-quants.c @@ -11425,7 +11425,7 @@ void ggml_vec_dot_iq1_s_q8_K (int n, float * restrict s, size_t bs, const void vector signed short qxh = (vector signed short)vec_sld(vec_splats(qh[1]), vec_splats(qh[0]), 8); qh += 2; - vector bool short vsel = vec_cmpge(qxh, (vector signed short)v0); + vector __bool short vsel = vec_cmpge(qxh, (vector signed short)v0); vector signed short q8ysum = vec_sel((vector signed short)vec_xor((vector unsigned short)q8ysums, vsign), q8ysums, vsel); |