aboutsummaryrefslogtreecommitdiff
path: root/ggml.c
diff options
context:
space:
mode:
authorMarvin Gießing <marvin.giessing@gmail.com>2023-05-02 18:42:16 +0200
committerGitHub <noreply@github.com>2023-05-02 19:42:16 +0300
commitcc0bb7235c72e50a621800e366d0e4fe315f0e11 (patch)
tree33132cd77bbf5e3410aad4e0f5a54ff7a87c2b7d /ggml.c
parent2bb992f034689e2ddd7b9ac05163b0359a5957b3 (diff)
ggml : fix ppc64le build error and make cmake detect Power processors (#1284)
* Fix ppc64le build issue * Added support to detect ppc64* processors
Diffstat (limited to 'ggml.c')
-rw-r--r--ggml.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ggml.c b/ggml.c
index 6a9695e..91b3053 100644
--- a/ggml.c
+++ b/ggml.c
@@ -826,6 +826,7 @@ static void quantize_row_q4_0(const float * restrict x, void * restrict vy, int
float max = 0.0f;
float min = 0.0f;
+ vector float asrcv [8];
vector float srcv [8];
vector float maxv[8];
vector float minv[8];