Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bitshift and Complexity Testing #31

Merged
merged 7 commits into from
Apr 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
198 changes: 198 additions & 0 deletions tests/test_bitshift.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,198 @@
import pytest

import arrayfire_wrapper.dtypes as dtype
import arrayfire_wrapper.lib as wrapper
from arrayfire_wrapper.lib.create_and_modify_array.helper_functions import array_to_string
from tests.utility_functions import check_type_supported, get_real_types


@pytest.mark.parametrize("dtype_name", get_real_types())
def test_bitshiftl_dtypes(dtype_name: dtype.Dtype) -> None:
"""Test bit shift operation across all supported data types."""
check_type_supported(dtype_name)
if dtype_name == dtype.f16 or dtype_name == dtype.f32:
pytest.skip()
shape = (5, 5)
values = wrapper.randu(shape, dtype_name)
bits_to_shift = wrapper.constant(1, shape, dtype_name)

result = wrapper.bitshiftl(values, bits_to_shift)

assert dtype.c_api_value_to_dtype(wrapper.get_type(result)) == dtype_name, f"Failed for dtype: {dtype_name}"


@pytest.mark.parametrize(
"invdtypes",
[
dtype.c32,
dtype.f64,
],
)
def test_bitshiftl_supported_dtypes(invdtypes: dtype.Dtype) -> None:
"""Test bitshift operations for unsupported integer data types."""
shape = (5, 5)
with pytest.raises(RuntimeError):
value = wrapper.randu(shape, invdtypes)
bits_to_shift = wrapper.constant(1, shape, invdtypes)

result = wrapper.bitshiftl(value, bits_to_shift)
assert dtype.c_api_value_to_dtype(wrapper.get_type(result)) == invdtypes, f"Failed for dtype: {invdtypes}"


@pytest.mark.parametrize("input_size", [8, 10, 12])
def test_bitshiftl_varying_input_size(input_size: int) -> None:
"""Test bitshift left operation with varying input sizes"""
shape = (input_size, input_size)
value = wrapper.randu(shape, dtype.int16)
shift_amount = wrapper.constant(1, shape, dtype.int16) # Fixed shift amount for simplicity

result = wrapper.bitshiftl(value, shift_amount)

assert (wrapper.get_dims(result)[0], wrapper.get_dims(result)[1]) == shape


@pytest.mark.parametrize(
"shape",
[
(10,),
(5, 5),
(2, 3, 4),
],
)
def test_bitshiftl_varying_shapes(shape: tuple) -> None:
"""Test left bit shifting with arrays of varying shapes."""
values = wrapper.randu(shape, dtype.int16)
bits_to_shift = wrapper.constant(1, shape, dtype.int16)

result = wrapper.bitshiftl(values, bits_to_shift)

assert wrapper.get_dims(result)[0 : len(shape)] == shape # noqa


@pytest.mark.parametrize("shift_amount", [-1, 0, 2, 30])
def test_bitshift_left_varying_shift_amount(shift_amount: int) -> None:
"""Test bitshift left operation with varying shift amounts."""
shape = (5, 5)
value = wrapper.randu(shape, dtype.int16)
shift_amount_arr = wrapper.constant(shift_amount, shape, dtype.int16)

result = wrapper.bitshiftl(value, shift_amount_arr)

assert (wrapper.get_dims(result)[0], wrapper.get_dims(result)[1]) == shape


@pytest.mark.parametrize(
"shape_a, shape_b",
[
((1, 5), (5, 1)), # 2D with 2D inverse
((5, 5), (5, 1)), # 2D with 2D
((5, 5), (1, 1)), # 2D with 2D
((1, 1, 1), (5, 5, 5)), # 3D with 3D
],
)
def test_bitshiftl_different_shapes(shape_a: tuple, shape_b: tuple) -> None:
"""Test if left bit shifting handles arrays of different shapes"""
with pytest.raises(RuntimeError):
values = wrapper.randu(shape_a, dtype.int16)
bits_to_shift = wrapper.constant(1, shape_b, dtype.int16)
result = wrapper.bitshiftl(values, bits_to_shift)
print(array_to_string("", result, 3, False))
assert (
wrapper.get_dims(result)[0 : len(shape_a)] == shape_a # noqa
), f"Failed for shapes {shape_a} and {shape_b}"


