Skip to content

Commit b3e69c5

Browse files
Revert usage of nncf.Subgraph
1 parent 60d9cfb commit b3e69c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backends/openvino/quantizer/quantizer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def set_ignored_scope(
8888
names: Optional[List[str]] = None,
8989
patterns: Optional[List[str]] = None,
9090
types: Optional[List[str]] = None,
91-
subgraphs: Optional[List[nncf.Subgraph]] = None,
91+
subgraphs: Optional[List[Tuple[List[str], List[str]]]] = None,
9292
validate: bool = True,
9393
) -> None:
9494
"""
@@ -107,7 +107,7 @@ def set_ignored_scope(
107107
names=names or [],
108108
patterns=patterns or [],
109109
types=types or [],
110-
subgraphs=subgraphs or nncf.Subgraph(),
110+
subgraphs=subgraphs or [],
111111
validate=validate,
112112
)
113113
)

0 commit comments

Comments
 (0)