Skip to content

Commit 77e2535

Browse files
author
samdow
committed
remove 'fill_' op info
1 parent db12967 commit 77e2535

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

test/test_ops.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,6 @@ def vjp_of_vjp(*args_and_cotangents):
575575

576576
vmapvjp_fail = vjp_fail.union({
577577
# The following are not bugs and are expected behavior
578-
xfail('fill_'), # Not possible, wontfix
579578
xfail('masked_select'), # Not possible due to dynamic shapes
580579
skip('bernoulli'), # randomness
581580
skip('normal', ''), # randomness
@@ -665,7 +664,6 @@ def test_vmapvjp(self, device, dtype, op):
665664
666665
# Try to in-place batched tensor into non-batched tensor
667666
xfail('matrix_exp'),
668-
xfail('fill_'),
669667
xfail('block_diag'), # TODO: We expect this to fail in core, but it doesn't
670668
671669
# Apprently these support forward AD, but we get "Trying to use forward AD..."
@@ -763,7 +761,6 @@ def test_vmapjvp(self, device, dtype, op):
763761
xfail('quantile'),
764762
xfail('var_mean'),
765763
xfail('as_strided'),
766-
xfail('fill_'),
767764
xfail('nn.functional.gaussian_nll_loss'),
768765
xfail('std_mean'),
769766
xfail('block_diag'),
@@ -917,7 +914,6 @@ def test():
917914
xfail('fmin'),
918915
xfail('fmax'),
919916
xfail('special.log_ndtr'),
920-
xfail('fill_'),
921917
xfail('index_copy'),
922918
xfail('index_fill'),
923919
xfail('linalg.cholesky'),
@@ -1040,7 +1036,6 @@ def test():
10401036
# All of the following are bugs and need to be fixed
10411037
xfail('__getitem__', ''),
10421038
xfail('clamp', ''),
1043-
xfail('fill_'),
10441039
xfail('index_put', ''),
10451040
xfail('matrix_exp'),
10461041
xfail('view_as_complex'),

test/test_vmap.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3081,7 +3081,6 @@ def vjp(v):
30813081
class TestVmapOperatorsOpInfo(TestCase):
30823082
vmap_fail = {
30833083
# These are things that we either cannot fix or are not actually problems
3084-
xfail('fill_'),
30853084
xfail('resize_'),
30863085
xfail('resize_as_'),
30873086
xfail('to_sparse'),
@@ -3173,7 +3172,6 @@ def test_vmap_exhaustive(self, device, dtype, op):
31733172
xfail('complex'),
31743173
xfail('copysign'),
31753174
xfail('eig'),
3176-
xfail('fill_'),
31773175
xfail('histogram'),
31783176
xfail('index_fill'),
31793177
xfail('nansum'),

0 commit comments

Comments
 (0)