ggml-cpu: bruteforce macro definitions

Signed-off-by: Aaron Teo <aaron.teo1@ibm.com>
This commit is contained in:
Aaron Teo
2025-06-21 19:14:31 +08:00
parent ed76ff6e42
commit 84593387a7

View File

@@ -57,11 +57,15 @@ endif()
if (GGML_VXE)
add_compile_definitions(GGML_VXE)
target_compile_definitions(ggml PUBLIC GGML_VXE)
target_compile_definitions(ggml-base PUBLIC GGML_VXE)
message(STATUS "GGML_VXE triggered")
endif()
if (GGML_NNPA)
add_compile_definitions(GGML_NNPA)
target_compile_definitions(ggml PUBLIC GGML_NNPA)
target_compile_definitions(ggml-base PUBLIC GGML_NNPA)
message(STATUS "GGML_NNPA triggered")
endif()