Skip to content

Commit

Permalink
Fix skip test
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbenayoun committed Mar 20, 2024
1 parent 7be5dde commit 901b439
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions tests/distributed/test_model_parallelization.py
Original file line number Diff line number Diff line change
Expand Up @@ -526,9 +526,6 @@ def test_llama_v2_gqa(
if num_kv_heads < tp_size and (not from_pretrained):
pytest.skip("This case will not work here because we set the seed. We can skip.")

if not from_pretrained and not lazy_load and not sequence_parallel_enabled:
pytest.skip("It seems to be a compiler bug, to investigate")

model_name_or_path = Path(tmpdir) / "llama_v2_gqa"

# Since we are creating the model from config, we actually first create a model locally from config and then
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cache_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ def test_neuron_hash_is_private(self):

@is_trainium_test
@is_staging_test
@pytest.skip("This is not needed anymore and will be removed.")
@pytest.mark.skip("This is not needed anymore and will be removed.")
class CachedModelOnTheHubTestCase(StagingTestMixin, TestCase):
def test_push_to_hub_fails_with_private_model_and_public_repo(self):
with TemporaryDirectory() as tmpdirname:
Expand Down

0 comments on commit 901b439

Please sign in to comment.