Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ggml/src/ggml.c
Original file line number Diff line number Diff line change
Expand Up @@ -1585,6 +1585,8 @@ static const ggml_type_traits_t type_traits[GGML_TYPE_COUNT] = {
.vec_dot = vec_dot_iq2_kt_q8_k,
#ifdef __ARM_NEON
.vec_dot_type = GGML_TYPE_F16,
#elif defined __AVX512BF16__
.vec_dot_type = GGML_TYPE_BF16,
#else
.vec_dot_type = GGML_TYPE_F32,
#endif
Expand All @@ -1602,6 +1604,8 @@ static const ggml_type_traits_t type_traits[GGML_TYPE_COUNT] = {
.vec_dot = vec_dot_iq3_kt_q8_k,
#ifdef __ARM_NEON
.vec_dot_type = GGML_TYPE_F16,
#elif defined __AVX512BF16__
.vec_dot_type = GGML_TYPE_BF16,
#else
.vec_dot_type = GGML_TYPE_F32,
#endif
Expand All @@ -1619,6 +1623,8 @@ static const ggml_type_traits_t type_traits[GGML_TYPE_COUNT] = {
.vec_dot = vec_dot_iq4_kt_q8_k,
#ifdef __ARM_NEON
.vec_dot_type = GGML_TYPE_F16,
#elif defined __AVX512BF16__
.vec_dot_type = GGML_TYPE_BF16,
#else
.vec_dot_type = GGML_TYPE_F32,
#endif
Expand Down
Loading