From 9d6ee76bcca836f936924933a23f2ca677307f0c Mon Sep 17 00:00:00 2001 From: Richard Zou Date: Fri, 25 Mar 2022 13:38:37 -0700 Subject: [PATCH] Fix CI, for real --- test/test_ops.py | 1 + test/test_vmap.py | 1 + 2 files changed, 2 insertions(+) diff --git a/test/test_ops.py b/test/test_ops.py index 9aa719d86..b59b34ac4 100644 --- a/test/test_ops.py +++ b/test/test_ops.py @@ -971,6 +971,7 @@ def test(): xfail('double', 'channels_last'), xfail('masked_select'), skip('nn.functional.fractional_max_pool3d'), # generator works on cpu, fails on cuda + xfail('__rpow__'), # https://github.com/pytorch/functorch/issues/617 xfail('nn.functional.glu'), xfail('as_strided'), skip('nn.functional.fractional_max_pool2d'), # generator works on cpu, fails on cuda diff --git a/test/test_vmap.py b/test/test_vmap.py index 967bcda70..71b69680d 100644 --- a/test/test_vmap.py +++ b/test/test_vmap.py @@ -3105,6 +3105,7 @@ class TestVmapOperatorsOpInfo(TestCase): xfail('nonzero'), xfail('nn.functional.glu'), xfail('nn.functional.rrelu'), # random? + xfail('__rpow__'), # https://github.com/pytorch/functorch/issues/617 } @ops(functorch_lagging_op_db + additional_op_db, allowed_dtypes=(torch.float,))