4
4
5
5
import arrayfire_wrapper .dtypes as dtype
6
6
import arrayfire_wrapper .lib as wrapper
7
-
8
- from . import utility_functions as util
7
+ from tests .utility_functions import check_type_supported , get_all_types , get_float_types
9
8
10
9
11
10
@pytest .mark .parametrize (
18
17
(random .randint (1 , 10 ), random .randint (1 , 10 ), random .randint (1 , 10 ), random .randint (1 , 10 )),
19
18
],
20
19
)
21
- @pytest .mark .parametrize ("dtype_name" , util . get_all_types ())
20
+ @pytest .mark .parametrize ("dtype_name" , get_all_types ())
22
21
def test_asin_shape_dtypes (shape : tuple , dtype_name : dtype .Dtype ) -> None :
23
22
"""Test inverse sine operation across all supported data types."""
24
- util . check_type_supported (dtype_name )
23
+ check_type_supported (dtype_name )
25
24
values = wrapper .randu (shape , dtype_name )
26
25
result = wrapper .asin (values )
27
26
assert wrapper .get_dims (result )[0 : len (shape )] == shape , f"failed for shape: { shape } " # noqa
@@ -37,10 +36,10 @@ def test_asin_shape_dtypes(shape: tuple, dtype_name: dtype.Dtype) -> None:
37
36
(random .randint (1 , 10 ), random .randint (1 , 10 ), random .randint (1 , 10 ), random .randint (1 , 10 )),
38
37
],
39
38
)
40
- @pytest .mark .parametrize ("dtype_name" , util . get_all_types ())
39
+ @pytest .mark .parametrize ("dtype_name" , get_all_types ())
41
40
def test_acos_shape_dtypes (shape : tuple , dtype_name : dtype .Dtype ) -> None :
42
41
"""Test inverse cosine operation across all supported data types."""
43
- util . check_type_supported (dtype_name )
42
+ check_type_supported (dtype_name )
44
43
values = wrapper .randu (shape , dtype_name )
45
44
result = wrapper .acos (values )
46
45
assert wrapper .get_dims (result )[0 : len (shape )] == shape , f"failed for shape: { shape } " # noqa
@@ -56,10 +55,10 @@ def test_acos_shape_dtypes(shape: tuple, dtype_name: dtype.Dtype) -> None:
56
55
(random .randint (1 , 10 ), random .randint (1 , 10 ), random .randint (1 , 10 ), random .randint (1 , 10 )),
57
56
],
58
57
)
59
- @pytest .mark .parametrize ("dtype_name" , util . get_all_types ())
58
+ @pytest .mark .parametrize ("dtype_name" , get_all_types ())
60
59
def test_atan_shape_dtypes (shape : tuple , dtype_name : dtype .Dtype ) -> None :
61
60
"""Test inverse tan operation across all supported data types."""
62
- util . check_type_supported (dtype_name )
61
+ check_type_supported (dtype_name )
63
62
values = wrapper .randu (shape , dtype_name )
64
63
result = wrapper .atan (values )
65
64
assert wrapper .get_dims (result )[0 : len (shape )] == shape , f"failed for shape: { shape } " # noqa
@@ -75,10 +74,10 @@ def test_atan_shape_dtypes(shape: tuple, dtype_name: dtype.Dtype) -> None:
75
74
(random .randint (1 , 10 ), random .randint (1 , 10 ), random .randint (1 , 10 ), random .randint (1 , 10 )),
76
75
],
77
76
)
78
- @pytest .mark .parametrize ("dtype_name" , util . get_float_types ())
77
+ @pytest .mark .parametrize ("dtype_name" , get_float_types ())
79
78
def test_atan2_shape_dtypes (shape : tuple , dtype_name : dtype .Dtype ) -> None :
80
79
"""Test inverse tan operation across all supported data types."""
81
- util . check_type_supported (dtype_name )
80
+ check_type_supported (dtype_name )
82
81
if dtype_name == dtype .f16 :
83
82
pytest .skip ()
84
83
lhs = wrapper .randu (shape , dtype_name )
@@ -110,10 +109,10 @@ def test_atan2_unsupported_dtypes(invdtypes: dtype.Dtype) -> None:
110
109
(random .randint (1 , 10 ), random .randint (1 , 10 ), random .randint (1 , 10 ), random .randint (1 , 10 )),
111
110
],
112
111
)
113
- @pytest .mark .parametrize ("dtype_name" , util . get_all_types ())
112
+ @pytest .mark .parametrize ("dtype_name" , get_all_types ())
114
113
def test_cos_shape_dtypes (shape : tuple , dtype_name : dtype .Dtype ) -> None :
115
114
"""Test cosine operation across all supported data types."""
116
- util . check_type_supported (dtype_name )
115
+ check_type_supported (dtype_name )
117
116
values = wrapper .randu (shape , dtype_name )
118
117
result = wrapper .cos (values )
119
118
assert wrapper .get_dims (result )[0 : len (shape )] == shape , f"failed for shape: { shape } " # noqa
@@ -129,10 +128,10 @@ def test_cos_shape_dtypes(shape: tuple, dtype_name: dtype.Dtype) -> None:
129
128
(random .randint (1 , 10 ), random .randint (1 , 10 ), random .randint (1 , 10 ), random .randint (1 , 10 )),
130
129
],
131
130
)
132
- @pytest .mark .parametrize ("dtype_name" , util . get_all_types ())
131
+ @pytest .mark .parametrize ("dtype_name" , get_all_types ())
133
132
def test_sin_shape_dtypes (shape : tuple , dtype_name : dtype .Dtype ) -> None :
134
133
"""Test sin operation across all supported data types."""
135
- util . check_type_supported (dtype_name )
134
+ check_type_supported (dtype_name )
136
135
values = wrapper .randu (shape , dtype_name )
137
136
result = wrapper .sin (values )
138
137
assert wrapper .get_dims (result )[0 : len (shape )] == shape , f"failed for shape: { shape } " # noqa
@@ -148,10 +147,10 @@ def test_sin_shape_dtypes(shape: tuple, dtype_name: dtype.Dtype) -> None:
148
147
(random .randint (1 , 10 ), random .randint (1 , 10 ), random .randint (1 , 10 ), random .randint (1 , 10 )),
149
148
],
150
149
)
151
- @pytest .mark .parametrize ("dtype_name" , util . get_all_types ())
150
+ @pytest .mark .parametrize ("dtype_name" , get_all_types ())
152
151
def test_tan_shape_dtypes (shape : tuple , dtype_name : dtype .Dtype ) -> None :
153
152
"""Test tan operation across all supported data types."""
154
- util . check_type_supported (dtype_name )
153
+ check_type_supported (dtype_name )
155
154
values = wrapper .randu (shape , dtype_name )
156
155
result = wrapper .tan (values )
157
156
assert wrapper .get_dims (result )[0 : len (shape )] == shape , f"failed for shape: { shape } " # noqa
0 commit comments