Skip to content

Commit

Permalink
disable test_transpose_2D due to python-side segfault (#16933)
Browse files Browse the repository at this point in the history
### Ticket
#16779 

### Problem description
Test keeps segfaulting

### What's changed
disable the test

### Checklist
- [ ] Post commit CI passes
https://github.com/tenstorrent/tt-metal/actions/runs/12889806404
- [ ] Blackhole Post commit (if applicable)
- [ ] Model regression CI testing passes (if applicable)
- [ ] Device performance regression CI testing passes (if applicable)
- [ ] **(For models and ops writers)** Full [new
models](https://github.com/tenstorrent/tt-metal/actions/workflows/full-new-models-suite.yaml)
tests passes
- [ ] New/Existing tests provide coverage for changes
  • Loading branch information
sjameelTT authored Jan 21, 2025
1 parent e423321 commit eb90ded
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -659,11 +659,10 @@ def test_transpose_hc(dtype, shape, device):
[ttnn.TILE_LAYOUT, ttnn.ROW_MAJOR_LAYOUT],
)
def test_transpose_2D(dtype, shape, layout, device):
pytest.skip("Unstable see #16779")
torch.manual_seed(2005)
if is_grayskull() and dtype == ttnn.float32:
pytest.skip("Skipping float32 tests on Grayskull")
if layout == ttnn.ROW_MAJOR_LAYOUT and shape == [21843, 768] and dtype == ttnn.bfloat16:
pytest.skip("Unstable see #16779")
torch_input = torch.randn(shape, dtype=torch.bfloat16)
torch_output = torch_input.transpose(0, 1)

Expand Down

0 comments on commit eb90ded

Please sign in to comment.