Skip to content
This repository was archived by the owner on Aug 21, 2025. It is now read-only.

Commit a0b272a

Browse files
committed
Another fix
1 parent 2120b13 commit a0b272a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/test_ops.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,8 @@ def wrapped_fn(*args, **kwargs):
236236

237237
@ops(functorch_lagging_op_db + additional_op_db, allowed_dtypes=(torch.float,))
238238
@skipOps('TestOperators', 'test_jvp', set({
239-
xfail('nn.functional.dropout'), # randomness testing artifact; not actually a problem
240-
xfail('nn.functional.rrelu'), # randomness testing artifact; not actually a problem
239+
skip('nn.functional.dropout'), # randomness testing artifact; not actually a problem
240+
skip('nn.functional.rrelu'), # randomness testing artifact; not actually a problem
241241
242242
# See https://github.com/pytorch/pytorch/issues/69034
243243
# RuntimeError: expected scalar type double but found float
@@ -503,7 +503,8 @@ def test_vmapvjp(self, device, dtype, op):
503503
# The below tests (2) only.
504504
@ops(functorch_lagging_op_db, allowed_dtypes=(torch.float,))
505505
@skipOps('TestOperators', 'test_vmapjvp', {
506-
xfail('nn.functional.dropout'), # randomness
506+
skip('nn.functional.dropout'), # randomness
507+
skip('nn.functional.rrelu'), # randomness
507508
508509
# TODO: fails in core due to in-place batched nto non-batched
509510
# but fails here for a different reason

0 commit comments

Comments
 (0)