Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dakinggg committed Nov 18, 2023
1 parent 0167cb0 commit b64166b
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 @@ -1250,11 +1250,11 @@ def test_forward_with_cache(attn_impl: str, pos_emb_config: dict,
)


@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 b64166b

Please sign in to comment.