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.
13 lines
193 B
Plaintext
13 lines
193 B
Plaintext
;; Closure Scope Test
|
|
;; Benchmark: 780ns
|
|
;; Benchmark-Repeat: 2602
|
|
;; Output: 15
|
|
(do
|
|
(def make-adder (fn [x]
|
|
(fn [y] (+ x y))))
|
|
|
|
(def add5 (make-adder 5))
|
|
|
|
(add5 10)
|
|
)
|