9
9
10
10
from executorch .backends .arm .test import common
11
11
from executorch .backends .arm .test .tester .test_pipeline import (
12
- EthosU55PipelineBI ,
13
- EthosU85PipelineBI ,
14
- TosaPipelineBI ,
15
- TosaPipelineMI ,
12
+ EthosU55PipelineINT ,
13
+ EthosU85PipelineINT ,
14
+ TosaPipelineFP ,
15
+ TosaPipelineINT ,
16
16
)
17
17
18
18
input_t = Tuple [torch .Tensor ] # Input x
@@ -36,8 +36,8 @@ def forward(self, x):
36
36
37
37
38
38
@common .parametrize ("test_data" , test_data_suite )
39
- def test_asin_tosa_MI (test_data : Tuple ):
40
- pipeline = TosaPipelineMI [input_t ](
39
+ def test_asinh_tosa_FP (test_data : Tuple ):
40
+ pipeline = TosaPipelineFP [input_t ](
41
41
Asinh (),
42
42
(test_data (),),
43
43
aten_op ,
@@ -47,8 +47,8 @@ def test_asin_tosa_MI(test_data: Tuple):
47
47
48
48
49
49
@common .parametrize ("test_data" , test_data_suite )
50
- def test_asin_tosa_BI (test_data : Tuple ):
51
- pipeline = TosaPipelineBI [input_t ](
50
+ def test_asinh_tosa_INT (test_data : Tuple ):
51
+ pipeline = TosaPipelineINT [input_t ](
52
52
Asinh (),
53
53
(test_data (),),
54
54
aten_op = [],
@@ -59,8 +59,8 @@ def test_asin_tosa_BI(test_data: Tuple):
59
59
60
60
@common .parametrize ("test_data" , test_data_suite )
61
61
@common .XfailIfNoCorstone300
62
- def test_asin_u55_BI (test_data : Tuple ):
63
- pipeline = EthosU55PipelineBI [input_t ](
62
+ def test_asinh_u55_INT (test_data : Tuple ):
63
+ pipeline = EthosU55PipelineINT [input_t ](
64
64
Asinh (),
65
65
(test_data (),),
66
66
aten_ops = [],
@@ -70,8 +70,8 @@ def test_asin_u55_BI(test_data: Tuple):
70
70
71
71
@common .parametrize ("test_data" , test_data_suite )
72
72
@common .XfailIfNoCorstone320
73
- def test_asin_u85_BI (test_data : Tuple ):
74
- pipeline = EthosU85PipelineBI [input_t ](
73
+ def test_asinh_u85_INT (test_data : Tuple ):
74
+ pipeline = EthosU85PipelineINT [input_t ](
75
75
Asinh (),
76
76
(test_data (),),
77
77
aten_ops = [],
0 commit comments