Skip to content

Commit

Permalink
reenable more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
t-vi committed Jan 10, 2025
1 parent 342b011 commit da14771
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
8 changes: 0 additions & 8 deletions thunder/tests/test_networks.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,10 +367,6 @@ def test_quantization():
assert_close(v, sd2[k])


@pytest.mark.skipif(
version_between(torch.__version__, min_ver="2.6.0dev0", max_ver="2.6.0a99"),
reason="https://github.com/Lightning-AI/lightning-thunder/issues/1471",
)
@thunder.tests.framework.requiresCUDA
def test_thunderfx_mistral_nemo_small():
"""
Expand Down Expand Up @@ -422,10 +418,6 @@ def test_thunderfx_mistral_nemo_small():


# disabled "Qwen/Qwen2.5-7B-Instruct" see https://github.com/NVIDIA/Fuser/issues/3682
@pytest.mark.skipif(
version_between(torch.__version__, min_ver="2.6.0dev0", max_ver="2.6.0a99"),
reason="https://github.com/Lightning-AI/lightning-thunder/issues/1471",
)
@thunder.tests.framework.requiresCUDA
@pytest.mark.parametrize("model_id", ["microsoft/Phi-3-mini-128k-instruct"])
def test_hf_for_nemo(model_id):
Expand Down
4 changes: 0 additions & 4 deletions thunder/tests/test_recipes.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ def test_recipe_basic_bert():
assert_close(actual, expected)


@pytest.mark.skipif(
version_between(torch.__version__, min_ver="2.6.0dev0", max_ver="2.6.0a99"),
reason="https://github.com/Lightning-AI/lightning-thunder/issues/1471",
)
def test_recipe_basic_bert_dynamo():
bert = transformers.BertForSequenceClassification(transformers.BertConfig())
del bert.bert.encoder.layer[1:]
Expand Down

0 comments on commit da14771

Please sign in to comment.