15
15
# flake8: noqa: E203
16
16
17
17
18
- def test_numpy_to_af_array_type ():
18
+ def test_numpy_to_af_array_type () -> None :
19
19
arr = np .array ([1 , 2 , 3 , 4 ])
20
20
21
21
af_array = numpy_to_af_array (arr )
22
22
23
23
assert isinstance (af_array , AFArray )
24
24
25
25
26
- def test_af_to_numpy_array_type ():
26
+ def test_af_to_numpy_array_type () -> None :
27
27
arr = wrapper .constant (2 , (5 , 5 ), int16 )
28
28
29
29
np_arr = af_to_numpy_array (arr )
30
30
31
31
assert isinstance (np_arr , np .ndarray )
32
32
33
33
34
- def test_pyopencl_to_af_array_type ():
34
+ def test_pyopencl_to_af_array_type () -> None :
35
35
ctx = cl .create_some_context ()
36
36
queue = cl .CommandQueue (ctx )
37
37
@@ -44,22 +44,22 @@ def test_pyopencl_to_af_array_type():
44
44
assert isinstance (af_array , AFArray )
45
45
46
46
47
- def test_numpy_to_af_array_shape ():
47
+ def test_numpy_to_af_array_shape () -> None :
48
48
np_arr = np .array ([1 , 2 , 3 , 4 ])
49
49
50
50
af_arr = numpy_to_af_array (np_arr )
51
51
52
52
assert get_dims (af_arr )[0 : get_numdims (af_arr )] == np_arr .shape [0 : get_numdims (af_arr )]
53
53
54
54
55
- def test_af_to_numpy_array_shape ():
55
+ def test_af_to_numpy_array_shape () -> None :
56
56
af_arr = wrapper .constant (2 , (5 , 5 ), int16 )
57
57
58
58
np_arr = af_to_numpy_array (af_arr )
59
59
assert np_arr .shape [0 : get_numdims (af_arr )] == get_dims (af_arr )[0 : get_numdims (af_arr )]
60
60
61
61
62
- def test_pyopencl_to_af_array_shape ():
62
+ def test_pyopencl_to_af_array_shape () -> None :
63
63
ctx = cl .create_some_context ()
64
64
queue = cl .CommandQueue (ctx )
65
65
0 commit comments