diff --git a/tests/ttnn/sweep_tests/sweeps/reshard_height_width.py b/tests/ttnn/sweep_tests/sweeps/reshard_height_width.py index 8c7a6b07a42..749346a0199 100644 --- a/tests/ttnn/sweep_tests/sweeps/reshard_height_width.py +++ b/tests/ttnn/sweep_tests/sweeps/reshard_height_width.py @@ -45,33 +45,7 @@ } -def skip( - *, - layout, - height, - width, - input_num_cores_x, - input_num_cores_y, - input_shard_strategy, - output_num_cores_x, - output_num_cores_y, - output_shard_strategy, - **_, -) -> Tuple[bool, Optional[str]]: - input_num_cores = input_num_cores_x * input_num_cores_y - if layout == ttnn.TILE_LAYOUT: - if height % (input_num_cores) != 0: - return True, "Input Shard not divisible" - if width % (input_num_cores) != 0: - return True, "Input Shard not divisible" - - output_num_cores = output_num_cores_x * output_num_cores_y - if layout == ttnn.TILE_LAYOUT: - if height % (output_num_cores) != 0: - return True, "Output Shard not divisible" - if width % (output_num_cores) != 0: - return True, "Output Shard not divisible" - +def skip(**_) -> Tuple[bool, Optional[str]]: return False, None