summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIwan Kawrakow <iwan.kawrakow@gmail.com>2025-06-22 17:49:32 +0300
committerIwan Kawrakow <iwan.kawrakow@gmail.com>2025-06-22 17:49:32 +0300
commitcac763fc2086685ae535e89f94b728c6081e8aac (patch)
treec5eae2bcccbb25402d3a8bfca4fd6017e1baf419
parent22d6817d1e6935cff8bc1fe11633a3e48ff5d22c (diff)
To use GGML_ABORT we need to include ggml-impl.h.
-rw-r--r--ggml/src/iqk/iqk_mul_mat.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/ggml/src/iqk/iqk_mul_mat.cpp b/ggml/src/iqk/iqk_mul_mat.cpp
index 0852ce25..2fc6e96f 100644
--- a/ggml/src/iqk/iqk_mul_mat.cpp
+++ b/ggml/src/iqk/iqk_mul_mat.cpp
@@ -1184,6 +1184,8 @@ bool iqk_flash_attn_impl(int int_type_k, // type of k
#else // IQK_IMPLEMENT
+#include "ggml-impl.h"
+
extern "C" IQK_API bool iqk_mul_mat(int, long, long, long, int, const void *, long, int, const void *, long, float *, long, int, int) {
GGML_ABORT("Unsupported CPU. You may need to manually set compilation flags\n");
return false;