@pytest.mark.parametrize("shift_amount", [-1, 0, 2, 30])
def test_bitshift_right_varying_shift_amount(shift_amount: int) -> None:
"""Test bitshift right operation with varying shift amounts."""
shape = (5, 5)
value = wrapper.randu(shape, dtype.int16)
shift_amount_arr = wrapper.constant(shift_amount, shape, dtype.int16)

result = wrapper.bitshiftr(value, shift_amount_arr)

assert (wrapper.get_dims(result)[0], wrapper.get_dims(result)[1]) == shape


@pytest.mark.parametrize("dtype_name", get_real_types())
def test_bitshiftr_dtypes(dtype_name: dtype.Dtype) -> None:
"""Test bit shift operation across all supported data types."""
check_type_supported(dtype_name)
if dtype_name == dtype.f16 or dtype_name == dtype.f32:
pytest.skip()
shape = (5, 5)
values = wrapper.randu(shape, dtype_name)
bits_to_shift = wrapper.constant(1, shape, dtype_name)

result = wrapper.bitshiftr(values, bits_to_shift)

assert dtype.c_api_value_to_dtype(wrapper.get_type(result)) == dtype_name, f"Failed for dtype: {dtype_name}"


@pytest.mark.parametrize(
"invdtypes",
[
dtype.c32,
dtype.f64,
],
)
def test_bitshiftr_supported_dtypes(invdtypes: dtype.Dtype) -> None:
"""Test bitshift operations for unsupported integer data types."""
shape = (5, 5)
with pytest.raises(RuntimeError):
value = wrapper.randu(shape, invdtypes)
shift_amount = wrapper.constant(1, shape, invdtypes)

result = wrapper.bitshiftr(value, shift_amount)
assert dtype.c_api_value_to_dtype(wrapper.get_type(result)) == invdtypes, f"Failed for dtype: {invdtypes}"


@pytest.mark.parametrize("input_size", [8, 10, 12])
def test_bitshift_right_varying_input_size(input_size: int) -> None:
"""Test bitshift right operation with varying input sizes"""
shape = (input_size, input_size)
value = wrapper.randu(shape, dtype.int16)
shift_amount = wrapper.constant(1, shape, dtype.int16) # Fixed shift amount for simplicity

result = wrapper.bitshiftr(value, shift_amount)

assert (wrapper.get_dims(result)[0], wrapper.get_dims(result)[1]) == shape


@pytest.mark.parametrize(
"shape",
[
(10,),
(5, 5),
(2, 3, 4),
],
)
def test_bitshiftr_varying_shapes(shape: tuple) -> None:
"""Test right bit shifting with arrays of varying shapes."""
values = wrapper.randu(shape, dtype.int16)
bits_to_shift = wrapper.constant(1, shape, dtype.int16)

result = wrapper.bitshiftr(values, bits_to_shift)

assert wrapper.get_dims(result)[0 : len(shape)] == shape # noqa


@pytest.mark.parametrize(
"shape_a, shape_b",
[
((1, 5), (5, 1)), # 2D with 2D inverse
((5, 5), (5, 1)), # 2D with 2D
((5, 5), (1, 1)), # 2D with 2D
((1, 1, 1), (5, 5, 5)), # 3D with 3D
],
)
def test_bitshiftr_different_shapes(shape_a: tuple, shape_b: tuple) -> None:
"""Test if right bit shifting handles arrays of different shapes"""
with pytest.raises(RuntimeError):
values = wrapper.randu(shape_a, dtype.int16)
bits_to_shift = wrapper.constant(1, shape_b, dtype.int16)
result = wrapper.bitshiftr(values, bits_to_shift)
print(array_to_string("", result, 3, False))
assert (
wrapper.get_dims(result)[0 : len(shape_a)] == shape_a # noqa
), f"Failed for shapes {shape_a} and {shape_b}"
135 changes: 135 additions & 0 deletions tests/test_complex.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
import random

import pytest

import arrayfire_wrapper.dtypes as dtype
import arrayfire_wrapper.lib as wrapper
from tests.utility_functions import check_type_supported, get_all_types, get_float_types, get_real_types


