Skip to content

Commit

Permalink
Cannot fetch model from github action
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandropalla committed Feb 28, 2024
1 parent 1bee658 commit d00c83d
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 @@ -110,6 +110,9 @@ def get_model(model_name, hidden_size, intermediate_size, bias):
@pytest.mark.parametrize("bias", [True, False])
def test_fusion(model_name, hidden_size, intermediate_size, batch, bias):

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

model = get_model(model_name, hidden_size, intermediate_size, bias)
example_input = torch.rand((batch, hidden_size)) - 0.5

Expand Down

0 comments on commit d00c83d

Please sign in to comment.