From 4de8e3dce617444c06522f5a782519e8ddf9ce25 Mon Sep 17 00:00:00 2001 From: Scott Wolchok Date: Tue, 25 Mar 2025 16:45:53 -0700 Subject: [PATCH] Update [ghstack-poisoned] --- test/build_size_test.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/build_size_test.sh b/test/build_size_test.sh index f7f9a0152d2..201714c185c 100644 --- a/test/build_size_test.sh +++ b/test/build_size_test.sh @@ -40,6 +40,15 @@ test_cmake_size_test() { echo 'ExecuTorch with portable ops binary size, unstripped:' ls -al cmake-out/test/size_test_all_ops + + strip cmake-out/test/size_test + strip cmake-out/test/size_test_all_ops + + echo 'ExecuTorch with no ops binary size, stripped:' + ls -al cmake-out/test/size_test + + echo 'ExecuTorch with portable ops binary size, stripped:' + ls -al cmake-out/test/size_test_all_ops } if [[ -z $PYTHON_EXECUTABLE ]]; then