Skip to content

Commit 5850b9a

Browse files
Chaluvadisyurkevi
Chaluvadi
authored andcommitted
added additional utility functions for easier access to types
1 parent ad75487 commit 5850b9a

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

tests/utility_functions.py

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import pytest
22

33
import arrayfire_wrapper.lib as wrapper
4-
from arrayfire_wrapper.dtypes import Dtype, c64, f16, f64
4+
from arrayfire_wrapper.dtypes import Dtype, c32, c64, f16, f32, f64, s16, s32, s64, u8, u16, u32, u64
55

66

77
def check_type_supported(dtype: Dtype) -> None:
@@ -11,3 +11,18 @@ def check_type_supported(dtype: Dtype) -> None:
1111

1212
if dtype == f16 and not wrapper.get_half_support():
1313
pytest.skip("Device does not support half types.")
14+
15+
16+
def get_complex_types() -> list:
17+
"""Returns all complex types"""
18+
return [c32, c64]
19+
20+
21+
def get_real_types() -> list:
22+
"""Returns all real types"""
23+
return [s16, s32, s64, u8, u16, u32, u64, f16, f32, f64]
24+
25+
26+
def get_all_types() -> list:
27+
"""Returns all types"""
28+
return [s16, s32, s64, u8, u16, u32, u64, f16, f32, f64, c32, c64]

0 commit comments

Comments
 (0)