File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
import arrayfire_wrapper .lib .interface_functions .opencl as cl
2
2
3
3
4
- def test_get_context_type ():
4
+ def test_get_context_type () -> None :
5
5
assert isinstance (cl .get_context (), int )
6
6
7
7
8
- def test_get_queue_type ():
8
+ def test_get_queue_type () -> None :
9
9
assert isinstance (cl .get_queue (), int )
10
10
11
11
12
- def test_get_device_id ():
12
+ def test_get_device_id () -> None :
13
13
assert isinstance (cl .get_device_id (), int )
14
14
15
15
16
- def test_set_device_id ():
16
+ def test_set_device_id () -> None :
17
17
cl .set_device_id (0 )
18
18
assert cl .get_device_id () == 0
19
19
20
20
21
- def test_get_device_type ():
21
+ def test_get_device_type () -> None :
22
22
assert cl .get_device_type () == cl .DeviceType .GPU # change according to device
23
23
24
24
25
- def test_get_platform ():
25
+ def test_get_platform () -> None :
26
26
assert cl .get_platform () == cl .PlatformType .INTEL # change according to platform
You can’t perform that action at this time.
0 commit comments