]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
ggml-cpu: Fix duplicate MATMUL_INT8 (#11817)
authorWeizhao Ouyang <redacted>
Wed, 12 Feb 2025 12:22:58 +0000 (20:22 +0800)
committerGitHub <redacted>
Wed, 12 Feb 2025 12:22:58 +0000 (13:22 +0100)
Signed-off-by: Weizhao Ouyang <redacted>
ggml/src/ggml-cpu/ggml-cpu.cpp

index 87d7ce530ce255044e8c8bd10a2cab0100f726c2..be4eadcd021f6518766fe774627dbe6672440e47 100644 (file)
@@ -534,9 +534,6 @@ static ggml_backend_feature * ggml_backend_cpu_get_features(ggml_backend_reg_t r
         if (ggml_cpu_has_dotprod()) {
             features.push_back({ "DOTPROD", "1" });
         }
-        if (ggml_cpu_has_matmul_int8()) {
-            features.push_back({ "MATMUL_INT8", "1" });
-        }
         if (ggml_cpu_get_sve_cnt() > 0) {
             static std::string sve_cnt = std::to_string(ggml_cpu_get_sve_cnt());
             features.push_back({ "SVE_CNT", sve_cnt.c_str() });