Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions backends/qualcomm/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@ export LD_LIBRARY_PATH=$QNN_SDK_ROOT/lib/x86_64-linux-clang/:$LD_LIBRARY_PATH
export PYTHONPATH=$EXECUTORCH_ROOT/..
```

Note: Since we set `PYTHONPATH`, we may have issue with finding `program.fbs`
and `scalar_type.fbs` when we export a model, because they are installed into
`pip-out` directory with the same package name pattern. A workaround is that
we copy `$EXECUTORCH_ROOT/pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/program.fbs`
and `$EXECUTORCH_ROOT/pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/scalar_type.fbs`
to `$EXECUTORCH_ROOT/exir/_serialize/`.


## End to End Inference

Expand Down