@pytest.mark.parametrize(
"shape",
[
(),
(random.randint(1, 10),),
(random.randint(1, 10), random.randint(1, 10)),
(random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)),
(random.randint(1, 10), random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)),
],
)
@pytest.mark.parametrize("dtype_name", get_float_types())
def test_complex_supported_dtypes(shape: tuple, dtype_name: dtype.Dtype) -> None:
"""Test complex operation across all supported data types."""
check_type_supported(dtype_name)
if dtype_name == dtype.f16:
pytest.skip()
tester = wrapper.randu(shape, dtype_name)
result = wrapper.cplx(tester)
assert wrapper.is_complex(result), f"Failed for dtype: {dtype_name}"


@pytest.mark.parametrize(
"invdtypes",
[
dtype.int32,
dtype.complex32,
],
)
def test_complex_unsupported_dtypes(invdtypes: dtype.Dtype) -> None:
"""Test complex operation for unsupported data types."""
with pytest.raises(RuntimeError):
shape = (5, 5)
out = wrapper.randu(shape, invdtypes)
wrapper.cplx(out)


@pytest.mark.parametrize(
"shape",
[
(),
(random.randint(1, 10),),
(random.randint(1, 10), random.randint(1, 10)),
(random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)),
(random.randint(1, 10), random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)),
],
)
@pytest.mark.parametrize("dtype_name", get_real_types())
def test_complex2_supported_dtypes(shape: tuple, dtype_name: dtype.Dtype) -> None:
"""Test complex2 operation across all supported data types."""
check_type_supported(dtype_name)
lhs = wrapper.randu(shape, dtype_name)
rhs = wrapper.randu(shape, dtype_name)
result = wrapper.cplx2(lhs, rhs)
assert wrapper.is_complex(result), f"Failed for dtype: {dtype_name}"


@pytest.mark.parametrize(
"invdtypes",
[
dtype.c32,
],
)
def test_complex2_unsupported_dtypes(invdtypes: dtype.Dtype) -> None:
"""Test complex2 operation for unsupported data types."""
with pytest.raises(RuntimeError):
shape = (5, 5)
lhs = wrapper.randu(shape, invdtypes)
rhs = wrapper.randu(shape, invdtypes)
wrapper.cplx2(lhs, rhs)


@pytest.mark.parametrize(
"shape",
[
(),
(random.randint(1, 10),),
(random.randint(1, 10), random.randint(1, 10)),
(random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)),
(random.randint(1, 10), random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)),
],
)
@pytest.mark.parametrize("dtypes", get_all_types())
def test_conj_supported_dtypes(shape: tuple, dtypes: dtype.Dtype) -> None:
"""Test conjugate operation for supported data types."""
check_type_supported(dtypes)
arr = wrapper.constant(7, shape, dtypes)
result = wrapper.conjg(arr)
assert wrapper.get_dims(result)[0 : len(shape)] == shape, f"Failed for shape: {shape}, and dtype: {dtypes}" # noqa


@pytest.mark.parametrize(
"shape",
[
(),
(random.randint(1, 10),),
(random.randint(1, 10), random.randint(1, 10)),
(random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)),
(random.randint(1, 10), random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)),
],
)
@pytest.mark.parametrize("dtypes", get_all_types())
def test_imag_supported_dtypes(shape: tuple, dtypes: dtype.Dtype) -> None:
"""Test imaginary and real operations for supported data types."""
check_type_supported(dtypes)
arr = wrapper.randu(shape, dtypes)
real = wrapper.real(arr)
assert wrapper.is_real(real), f"Failed for shape: {shape}"


@pytest.mark.parametrize(
"shape",
[
(),
(random.randint(1, 10),),
(random.randint(1, 10), random.randint(1, 10)),
(random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)),
(random.randint(1, 10), random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)),
],
)
@pytest.mark.parametrize("dtypes", get_all_types())
def test_real_supported_dtypes(shape: tuple, dtypes: dtype.Dtype) -> None:
"""Test imaginary and real operations for supported data types."""
check_type_supported(dtypes)
arr = wrapper.randu(shape, dtypes)
real = wrapper.real(arr)
assert wrapper.is_real(real), f"Failed for shape: {shape}"
Loading