Skip to content

Commit

Permalink
Merge branch 'main' into crpa/lookaside_autograd-function-apply
Browse files Browse the repository at this point in the history
  • Loading branch information
t-vi authored Oct 3, 2024
2 parents a0caaea + 67d8df6 commit b4647ed
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions thunder/tests/test_grad.py
Original file line number Diff line number Diff line change
Expand Up @@ -1460,6 +1460,9 @@ def test_populate_grads_mlp(executor, device, dtype):

@instantiate(dtypes=(thunder.float32,))
def test_populate_grads_csa(executor, device, dtype):
if version_between(torch.__version__, min_ver="2.6.0a0", max_ver="2.6.0"):
pytest.skip("https://github.com/Lightning-AI/lightning-thunder/issues/1254")

from thunder.benchmarks import NanoGPTCSABenchmark, NanoGPTConfig

# NOTE Currently setting dropout to zero for reproducibility, other settings taken from gpt2 config
Expand Down Expand Up @@ -1487,6 +1490,9 @@ def test_populate_grads_csa(executor, device, dtype):

@instantiate(dtypes=(thunder.float32,))
def test_populate_grads_block(executor, device, dtype):
if version_between(torch.__version__, min_ver="2.6.0a0", max_ver="2.6.0"):
pytest.skip("https://github.com/Lightning-AI/lightning-thunder/issues/1254")

from thunder.benchmarks import NanoGPTBlockBenchmark, NanoGPTConfig

# NOTE Currently setting dropout to zero for reproducibility, other settings taken from gpt2 config
Expand Down

0 comments on commit b4647ed

Please sign in to comment.