Skip to content

Commit

Permalink
another
Browse files Browse the repository at this point in the history
  • Loading branch information
dakinggg committed Nov 18, 2023
1 parent 21031b5 commit 1ba798e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -1575,11 +1575,11 @@ def test_alibi_vs_hf():
torch.testing.assert_close(alibi_bias_hf, alibi_bias_m)


@pytest.mark.parametrize('attn_impl,device', [
@pytest.mark.parametrize('attn_impl', [
'torch',
pytest.param('flash', 'gpu', marks=pytest.mark.gpu),
pytest.param('triton', 'gpu', marks=pytest.mark.gpu),
pytest.param('torch', 'gpu', marks=pytest.mark.gpu),
pytest.param('flash', marks=pytest.mark.gpu),
pytest.param('triton', marks=pytest.mark.gpu),
pytest.param('torch', marks=pytest.mark.gpu),
])
@pytest.mark.parametrize('pos_emb_config', [{
'alibi': False,
Expand Down

0 comments on commit 1ba798e

Please sign in to comment.