From cc0bb7235c72e50a621800e366d0e4fe315f0e11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marvin=20Gie=C3=9Fing?= Date: Tue, 2 May 2023 18:42:16 +0200 Subject: [PATCH] ggml : fix ppc64le build error and make cmake detect Power processors (#1284) * Fix ppc64le build issue * Added support to detect ppc64* processors --- CMakeLists.txt | 5 ++++- ggml.c | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f6a66daa3..53d48a6c5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -359,8 +359,11 @@ elseif (${CMAKE_SYSTEM_PROCESSOR} MATCHES "^(x86_64|i686|AMD64)$") add_compile_options(-mavx512vnni) endif() endif() +elseif (${CMAKE_SYSTEM_PROCESSOR} MATCHES "ppc64") + message(STATUS "PowerPC detected") + add_compile_options(-mcpu=native -mtune=native) + #TODO: Add targets for Power8/Power9 (Altivec/VSX) and Power10(MMA) and query for big endian systems (ppc64/le/be) else() - # TODO: support PowerPC message(STATUS "Unknown architecture") endif() diff --git a/ggml.c b/ggml.c index 6a9695e23..91b3053dd 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];