Skip to content

Commit

Permalink
#8364: Disable implicit fallback for ttnn.split
Browse files Browse the repository at this point in the history
  • Loading branch information
ayerofieiev-tt committed May 22, 2024
1 parent b84ce16 commit 2a91be1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions tests/ttnn/unit_tests/operations/test_split.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
from models.utility_functions import skip_for_wormhole_b0


@pytest.mark.skip(reason="ttnn.split is not implemented")
@pytest.mark.parametrize("h", [32])
@pytest.mark.parametrize("w", [64])
@pytest.mark.parametrize("split_size", [2, 4])
Expand Down
2 changes: 1 addition & 1 deletion ttnn/ttnn/operations/data_movement.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def _split_validate_input_tensors(operation_name, input_tensor, *args, **kwargs)
name="ttnn.split",
validate_input_tensors=_split_validate_input_tensors,
golden_function=_golden_function,
allow_to_fallback_to_golden_function_on_failure=True,
allow_to_fallback_to_golden_function_on_failure=False,
)
def split(input_tensor: ttnn.Tensor, split_size: int, dim: int) -> ttnn.Tensor:
r"""
Expand Down

0 comments on commit 2a91be1

Please sign in to comment.