File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 26
26
DeQuantizedPerTensorConfig ,
27
27
DivConfig ,
28
28
# EluConfig,
29
- ExpConfig ,
29
+ # ExpConfig, # Bug in XNNPACK with exp op
30
30
FloorConfig ,
31
31
GeluConfig ,
32
32
HardswishConfig ,
81
81
ClampConfig ,
82
82
DivConfig ,
83
83
# EluConfig, # Waiting for PyTorch Pin Update
84
- ExpConfig ,
84
+ # ExpConfig, # Bug in XNNPACK with exp op
85
85
FloorConfig ,
86
86
GeluConfig ,
87
87
HardtanhConfig ,
Original file line number Diff line number Diff line change 59
59
exir_ops .edge .aten .sigmoid .default ,
60
60
exir_ops .edge .aten ._softmax .default ,
61
61
exir_ops .edge .aten .cat .default ,
62
- exir_ops .edge .aten .exp .default ,
62
+ # exir_ops.edge.aten.exp.default, # Bug in XNNPACK with exp op
63
63
exir_ops .edge .aten .elu .default ,
64
64
exir_ops .edge .aten .avg_pool2d .default ,
65
65
exir_ops .edge .aten .leaky_relu .default ,
Original file line number Diff line number Diff line change @@ -34,10 +34,12 @@ def run_exp_test(self, inputs):
34
34
.run_method_and_compare_outputs ()
35
35
)
36
36
37
+ @unittest .skip ("D76283309, bug to fix" )
37
38
def test_fp16_exp (self ):
38
39
inputs = (torch .randn (20 ).to (torch .float16 ),)
39
40
self .run_exp_test (inputs )
40
41
42
+ @unittest .skip ("D76283309, bug to fix" )
41
43
def test_fp32_exp (self ):
42
44
inputs = (torch .randn (20 ),)
43
45
self .run_exp_test (inputs )
You can’t perform that action at this time.
0 commit comments