-
Notifications
You must be signed in to change notification settings - Fork 0
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
Uplift tt-mlir version and skip the failing tests (Nov-12-2024). #29
Conversation
The failure is due to an issue reported in tt-xla as well tenstorrent/tt-xla#57. Referencing it here so slice tests are enabled once the issue is resolved. |
tests/torch/test_basic.py
Outdated
@@ -285,6 +285,7 @@ def forward(self, x): | |||
@pytest.mark.parametrize( | |||
"begin, end, dim", [*dim2_cases, *dim3_cases, *dim0_cases, *dim1_cases] | |||
) | |||
@pytest.mark.skip("AssertionError: ATOL too high: nan vs 0.01") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it all of the slice tests that are failing? Could we just skip some of them?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
slice test is only working for dim=3
. I have skipped remaining tests.
fe4d490
to
4bb95ff
Compare
4bb95ff
to
78565ee
Compare
@@ -286,6 +286,10 @@ def forward(self, x): | |||
"begin, end, dim", [*dim2_cases, *dim3_cases, *dim0_cases, *dim1_cases] | |||
) | |||
def test_slice(begin, end, dim): | |||
# Slice test is only working for dim=3; skipping all other tests. | |||
if dim != 3: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please also add an issue tracking this bug so that we'll eventually follow up and remove the skip.
No description provided.