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

limit the range in symmetric_matrices #325

Merged
merged 1 commit into from
Dec 4, 2024
Merged
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
10 changes: 8 additions & 2 deletions array_api_tests/hypothesis_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,17 +370,23 @@ def mutually_broadcastable_shapes(
# TODO: Add support for complex Hermitian matrices
@composite
def symmetric_matrices(draw, dtypes=real_floating_dtypes, finite=True, bound=10.):
# for now, only generate elements from (1, bound); TODO: restore
# generating from (-bound, -1/bound).or.(1/bound, bound)
# Note that using `assume` triggers a HealthCheck for filtering too much.
shape = draw(square_matrix_shapes)
dtype = draw(dtypes)
if not isinstance(finite, bool):
finite = draw(finite)
elements = {'allow_nan': False, 'allow_infinity': False} if finite else None
if finite:
elements = {'allow_nan': False, 'allow_infinity': False,
'min_value': 1, 'max_value': bound}
else:
elements = None
a = draw(arrays(dtype=dtype, shape=shape, elements=elements))
at = ah._matrix_transpose(a)
H = (a + at)*0.5
if finite:
assume(not xp.any(xp.isinf(H)))
assume(xp.all((H == 0.) | ((1/bound <= xp.abs(H)) & (xp.abs(H) <= bound))))
return H

@composite
Expand Down