1+ import unittest
2+
13import torch
24import torch .nn as nn
35from parameterized import parameterized
@@ -16,6 +18,7 @@ class TestProdConverter(DispatchTestCase):
1618 ((6 , 7 , 5 , 4 , 5 ),),
1719 ]
1820 )
21+ @unittest .skip ("Skipping prod dim int default test for now" )
1922 def test_prod_dim_int_default (self , input_shape ):
2023 class Prod (nn .Module ):
2124 def forward (self , x ):
@@ -37,6 +40,7 @@ def forward(self, x):
3740 ((1 , 5 , 2 , 3 ), - 2 , True ),
3841 ]
3942 )
43+ @unittest .skip ("Skipping prod dim int test for now" )
4044 def test_prod_dim_int (self , input_shape , dim , keep_dims ):
4145 class Prod (nn .Module ):
4246 def forward (self , x ):
@@ -56,6 +60,7 @@ def forward(self, x):
5660 ((6 , 7 , 5 , 4 , 5 ), 4 , False , torch .int32 , - 5 , 5 ),
5761 ]
5862 )
63+ @unittest .skip ("Skipping prod dim int int test for now" )
5964 def test_prod_dim_int_int (self , input_shape , dim , keep_dims , dtype , low , high ):
6065 class Prod (nn .Module ):
6166 def forward (self , x ):
@@ -77,6 +82,7 @@ def forward(self, x):
7782 (- 1 , (2 , 2 , 4 ), (2 , 3 , 4 ), (3 , 4 , 5 )),
7883 ]
7984 )
85+ @unittest .skip ("Skipping prod dynamic shape test for now" )
8086 def test_prod_dynamic_shape (self , dim , min_shape , opt_shape , max_shape ):
8187 class Prod (nn .Module ):
8288 def forward (self , x ):
0 commit comments