Skip to content

Commit

Permalink
#11998: Remove skip statement for bias shape mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
punithsekar committed Sep 17, 2024
1 parent 4ea11cf commit 45b5c26
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion models/experimental/yolov4/demo/demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,6 @@ def do_detect(model, img, conf_thresh, nms_thresh, n_classes, device=None, class
@skip_for_grayskull()
@pytest.mark.parametrize("device_params", [{"l1_small_size": 16384}], indirect=True)
def test_yolov4_model(device, model_location_generator, reset_seeds, input_path):
pytest.skip("bias_shape.without_padding()[-1] == b_shape[-1] issue for conv")
model_path = model_location_generator("models", model_subdir="Yolo")
if model_path == "models":
pytest.skip(
Expand Down
1 change: 0 additions & 1 deletion tests/ttnn/integration_tests/yolov4/test_ttnn_head.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

@pytest.mark.parametrize("device_params", [{"l1_small_size": 16384}], indirect=True)
def test_head(device, reset_seeds, model_location_generator):
pytest.skip("bias_shape.without_padding()[-1] == b_shape[-1] issue for conv")
model_path = model_location_generator("models", model_subdir="Yolo")

if model_path == "models":
Expand Down
1 change: 0 additions & 1 deletion tests/ttnn/integration_tests/yolov4/test_ttnn_yolov4.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
@skip_for_grayskull()
@pytest.mark.parametrize("device_params", [{"l1_small_size": 16384}], indirect=True)
def test_yolov4(device, reset_seeds, model_location_generator):
pytest.skip("bias_shape.without_padding()[-1] == b_shape[-1] issue for conv")
model_path = model_location_generator("models", model_subdir="Yolo")

if model_path == "models":
Expand Down

0 comments on commit 45b5c26

Please sign in to comment.