Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Map aten::remainder to tvm's mod instead of floor_mod #47

Closed
wants to merge 1 commit into from

Conversation

ashokkumarkannan1
Copy link
Contributor

@ashokkumarkannan1 ashokkumarkannan1 commented Nov 18, 2024

Fixes tenstorrent/tt-forge-fe#517
Fixes tenstorrent/tt-forge-fe#710

TTNN directly supports remainder op. Since TVM doesn't have remainder op, aten::remainder is mapped to tvm's mod op and this will be mapped to Remainder op in Forge

@@ -4622,7 +4622,7 @@ def create_convert_map(self):
"aten::floor_divide": self.make_elemwise("floor_divide"),
"aten::true_divide": self.make_elemwise("divide"),
"aten::fmod": self.make_elemwise("trunc_mod"),
"aten::remainder": self.make_elemwise("floor_mod"),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are we changing this from floor_mod to pure mod?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tested with both floor_mod and mod op and I didn't face any mismatch there. So I Will close this PR and track with floor_mod itself @nvukobratTT

@ashokkumarkannan1
Copy link
Contributor Author

Changes not required. aten::remainder will be tracked with floor_mod itself

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants