Skip to content

Commit 9b4866c

Browse files
committed
fixed ci failure without PyQnnWrapperAdaptor
1 parent 92d84f8 commit 9b4866c

File tree

4 files changed

+1
-5
lines changed

4 files changed

+1
-5
lines changed

.ci/scripts/build-qnn-sdk.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,10 @@ set_up_aot() {
4242
-DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \
4343
-DEXECUTORCH_ENABLE_EVENT_TRACER=ON \
4444
-DPYTHON_EXECUTABLE=python3
45-
cmake --build $PWD --target "PyQnnManagerAdaptor" "PyQnnWrapperAdaptor" -j$(nproc)
45+
cmake --build $PWD --target "PyQnnManagerAdaptor" -j$(nproc)
4646
# install Python APIs to correct import path
4747
# The filename might vary depending on your Python and host version.
4848
cp -f backends/qualcomm/PyQnnManagerAdaptor.cpython-310-x86_64-linux-gnu.so $EXECUTORCH_ROOT/backends/qualcomm/python
49-
cp -f backends/qualcomm/PyQnnWrapperAdaptor.cpython-310-x86_64-linux-gnu.so $EXECUTORCH_ROOT/backends/qualcomm/python
5049
popd
5150

5251
# Workaround for fbs files in exir/_serialize

.ci/scripts/test_llama.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@ if [[ "${MODE}" =~ .*qnn.* ]]; then
130130
cp schema/program.fbs exir/_serialize/program.fbs
131131
cp schema/scalar_type.fbs exir/_serialize/scalar_type.fbs
132132
cp -f build-x86/backends/qualcomm/PyQnnManagerAdaptor.cpython-310-x86_64-linux-gnu.so backends/qualcomm/python
133-
cp -f build-x86/backends/qualcomm/PyQnnWrapperAdaptor.cpython-310-x86_64-linux-gnu.so backends/qualcomm/python
134133

135134
else
136135
QNN=OFF

.ci/scripts/test_qnn_static_llama_eval.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ export PYTHONPATH=".."
2121
cp schema/program.fbs exir/_serialize/program.fbs
2222
cp schema/scalar_type.fbs exir/_serialize/scalar_type.fbs
2323
cp -f build-x86/backends/qualcomm/PyQnnManagerAdaptor.cpython-310-x86_64-linux-gnu.so backends/qualcomm/python
24-
cp -f build-x86/backends/qualcomm/PyQnnWrapperAdaptor.cpython-310-x86_64-linux-gnu.so backends/qualcomm/python
2524

2625
if [[ -z "${PYTHON_EXECUTABLE:-}" ]]; then
2726
PYTHON_EXECUTABLE=python3

.ci/scripts/test_qnn_static_llm.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ export PYTHONPATH=".."
2626
cp schema/program.fbs exir/_serialize/program.fbs
2727
cp schema/scalar_type.fbs exir/_serialize/scalar_type.fbs
2828
cp -f build-x86/backends/qualcomm/PyQnnManagerAdaptor.cpython-310-x86_64-linux-gnu.so backends/qualcomm/python
29-
cp -f build-x86/backends/qualcomm/PyQnnWrapperAdaptor.cpython-310-x86_64-linux-gnu.so backends/qualcomm/python
3029

3130
if [[ -z "${PYTHON_EXECUTABLE:-}" ]]; then
3231
PYTHON_EXECUTABLE=python3

0 commit comments

Comments
 (0)