File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ option(GGML_RVV "ggml: enable rvv" ON)
131131option (GGML_RV_ZFH "ggml: enable riscv zfh" OFF )
132132option (GGML_XTHEADVECTOR "ggml: enable xtheadvector" OFF )
133133option (GGML_VXE "ggml: enable vxe" ON )
134- option (GGML_NNPA "ggml: enable nnpa" ON )
134+ option (GGML_NNPA "ggml: enable nnpa" OFF ) # temp disabled by default, see: https://github.com/ggml-org/llama.cpp/issues/14877
135135
136136option (GGML_CPU_ALL_VARIANTS "ggml: build all variants of the CPU backend (requires GGML_BACKEND_DL)" OFF )
137137set (GGML_CPU_ARM_ARCH "" CACHE STRING "ggml: CPU architecture for ARM" )
Original file line number Diff line number Diff line change @@ -458,6 +458,7 @@ function(ggml_add_cpu_backend_variant_impl tag_name)
458458 list (APPEND ARCH_FLAGS -march=z16)
459459 elseif (${S390X_M} MATCHES "9175|9176" )
460460 # NOTE: Only available from GCC 15.1.0 onwards. Any z17 machine with compile issues must first verify their GCC version.
461+ # binutils must also be updated to the latest for the -march=z17 flag to work. Otherwise, use -march=arch15.
461462 message (STATUS "z17 target" )
462463 list (APPEND ARCH_FLAGS -march=z17)
463464 else ()
You can’t perform that action at this time.
0 commit comments