Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ def test_max_pool_2d_conversion(input_shape, padding):
# Otherwise, we get violation that this op is not part of ATen Core ops.
edge_program._verifiers = [
EXIREdgeDialectVerifier(
class_only=True, exception_list=[torch.ops.aten.max_pool2d.default]
class_only=True,
core_aten_ops_exception_list=[torch.ops.aten.max_pool2d.default],
)
]

Expand Down
3 changes: 2 additions & 1 deletion backends/nxp/tests/test_node_format_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ def test_maxpool2d():
# Otherwise, we get violation that this op is not part of ATen Core ops.
edge_program._verifiers = [
EXIREdgeDialectVerifier(
class_only=True, exception_list=[torch.ops.aten.max_pool2d.default]
class_only=True,
core_aten_ops_exception_list=[torch.ops.aten.max_pool2d.default],
)
]

Expand Down
Loading