We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a4043a commit 68ae9d8Copy full SHA for 68ae9d8
backends/qualcomm/setup.md
@@ -55,6 +55,13 @@ export LD_LIBRARY_PATH=$QNN_SDK_ROOT/lib/x86_64-linux-clang/:$LD_LIBRARY_PATH
55
export PYTHONPATH=$EXECUTORCH_ROOT/..
56
```
57
58
+Note: Since we set `PYTHONPATH`, we may have issue with finding `program.fbs`
59
+and `scalar_type.fbs` when we export a model, because they are installed into
60
+`pip-out` directory with the same package name pattern. A workaround is that
61
+we copy `$EXECUTORCH_ROOT/pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/program.fbs`
62
+and `$EXECUTORCH_ROOT/pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/scalar_type.fbs`
63
+to `$EXECUTORCH_ROOT/exir/_serialize/`.
64
+
65
66
## End to End Inference
67
0 commit comments