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
8 changes: 4 additions & 4 deletions backends/qualcomm/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import operator
import warnings
from collections import OrderedDict
from typing import Callable, Dict, List, Set, Tuple
from typing import Callable, Dict, FrozenSet, List, Set, Tuple

import executorch.backends.qualcomm.python.PyQnnManagerAdaptor as PyQnnManagerAdaptor

Expand Down Expand Up @@ -290,9 +290,8 @@ def get_decomp_table() -> Dict[torch._ops.OperatorBase, Callable]:


def _transform(
edge_program: ExportedProgram, custom_pass_config: Set[str] = None
) -> None:
custom_pass_config = custom_pass_config or {}
edge_program: ExportedProgram, custom_pass_config: FrozenSet[str] = frozenset()
) -> ExportedProgram:
# currently ExirExportedProgram.transform does not accept
# changes of input number which was caused by FoldQDQ
# apply passes one by one here to avoid IR capture failure
Expand Down Expand Up @@ -322,6 +321,7 @@ def _transform(
edge_program.graph_module,
)
edge_program._validate()
return edge_program


def capture_program(
Expand Down
Loading