diff --git a/thunder/tests/test_apex_executor.py b/thunder/tests/test_apex_executor.py index 4c245bd48a..de8a7e42ad 100644 --- a/thunder/tests/test_apex_executor.py +++ b/thunder/tests/test_apex_executor.py @@ -84,6 +84,7 @@ def fn(*args, **kwargs): raise ValueError("No supported inputs were generated by the OpInfo") +@pytest.mark.xfail(reason="this was not tested yet, but it should be fixed") # todo @pytest.mark.parametrize( "dtype", [torch.float16, torch.bfloat16, torch.float32], ids=("float16", "bfloat16", "float32") ) @@ -129,6 +130,7 @@ def test(logits, labels): assert not is_any_bw +@pytest.mark.xfail(reason="this was not tested yet, but it should be fixed") # todo @pytest.mark.parametrize( "dtype", [torch.float16, torch.bfloat16, torch.float32], ids=("float16", "bfloat16", "float32") )