9072cfaa14
This commit updates the benchmark timings and repeat counts for various example files. The `tester.rs` script has been modified to: - Correctly parse and use the `Benchmark-Repeat` directive. - Implement an adaptive sampling mechanism for more accurate median calculation, especially for long-running benchmarks. - Improve the logic for updating and inserting benchmark and repeat lines in example files. - Handle potential compilation and runtime errors during benchmark execution.
10 lines
206 B
Plaintext
10 lines
206 B
Plaintext
;; Benchmark: 429ns
|
|
;; Benchmark-Repeat: 4712
|
|
;; Nested Macro and Arithmetic example
|
|
;; Output: 81
|
|
|
|
(do
|
|
(macro square [x] `(* ~x ~x))
|
|
(macro power4 [x] `(square (square ~x)))
|
|
(power4 3))
|