From c675664f4e3eed840f7756c3ec4dee821894a153 Mon Sep 17 00:00:00 2001 From: Shrinath Suresh Date: Thu, 31 Aug 2023 13:22:40 +0530 Subject: [PATCH] Setting Fast compiler option Signed-off-by: Shrinath Suresh --- cpp/src/examples/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/examples/CMakeLists.txt b/cpp/src/examples/CMakeLists.txt index c72a412305..27b3578c0d 100644 --- a/cpp/src/examples/CMakeLists.txt +++ b/cpp/src/examples/CMakeLists.txt @@ -13,4 +13,4 @@ list(APPEND LLM_SOURCE_FILES ${LLM_SRC_DIR}/run.c) add_library(llm_handler SHARED ${LLM_SOURCE_FILES}) target_include_directories(llm_handler PUBLIC ${LLM_SRC_DIR}) target_link_libraries(llm_handler PRIVATE ts_backends_torch_scripted ts_utils ${TORCH_LIBRARIES}) - +target_compile_options(llm_handler PRIVATE -Wall -Wextra -Ofast)