Skip to content

Commit

Permalink
fix ci lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
mshr-h committed Jun 12, 2024
1 parent e83ba15 commit 6b14541
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/python/relax/test_frontend_from_fx.py
Original file line number Diff line number Diff line change
Expand Up @@ -2635,7 +2635,9 @@ def forward(self, input):
@tvm.script.ir_module
class expected1:
@R.function
def main(input_1: R.Tensor((1, 3, 10, 10), dtype="float32")) -> R.Tuple(
def main(
input_1: R.Tensor((1, 3, 10, 10), dtype="float32")
) -> R.Tuple(
R.Tensor((1, 1, 10, 10), dtype="float32"),
R.Tensor((1, 1, 10, 10), dtype="float32"),
R.Tensor((1, 1, 10, 10), dtype="float32"),
Expand Down Expand Up @@ -2691,7 +2693,9 @@ def forward(self, input):
@tvm.script.ir_module
class Expected:
@R.function
def main(input_1: R.Tensor((1, 3, 10, 10), dtype="float32")) -> R.Tuple(
def main(
input_1: R.Tensor((1, 3, 10, 10), dtype="float32")
) -> R.Tuple(
R.Tensor((1, 1, 10, 10), dtype="float32"),
R.Tensor((1, 1, 10, 10), dtype="float32"),
R.Tensor((1, 1, 10, 10), dtype="float32"),
Expand Down

0 comments on commit 6b14541

Please sign in to comment.