Skip to content

Commit

Permalink
Remove gemma test
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandropalla committed Feb 28, 2024
1 parent 3f47402 commit ccbf89c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/python/test_optimizations.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@ def test_fusion(model_name, hidden_size, intermediate_size, batch, bias):
@pytest.mark.parametrize("bias", [True, False])
def test_model(model_name, hidden_size, intermediate_size, sequence_length, bias):

if model_name == "GemmaMLP":
pytest.skip("Cannot fetch model from github action")

with torch.no_grad():
model = get_model(model_name, hidden_size, intermediate_size, bias).eval()
example_input = torch.randint(
Expand Down

0 comments on commit ccbf89c

Please sign in to comment.