gemini-code-assist[bot] commented on code in PR #18427:
URL: https://github.com/apache/tvm/pull/18427#discussion_r2505586883
##########
tests/python/relax/test_frontend_from_exported_program.py:
##########
@@ -4083,13 +4109,13 @@ def main(
return gv
example_args = (torch.randn(3, dtype=torch.float32),)
- verify_model(Tile1(), example_args, {}, expected1)
+ verify_model(Tile1(), example_args, {}, expected1,
run_ep_decomposition=True)
example_args = (torch.randn(1, 3, dtype=torch.float32),)
- verify_model(Tile2(), example_args, {}, expected2)
+ verify_model(Tile2(), example_args, {}, expected2,
run_ep_decomposition=True)
example_args = (torch.randn(1, 3, dtype=torch.float32),)
- verify_model(Tile2(), example_args, {}, expected2)
+ verify_model(Tile2(), example_args, {}, expected2,
run_ep_decomposition=True)
Review Comment:

This test case for `Tile2` appears to be a duplicate of the one on lines
4114-4115. Please remove the redundant test call to improve test suite clarity
and maintainability.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]