Skip to content

Commit

Permalink
#14351: enable single core fused op tests on BH (#14761)
Browse files Browse the repository at this point in the history
  • Loading branch information
bbradelTT authored Nov 5, 2024
1 parent e7e4517 commit 1f08933
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit 1f08933

Please sign in to comment.