Changeset 39375 in project
- Timestamp:
- 11/24/20 05:32:45 (8 weeks ago)
- Location:
- release/5/micro-benchmark/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
release/5/micro-benchmark/trunk/micro-benchmark.egg
r39365 r39375 1 1 ((synopsis "easily create micro-benchmarks") 2 (version "0.0. 3")2 (version "0.0.4") 3 3 (author "David Krentzlin") 4 4 (maintainer "[[kon lovett]]") 5 5 (category testing) 6 6 (license "GPLv3") 7 (dependencies micro-stats )7 (dependencies micro-stats srfi-1) 8 8 (test-dependencies test) 9 9 (components -
release/5/micro-benchmark/trunk/micro-benchmark.scm
r39365 r39375 20 20 (chicken syntax) 21 21 (chicken foreign) 22 (only (srfi 1) list-tabulate )22 (only (srfi 1) list-tabulate map!) 23 23 micro-stats) 24 24 … … 324 324 (total-time (- after before overhead)) ) 325 325 (loop (cons total-time timings)) ) ) 326 (map (lambda (t) (/ per-100ms (ÎŒs->secs t))) timings) ) ) ) ) )326 (map! (lambda (t) (/ per-100ms (ÎŒs->secs t))) timings) ) ) ) ) ) 327 327 328 328 ;@thunk benchmark procedure
Note: See TracChangeset
for help on using the changeset viewer.