Skip to content

Commit 862163d

Browse files
authored
add ci skips (#2547)
1 parent 70c0421 commit 862163d

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.lightning/workflows/all-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ trigger:
44
pull_request:
55
branches: ["main"]
66

7-
timeout: "40" # minutes
7+
timeout: "60" # minutes
88
parametrize:
99
matrix:
1010
image:

thunder/tests/test_dynamo.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1294,6 +1294,7 @@ def foo(x):
12941294
run_script(file, cmd)
12951295

12961296

1297+
@pytest.mark.skip(reason="https://github.com/Lightning-AI/lightning-thunder/issues/2546")
12971298
@requiresCUDA
12981299
def test_WallTime_KernelTime():
12991300
from nvfuser import FusionDefinition, DataType
@@ -1404,6 +1405,7 @@ def foo(x):
14041405
run_script(file, cmd)
14051406

14061407

1408+
@pytest.mark.skip(reason="https://github.com/Lightning-AI/lightning-thunder/issues/2546")
14071409
@requiresCUDA
14081410
@given(file_indices=st.lists(st.integers(min_value=0, max_value=4), min_size=1, max_size=1, unique=True))
14091411
@settings(max_examples=2, deadline=None, suppress_health_check=[HealthCheck.function_scoped_fixture])

thunder/tests/test_grad.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -670,6 +670,10 @@ def test_vjp_correctness_nll_loss_manual(op, device, dtype, executor, comp):
670670

671671
@ops((get_opinfo("cross_entropy"),), supported_dtypes=(dtypes.float64,))
672672
def test_vjp_correctness_cross_entropy_manual(op, device, dtype, executor, comp):
673+
from thunder.tests.framework import nvFuserTestExecutor
674+
675+
if type(executor) is nvFuserTestExecutor:
676+
pytest.skip("https://github.com/Lightning-AI/lightning-thunder/issues/2535")
673677
for sample in op.sample_inputs(device, dtype, requires_grad=True, no_rhs_numbers=True):
674678
# Traced backwards function does not follow PyTorch cross_entropy behavior with zero element tensors
675679
if sample.args[0].numel() == 0:

0 commit comments

Comments
 (0)