Skip to content

Commit

Permalink
Fix pyre in arm_backend.py
Browse files Browse the repository at this point in the history
Differential Revision: D66475070

Pull Request resolved: pytorch#7069
  • Loading branch information
kirklandsign authored Nov 27, 2024
1 parent a2619e1 commit 8b375f2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion backends/arm/arm_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,9 @@ def set_quantize_io(self, quantize_io: bool = False) -> "ArmCompileSpecBuilder":
self.quantize_io = quantize_io
return self

def set_input_order(self, input_order: str = None) -> "ArmCompileSpecBuilder":
def set_input_order(
self, input_order: Optional[str] = None
) -> "ArmCompileSpecBuilder":
"""
Reorder the inputs coming in. This may be required when inputs > 1.
And while using the U55/U85 CompileSpec.
Expand Down

0 comments on commit 8b375f2

Please sign in to comment.