File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -628,9 +628,7 @@ def deserialize(
628
628
call_spec ,
629
629
module_call_graph ,
630
630
symbol_name_to_symbol ,
631
- ) = GraphModuleDeserializer (
632
- state_dict # pyre-ignore
633
- ).deserialize (
631
+ ) = GraphModuleDeserializer (state_dict ).deserialize (
634
632
serialized_exported_program .graph_module ,
635
633
symbol_name_to_range ,
636
634
)
@@ -651,7 +649,7 @@ def deserialize(
651
649
)
652
650
653
651
return exir .ExportedProgram (
654
- state_dict , # pyre-ignore
652
+ state_dict ,
655
653
graph_module .graph ,
656
654
sig ,
657
655
call_spec ,
Original file line number Diff line number Diff line change @@ -637,7 +637,9 @@ def _default_decomposition_table(
637
637
torch .ops .aten .arange .start ,
638
638
torch .ops .aten .transpose ,
639
639
]
640
+ # pyre-fixme[7]: Expected `Dict[OpOverload, typing.Callable[..., executorch.e...
640
641
return get_decompositions (decomp_opset )
642
+ # pyre-fixme[7]: Expected `Dict[OpOverload, typing.Callable[..., executorch.exir....
641
643
return core_aten_decompositions ()
642
644
643
645
You can’t perform that action at this time.
0 commit comments