diff --git a/tests/ttnn/unit_tests/operations/test_unary.py b/tests/ttnn/unit_tests/operations/test_unary.py index ebf76e631ff4..74b72ed69778 100644 --- a/tests/ttnn/unit_tests/operations/test_unary.py +++ b/tests/ttnn/unit_tests/operations/test_unary.py @@ -135,12 +135,6 @@ def test_atanh(device, h, w): run_unary_test(device, h, w, ttnn.atanh, torch.atanh) -@pytest.mark.parametrize("h", [64]) -@pytest.mark.parametrize("w", [128]) -def test_clone(device, h, w): - run_unary_test(device, h, w, ttnn.clone, torch.clone) - - @pytest.mark.parametrize("h", [64]) @pytest.mark.parametrize("w", [128]) def test_logical_not(device, h, w):