Skip to content

Commit ecc92b1

Browse files
committed
fix incorrect QNN conflict resolution on last rebase
[ghstack-poisoned]
2 parents 0e7a016 + 7e82d00 commit ecc92b1

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

examples/qualcomm/CMakeLists.txt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,6 @@ target_compile_options(
6060
full_portable_ops_lib INTERFACE -DET_EVENT_TRACER_ENABLED
6161
)
6262

63-
add_subdirectory(
64-
${EXECUTORCH_ROOT}/extension/llm/runner
65-
${CMAKE_CURRENT_BINARY_DIR}/../../extension/llm/runner
66-
)
67-
6863
# Let files say "include <executorch/path/to/header.h>".
6964
set(_common_include_directories
7065
${EXECUTORCH_ROOT}/..

install_executorch.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ def clean():
5050
print("Cleaning buck-out/...")
5151
shutil.rmtree("buck-out/", ignore_errors=True)
5252

53+
# Removes all buck cached state and metadata
54+
print("Cleaning buck cached state and metadata ...")
55+
shutil.rmtree(os.path.expanduser("~/.buck/buckd"), ignore_errors=True)
56+
5357
# Clean ccache if available
5458
try:
5559
result = subprocess.run(["ccache", "--version"], capture_output=True, text=True)

0 commit comments

Comments
 (0)