Skip to content
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
2 changes: 1 addition & 1 deletion tests/python/test_intrinsics.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading