diff options
author | Kawrakow <iwankawrakow@gmail.com> | 2025-05-17 11:21:58 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-17 11:21:58 +0300 |
commit | b3036a872f474beadf2df72d452ca7016db72aac (patch) | |
tree | a5d99baa610d8efa9489ed47ca263cb4802d6143 /ggml/src/iqk/iqk_flash_attn.cpp | |
parent | c35a383bcd8e4bd334ba2b8d2eb96103e69f75d4 (diff) |
Option to enable disable the IQK CPU FA kernels (#429)
Co-authored-by: Iwan Kawrakow <iwan.kawrakow@gmail.com>
Diffstat (limited to 'ggml/src/iqk/iqk_flash_attn.cpp')
-rw-r--r-- | ggml/src/iqk/iqk_flash_attn.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ggml/src/iqk/iqk_flash_attn.cpp b/ggml/src/iqk/iqk_flash_attn.cpp index 610f18b7..9a974ae7 100644 --- a/ggml/src/iqk/iqk_flash_attn.cpp +++ b/ggml/src/iqk/iqk_flash_attn.cpp @@ -8,7 +8,7 @@ #include "iqk_mul_mat.h" #include "iqk_flash_impl.h" -#ifdef IQK_IMPLEMENT +#if defined IQK_IMPLEMENT && defined GGML_IQK_FLASH_ATTENTION #include <algorithm> #include <cstdio> |