Skip to content

Commit 40fae53

Browse files
committed
limit the range in symmetric_matrices
otherwise, using assume(...) triggers a HealthCheck warning that the strategy filters too much
1 parent f1c3ed2 commit 40fae53

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
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

0 commit comments

Comments
 (0)