File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
backend/ir/converter/node_converters/ops_converters Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -97,8 +97,7 @@ def _is_supported_on_target(
9797 channels_index = - 1
9898
9999 input_channels = [
100- _get_shape (input_ )[channels_index ]
101- for input_ in node .all_input_nodes
100+ _get_shape (input_ )[channels_index ] for input_ in node .all_input_nodes
102101 ]
103102 output_channels = _get_shape (node )[channels_index ]
104103
Original file line number Diff line number Diff line change 2020)
2121from executorch .backends .nxp .backend .ir .converter .node_converter import NodeConverter
2222from executorch .backends .nxp .backend .neutron_target_spec import NeutronTargetSpec
23+
24+ from executorch .backends .nxp .backend .node_format_inference import NodeFormatInference
2325from torch .export import ExportedProgram
2426from torch .fx import Node
2527from torch .fx .graph import Graph
You can’t perform that action at this time.
0 commit comments