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 781c263 commit 263b820Copy full SHA for 263b820
ggml/src/CMakeLists.txt
@@ -402,3 +402,17 @@ if (BUILD_SHARED_LIBS)
402
target_compile_definitions(${target} PUBLIC GGML_SHARED)
403
endforeach()
404
endif()
405
+
406
+if (GGML_VXE)
407
+ add_compile_definitions(GGML_VXE)
408
+ target_compile_definitions(ggml PRIVATE GGML_VXE)
409
+ target_compile_definitions(ggml-base PRIVATE GGML_VXE)
410
+ message(STATUS "GGML_VXE triggered")
411
+endif()
412
413
+if (GGML_NNPA)
414
+ add_compile_definitions(GGML_NNPA)
415
+ target_compile_definitions(ggml PRIVATE GGML_NNPA)
416
+ target_compile_definitions(ggml-base PRIVATE GGML_NNPA)
417
+ message(STATUS "GGML_NNPA triggered")
418
0 commit comments