Skip to content

Commit 7788a81

Browse files
cccclaifacebook-github-bot
authored andcommitted
Fix qualcomm passes
Summary: A new pass is added after #5920 Differential Revision: D64190781
1 parent df5b2ab commit 7788a81

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

backends/qualcomm/utils/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
QNN_TENSOR_TYPE_MAP,
4848
)
4949
from executorch.backends.qualcomm.builders.qnn_constants import OpContextLoader
50-
from executorch.backends.qualcomm.passes.expand_broadcast_tensor_shape import (
50+
from executorch.backends.qualcomm._passes.expand_broadcast_tensor_shape import (
5151
ExpandBroadcastTensorShape,
5252
)
5353
from executorch.backends.qualcomm.serialization.qnn_compile_spec_schema import (

examples/qualcomm/TARGETS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,11 @@ runtime.python_binary(
2020
"//executorch/extension/export_util:export_util",
2121
],
2222
)
23+
24+
runtime.command_alias(
25+
name = "export_example_qnn",
26+
env = {
27+
"LD_LIBRARY_PATH": "$(location fbsource//third-party/qualcomm/qnn/qnn-2.25:qnn_offline_compile_libs)",
28+
},
29+
exe = ":export_example",
30+
)

0 commit comments

Comments
 (0)