summaryrefslogtreecommitdiff
path: root/ggml.h
diff options
context:
space:
mode:
authorautomaticcat <daogiatuank54@gmail.com>2023-12-30 15:07:48 +0700
committerGitHub <noreply@github.com>2023-12-30 10:07:48 +0200
commit24a447e20af425fa44cf10feaa632b6bb596c80f (patch)
tree66612870e12dd4be3b05f47371c3a0c5e8346da7 /ggml.h
parenta20f3c7465d6d1b33767757c2760643b799a81bf (diff)
ggml : add ggml_cpu_has_avx_vnni() (#4589)
* feat: add avx_vnni based on intel documents * ggml: add avx vnni based on intel document * llama: add avx vnni information display * docs: add more details about using oneMKL and oneAPI for intel processors * docs: add more details about using oneMKL and oneAPI for intel processors * docs: add more details about using oneMKL and oneAPI for intel processors * docs: add more details about using oneMKL and oneAPI for intel processors * docs: add more details about using oneMKL and oneAPI for intel processors * Update ggml.c Fix indentation upgate Co-authored-by: Georgi Gerganov <ggerganov@gmail.com> --------- Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
Diffstat (limited to 'ggml.h')
-rw-r--r--ggml.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ggml.h b/ggml.h
index 67d6bc4f..64f4e45e 100644
--- a/ggml.h
+++ b/ggml.h
@@ -2198,6 +2198,7 @@ extern "C" {
//
GGML_API int ggml_cpu_has_avx (void);
+ GGML_API int ggml_cpu_has_avx_vnni (void);
GGML_API int ggml_cpu_has_avx2 (void);
GGML_API int ggml_cpu_has_avx512 (void);
GGML_API int ggml_cpu_has_avx512_vbmi(void);