diff --git a/tests/tt_eager/python_api_testing/unit_testing/misc/test_single_core_fused_ops.py b/tests/tt_eager/python_api_testing/unit_testing/misc/test_single_core_fused_ops.py index 2a467ae3476..b108201f2cb 100644 --- a/tests/tt_eager/python_api_testing/unit_testing/misc/test_single_core_fused_ops.py +++ b/tests/tt_eager/python_api_testing/unit_testing/misc/test_single_core_fused_ops.py @@ -12,13 +12,11 @@ is_close, ) -from models.utility_functions import comp_pcc, pad_by_zero, skip_for_blackhole +from models.utility_functions import comp_pcc, pad_by_zero shapes = [[1, 1, 32, 32], [1, 1, 32, 128], [1, 2, 128, 128]] -# still have to skip b/c of very low PCC in WH B0 -@skip_for_blackhole("Mismatching on BH, see #12349") @pytest.mark.parametrize("shape", shapes) def test_softmax(shape, device): torch.manual_seed(1234) @@ -35,7 +33,6 @@ def test_softmax(shape, device): assert passing -@skip_for_blackhole("Mismatching on BH, see #12349") @pytest.mark.parametrize("shape", shapes) def test_layernorm(shape, device): torch.manual_seed(1234)