Skip to content

Commit ad75487

Browse files
Chaluvadisyurkevi
Chaluvadi
authored andcommitted
utility functions for tests
1 parent f90ef61 commit ad75487

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

tests/utility_functions.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import pytest
2+
3+
import arrayfire_wrapper.lib as wrapper
4+
from arrayfire_wrapper.dtypes import Dtype, c64, f16, f64
5+
6+
7+
def check_type_supported(dtype: Dtype) -> None:
8+
"""Checks to see if the specified type is supported by the current system"""
9+
if dtype in [f64, c64] and not wrapper.get_dbl_support():
10+
pytest.skip("Device does not support double types")
11+
12+
if dtype == f16 and not wrapper.get_half_support():
13+
pytest.skip("Device does not support half types.")

0 commit comments

Comments
 (0)