We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a92b39 commit 509de78Copy full SHA for 509de78
tests/pallas/ops_test.py
@@ -51,6 +51,8 @@
51
52
import hypothesis.extra.numpy as hnp
53
import hypothesis.strategies as hps
54
+from hypothesis import settings
55
+
56
57
# There are many inherited redefinitions of _
58
# ruff: noqa: F811
@@ -490,6 +492,7 @@ def kernel(x_ref, o_ref):
490
492
# TODO(sharadmv): test rank < 2, size < 2
491
493
@hp.given(select_n_strategy(max_cases=2, min_rank=2, max_rank=4,
494
min_size_exp=1))
495
+ @settings(suppress_health_check=[hp.HealthCheck.differing_executors])
496
def test_select_n(self, args):
497
if jtu.test_device_matches(["gpu"]):
498
self.skipTest("TODO: error on GPU, lowering bug for select_n")
0 commit comments