From 0b70aeb75578f98b9b9da7270a61cb9fba843dc1 Mon Sep 17 00:00:00 2001 From: Hugh Perkins Date: Fri, 17 Apr 2026 05:56:10 -0400 Subject: [PATCH] increase count --- tests/python/test_intrinsics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python/test_intrinsics.py b/tests/python/test_intrinsics.py index 6faf4a78df..127032447d 100644 --- a/tests/python/test_intrinsics.py +++ b/tests/python/test_intrinsics.py @@ -65,7 +65,7 @@ def measure_sequence_timings(): # Read from a field so the compiler can't constant-fold the deterministic LCG sequence x = state[i] start = qd.i64(0) - for j in range((i + 1) * 50000): + for j in range((i + 1) * 200000): # LCG: constant cost per iteration (pure integer arithmetic) and uniform output # over [0, 2^31), making `x > 10` true >99.999% of the time but not provably # always true, so the compiler can't optimize away the conditional store.