We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c36f96 commit 625a7a7Copy full SHA for 625a7a7
ggml/src/CMakeLists.txt
@@ -287,6 +287,7 @@ if (GGML_CPU_ALL_VARIANTS)
287
if (NOT GGML_BACKEND_DL)
288
message(FATAL_ERROR "GGML_CPU_ALL_VARIANTS requires GGML_BACKEND_DL")
289
endif()
290
+ ggml_add_cpu_backend_variant(x64)
291
ggml_add_cpu_backend_variant(sse42 SSE42)
292
ggml_add_cpu_backend_variant(sandybridge SSE42 AVX)
293
ggml_add_cpu_backend_variant(haswell SSE42 AVX F16C AVX2 BMI2 FMA)
ggml/src/ggml-cpu/cpu-feats-x86.cpp
@@ -263,7 +263,7 @@ void test_x86_is() {
263
static int ggml_backend_cpu_x86_score() {
264
// FIXME: this does not check for OS support
265
266
- int score = 0;
+ int score = 1;
267
cpuid_x86 is;
268
269
#ifdef GGML_FMA
0 commit comments