From bf2ecf120b8c34ada9780a6f34b47ad33ef783e6 Mon Sep 17 00:00:00 2001 From: Digant Desai Date: Tue, 23 Sep 2025 04:00:56 -0700 Subject: [PATCH] [test_llama] CI: enable logging The rationale is to see tps and other common stats not just on CI but also when using this script for local developments. --- .ci/scripts/test_llama.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.ci/scripts/test_llama.sh b/.ci/scripts/test_llama.sh index 84278e290f6..efe3ebd764b 100644 --- a/.ci/scripts/test_llama.sh +++ b/.ci/scripts/test_llama.sh @@ -159,6 +159,7 @@ cmake_install_executorch_libraries() { -DCMAKE_INSTALL_PREFIX=cmake-out \ -DCMAKE_BUILD_TYPE="$CMAKE_BUILD_TYPE" \ -DEXECUTORCH_BUILD_QNN="$QNN" \ + -DEXECUTORCH_ENABLE_LOGGING=ON \ -DQNN_SDK_ROOT="$QNN_SDK_ROOT" cmake --build cmake-out -j9 --target install --config "$CMAKE_BUILD_TYPE" }