Skip to content

Commit 110a04f

Browse files
committed
limit the range in symmetric_matrices
1 parent f1c3ed2 commit 110a04f

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

array_api_tests/hypothesis_helpers.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -370,17 +370,23 @@ def mutually_broadcastable_shapes(
370370
# TODO: Add support for complex Hermitian matrices
371371
@composite
372372
def symmetric_matrices(draw, dtypes=real_floating_dtypes, finite=True, bound=10.):
373+
# for now, only generate elements from (1, bound); TODO: restore
374+
# generating from (-bound, -1/bound).or.(1/bound, bound)
375+
# Note that using `assume` triggers a HealthCheck for filtering too much.
373376
shape = draw(square_matrix_shapes)
374377
dtype = draw(dtypes)
375378
if not isinstance(finite, bool):
376379
finite = draw(finite)
377-
elements = {'allow_nan': False, 'allow_infinity': False} if finite else None
380+
if finite:
381+
elements = {'allow_nan': False, 'allow_infinity': False,
382+
'min_value': 1, 'max_value': bound}
383+
else:
384+
elements = None
378385
a = draw(arrays(dtype=dtype, shape=shape, elements=elements))
379386
at = ah._matrix_transpose(a)
380387
H = (a + at)*0.5
381388
if finite:
382389
assume(not xp.any(xp.isinf(H)))
383-
assume(xp.all((H == 0.) | ((1/bound <= xp.abs(H)) & (xp.abs(H) <= bound))))
384390
return H
385391

386392
@composite

array_api_tests/test_linalg.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ def test_eigh(x):
312312

313313
@pytest.mark.unvectorized
314314
@pytest.mark.xp_extension('linalg')
315-
@given(x=symmetric_matrices(finite=True))
315+
@given(x=symmetric_matrices(finite=True, bound=2.0))
316316
def test_eigvalsh(x):
317317
res = linalg.eigvalsh(x)
318318

0 commit comments

Comments
 (0)