Skip to content

Commit

Permalink
Fix for test for reduce ops
Browse files Browse the repository at this point in the history
  • Loading branch information
SarahByrneIntel committed Jun 25, 2024
1 parent 3c27988 commit 3455be9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/python/test_op.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def test_concatenation(batch, hidden_dim, tensors, axis):


@pytest.mark.parametrize("batch", [16, 128])
@pytest.mark.parametrize("hidden_dim", [256, 512])
@pytest.mark.parametrize("hidden_dim", [128, 256])
@pytest.mark.parametrize("axis", [0, 1, -1, -2, None])
@pytest.mark.parametrize(
"op", [torch.max, torch.mean, torch.min, torch.prod, torch.sum]
Expand Down

0 comments on commit 3455be9

Please sign in to comment.