Spaces:
Running
Running
ggml-cpu: Fix duplicate MATMUL_INT8 (llama/11817)
Browse filesSigned-off-by: Weizhao Ouyang <o451686892@gmail.com>
ggml/src/ggml-cpu/ggml-cpu.cpp
CHANGED
|
@@ -534,9 +534,6 @@ static ggml_backend_feature * ggml_backend_cpu_get_features(ggml_backend_reg_t r
|
|
| 534 |
if (ggml_cpu_has_dotprod()) {
|
| 535 |
features.push_back({ "DOTPROD", "1" });
|
| 536 |
}
|
| 537 |
-
if (ggml_cpu_has_matmul_int8()) {
|
| 538 |
-
features.push_back({ "MATMUL_INT8", "1" });
|
| 539 |
-
}
|
| 540 |
if (ggml_cpu_get_sve_cnt() > 0) {
|
| 541 |
static std::string sve_cnt = std::to_string(ggml_cpu_get_sve_cnt());
|
| 542 |
features.push_back({ "SVE_CNT", sve_cnt.c_str() });
|
|
|
|
| 534 |
if (ggml_cpu_has_dotprod()) {
|
| 535 |
features.push_back({ "DOTPROD", "1" });
|
| 536 |
}
|
|
|
|
|
|
|
|
|
|
| 537 |
if (ggml_cpu_get_sve_cnt() > 0) {
|
| 538 |
static std::string sve_cnt = std::to_string(ggml_cpu_get_sve_cnt());
|
| 539 |
features.push_back({ "SVE_CNT", sve_cnt.c_str() });
|