@@ -2828,6 +2828,7 @@ def _check_functionalize_correctness(self, f, inpt):
2828
2828
self .assertEqual (inpt1 , inpt2 )
2829
2829
self .assertEqual (inpt1 , inpt3 )
2830
2830
2831
+ @unittest .skip ("RuntimeError: Tensors of type FunctionalTensorWrapper do not have strides" )
2831
2832
def test_simple_view (self , device ):
2832
2833
2833
2834
def f (x : torch .Tensor ) -> torch .Tensor :
@@ -2837,6 +2838,7 @@ def f(x: torch.Tensor) -> torch.Tensor:
2837
2838
return x
2838
2839
self ._check_functionalize_correctness (f , torch .zeros (4 , 2 , device = device ))
2839
2840
2841
+ @unittest .skip ("RuntimeError: Tensors of type FunctionalTensorWrapper do not have strides" )
2840
2842
def test_multioutput_view (self , device ):
2841
2843
2842
2844
def f (x : torch .Tensor ) -> torch .Tensor :
@@ -2847,6 +2849,7 @@ def f(x: torch.Tensor) -> torch.Tensor:
2847
2849
return x
2848
2850
self ._check_functionalize_correctness (f , torch .zeros (4 , 2 , device = device ))
2849
2851
2852
+ @unittest .skip ("RuntimeError: Tensors of type FunctionalTensorWrapper do not have strides" )
2850
2853
def test_inplace_view (self , device ):
2851
2854
2852
2855
def f (x : torch .Tensor ) -> torch .Tensor :
@@ -2872,6 +2875,7 @@ def f(x, y, z) -> torch.Tensor:
2872
2875
out_actual = functionalize (f )(x , y , z )
2873
2876
self .assertEqual (out_expected , out_actual )
2874
2877
2878
+ @unittest .skip ("RuntimeError: Tensors of type FunctionalTensorWrapper do not have strides" )
2875
2879
def test_multioutput_inplace_slice_view (self , device ):
2876
2880
2877
2881
def f (x : torch .Tensor ) -> torch .Tensor :
0 commit comments