Skip to content

Commit 90c383e

Browse files
owniamglambda
authored andcommitted
ggml-cpu: Fix duplicate MATMUL_INT8 (ggml-org#11817)
Signed-off-by: Weizhao Ouyang <[email protected]>
1 parent 20700b6 commit 90c383e

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

ggml/src/ggml-cpu/ggml-cpu.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -534,9 +534,6 @@ static ggml_backend_feature * ggml_backend_cpu_get_features(ggml_backend_reg_t r
534534
if (ggml_cpu_has_dotprod()) {
535535
features.push_back({ "DOTPROD", "1" });
536536
}
537-
if (ggml_cpu_has_matmul_int8()) {
538-
features.push_back({ "MATMUL_INT8", "1" });
539-
}
540537
if (ggml_cpu_get_sve_cnt() > 0) {
541538
static std::string sve_cnt = std::to_string(ggml_cpu_get_sve_cnt());
542539
features.push_back({ "SVE_CNT", sve_cnt.c_str() });

0 commit comments

Comments
 (0)