whisper.cpp/ggml/src/ggml-cpu
xctan 8cbc889f85 ggml-cpu : split arch-specific implementations (llama/13892)
* move ggml-cpu-aarch64 to repack

* split quantize_row_q8_0/1

* split helper functions

* split ggml_vec_dot_q4_0_q8_0

* split ggml_vec_dot_q4_1_q8_1

* split ggml_vec_dot_q5_0_q8_0

* split ggml_vec_dot_q5_1_q8_1

* split ggml_vec_dot_q8_0_q8_0

* split ggml_vec_dot_tq1_0_q8_K

* split ggml_vec_dot_tq2_0_q8_K

* split ggml_vec_dot_q2_K_q8_K

* split ggml_vec_dot_q3_K_q8_K

* split ggml_vec_dot_q4_K_q8_K

* split ggml_vec_dot_q5_K_q8_K

* split ggml_vec_dot_q6_K_q8_K

* split ggml_vec_dot_iq2_xxs_q8_K

* split ggml_vec_dot_iq2_xs_q8_K

* split ggml_vec_dot_iq2_s_q8_K

* split ggml_vec_dot_iq3_xxs_q8_K

* split ggml_vec_dot_iq3_s_q8_K

* split ggml_vec_dot_iq1_s_q8_K

* split ggml_vec_dot_iq1_m_q8_K

* split ggml_vec_dot_iq4_nl_q8_0

* split ggml_vec_dot_iq4_xs_q8_K

* fix typos

* fix missing prototypes

* rename ggml-cpu-quants.c

* rename ggml-cpu-traits

* rename arm folder

* move cpu-feats-x86.cpp

* rename ggml-cpu-hbm

* update arm detection macro in quants.c

* move iq quant tables

* split ggml_quantize_mat_q8_0/K

* split ggml_gemv_*

* split ggml_gemm_*

* rename namespace aarch64 to repack

* use weak aliases to replace test macros

* rename GGML_CPU_AARCH64 to GGML_CPU_REPACK

* rename more aarch64 to repack

* clean up rebase leftover

* fix compilation errors

* remove trailing spaces

* try to fix clang compilation errors

* try to fix clang compilation errors again

* try to fix clang compilation errors, 3rd attempt

* try to fix clang compilation errors, 4th attempt

* try to fix clang compilation errors, 5th attempt

* try to fix clang compilation errors, 6th attempt

* try to fix clang compilation errors, 7th attempt

* try to fix clang compilation errors, 8th attempt

* try to fix clang compilation errors, 9th attempt

* more cleanup

* fix compilation errors

* fix apple targets

* fix a typo in arm version of ggml_vec_dot_q4_K_q8_K

Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>

---------

Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
2025-06-10 12:40:33 +03:00
..
amx ggml-cpu : split arch-specific implementations (llama/13892) 2025-06-10 12:40:33 +03:00
arch ggml-cpu : split arch-specific implementations (llama/13892) 2025-06-10 12:40:33 +03:00
cmake ggml : build backends as libraries (llama/10256) 2024-11-20 21:00:08 +02:00
kleidiai ggml-cpu : split arch-specific implementations (llama/13892) 2025-06-10 12:40:33 +03:00
llamafile ggml : Enable MMA for BF16 in llamafile_sgemm (llama/13148) 2025-05-07 15:39:32 +03:00
CMakeLists.txt ggml-cpu : split arch-specific implementations (llama/13892) 2025-06-10 12:40:33 +03:00
binary-ops.cpp cpu: de-duplicate some of the operators and refactor (ggml/1144) 2025-03-31 14:56:53 +03:00
binary-ops.h cpu: de-duplicate some of the operators and refactor (ggml/1144) 2025-03-31 14:56:53 +03:00
common.h ggml-cpu : split arch-specific implementations (llama/13892) 2025-06-10 12:40:33 +03:00
cpu-feats-x86.cpp ggml : add SSE 4.2 and x64 base variant for CPUs without AVX (llama/12871) 2025-04-24 20:39:16 +03:00
ggml-cpu-aarch64.cpp ggml : riscv: add xtheadvector support (llama/13720) 2025-05-27 18:03:00 +03:00
ggml-cpu-aarch64.h ggml : refactor online repacking (llama/10446) 2024-12-18 12:52:16 +02:00
ggml-cpu-hbm.cpp ggml : refactor online repacking (llama/10446) 2024-12-18 12:52:16 +02:00
ggml-cpu-hbm.h ggml : refactor online repacking (llama/10446) 2024-12-18 12:52:16 +02:00
ggml-cpu-impl.h ggml-cpu : split arch-specific implementations (llama/13892) 2025-06-10 12:40:33 +03:00
ggml-cpu-quants.c arm64: optimize q4_k_q8_k kernel with i8mm (llama/13886) 2025-06-01 15:14:44 +03:00
ggml-cpu-quants.h ggml : build backends as libraries (llama/10256) 2024-11-20 21:00:08 +02:00
ggml-cpu-traits.cpp ggml : refactor online repacking (llama/10446) 2024-12-18 12:52:16 +02:00
ggml-cpu-traits.h ggml : refactor online repacking (llama/10446) 2024-12-18 12:52:16 +02:00
ggml-cpu.c ggml-cpu : split arch-specific implementations (llama/13892) 2025-06-10 12:40:33 +03:00
ggml-cpu.cpp ggml-cpu : split arch-specific implementations (llama/13892) 2025-06-10 12:40:33 +03:00
hbm.cpp ggml-cpu : split arch-specific implementations (llama/13892) 2025-06-10 12:40:33 +03:00
hbm.h ggml-cpu : split arch-specific implementations (llama/13892) 2025-06-10 12:40:33 +03:00
ops.cpp releases : use dl backend for linux release, remove arm64 linux release (llama/13996) 2025-06-10 12:40:33 +03:00
ops.h ggml : Depthwise 2D convolution (ggml/1152) 2025-04-24 20:39:16 +03:00
quants.c ggml-cpu : split arch-specific implementations (llama/13892) 2025-06-10 12:40:33 +03:00
quants.h ggml-cpu : split arch-specific implementations (llama/13892) 2025-06-10 12:40:33 +03:00
repack.cpp ggml-cpu : split arch-specific implementations (llama/13892) 2025-06-10 12:40:33 +03:00
repack.h ggml-cpu : split arch-specific implementations (llama/13892) 2025-06-10 12:40:33 +03:00
simd-mappings.h ggml: aarch64: Implement SVE F32 kernels for vector functions (llama/13843) 2025-06-01 15:14:44 +03:00
traits.cpp ggml-cpu : split arch-specific implementations (llama/13892) 2025-06-10 12:40:33 +03:00
traits.h ggml-cpu : split arch-specific implementations (llama/13892) 2025-06-10 12:40:33 +03:00
unary-ops.cpp cpu: de-duplicate some of the operators and refactor (ggml/1144) 2025-03-31 14:56:53 +03:00
unary-ops.h cpu: de-duplicate some of the operators and refactor (ggml/1144) 2025-03-31 14:56:53 +03:00
vec.cpp ggml: aarch64: Implement SVE F32 kernels for vector functions (llama/13843) 2025-06-01 15:14:44 +03:00
vec.h ggml: aarch64: Implement SVE F32 kernels for Mamba Sequential Scan Algorithm (llama/13882) 2025-06-01 15:14:44 +03:00