Skip to content

Commit a25126c

Browse files
authored
fix the binary path (#12770)
Summary: As title, the binary path is off Differential Revision: D78840753
1 parent e81727a commit a25126c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/source/backends-qualcomm.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ cmake ../examples/qualcomm \
210210
cmake --build examples/qualcomm -j$(nproc)
211211

212212
# qnn_executor_runner can be found under examples/qualcomm
213-
# The full path is $EXECUTORCH_ROOT/build-android/examples/qualcomm/qnn_executor_runner
213+
# The full path is $EXECUTORCH_ROOT/build-android/examples/qualcomm/executor_runner/qnn_executor_runner
214214
ls examples/qualcomm
215215
```
216216

@@ -266,9 +266,9 @@ cmake ../examples/qualcomm \
266266

267267
cmake --build examples/qualcomm -j$(nproc)
268268

269-
# qnn_executor_runner can be found under examples/qualcomm
270-
# The full path is $EXECUTORCH_ROOT/build-x86/examples/qualcomm/qnn_executor_runner
271-
ls examples/qualcomm/
269+
# qnn_executor_runner can be found under examples/qualcomm/executor_runner
270+
# The full path is $EXECUTORCH_ROOT/build-x86/examples/qualcomm/executor_runner/qnn_executor_runner
271+
ls examples/qualcomm/executor_runner
272272
```
273273

274274
To run the HTP emulator, the dynamic linker need to access QNN libraries and `libqnn_executorch_backend.so`.
@@ -284,7 +284,7 @@ So, we can run `./deeplab_v3/dlv3_qnn.pte` by:
284284
```bash
285285
cd $EXECUTORCH_ROOT/build-x86
286286
export LD_LIBRARY_PATH=$EXECUTORCH_ROOT/build-x86/lib/:$LD_LIBRARY_PATH
287-
examples/qualcomm/qnn_executor_runner --model_path ../deeplab_v3/dlv3_qnn.pte
287+
examples/qualcomm/executor_runner/qnn_executor_runner --model_path ../deeplab_v3/dlv3_qnn.pte
288288
```
289289

290290
We should see some outputs like the below. Note that the emulator can take some time to finish.

0 commit comments

Comments
 (0)