Skip to content

Commit

Permalink
ggml-cpu: Fix duplicate MATMUL_INT8 (ggml-org#11817)
Browse files Browse the repository at this point in the history
Signed-off-by: Weizhao Ouyang <[email protected]>
  • Loading branch information
ownia authored Feb 12, 2025
1 parent c3d6af7 commit 198b1ec
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions ggml/src/ggml-cpu/ggml-cpu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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() });
Expand Down

0 comments on commit 198b1ec

Please sign in to comment.