-
Notifications
You must be signed in to change notification settings - Fork 449
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf: benchmark for modulo on bv_decide
- Loading branch information
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import Std.Tactic.BVDecide | ||
|
||
/- | ||
Verify: https://en.wikipedia.org/wiki/Lehmer_random_number_generator#Sample_C99_code | ||
uint32_t lcg_parkmiller(uint32_t *state) | ||
{ | ||
return *state = (uint64_t)*state * 48271 % 0x7fffffff; | ||
} | ||
vs | ||
uint32_t lcg_parkmiller(uint32_t *state) | ||
{ | ||
uint64_t product = (uint64_t)*state * 48271; | ||
uint32_t x = (product & 0x7fffffff) + (product >> 31); | ||
x = (x & 0x7fffffff) + (x >> 31); | ||
return *state = x; | ||
} | ||
-/ | ||
|
||
def naive (state : BitVec 32) : BitVec 32 := | ||
(((state.zeroExtend 64) * 48271) % 0x7fffffff).extractLsb 31 0 | ||
|
||
def opt (state : BitVec 32) : BitVec 32 := | ||
let product := (state.zeroExtend 64) * 48271 | ||
let x := ((product &&& 0x7fffffff) + (product >>> 31)).extractLsb 31 0 | ||
let x := (x &&& 0x7fffffff) + (x >>> 31) | ||
x | ||
|
||
--set_option trace.Meta.Tactic.bv true in | ||
--set_option trace.Meta.Tactic.sat true in | ||
--set_option trace.profiler true in | ||
set_option sat.timeout 120 in | ||
theorem lehmer_correct (state : BitVec 32) (h1 : state > 0) (h2 : state < 0x7fffffff) : | ||
naive state = opt state := by | ||
unfold naive opt | ||
bv_decide |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters