I am looking to test various Scheme constructs for comparison purposes and was wondering how to go about doing so. I know Ruby has a dedicate module for such benchmarking and a web search does not appear to readily provide a Scheme version. Can Anyone point Me in the direction of such a facility? If it matters, I am using Chicken Scheme.
Asked
Active
Viewed 192 times
0
-
You may be able to use the `salmonella` egg to do this. http://wiki.call-cc.org/eggref/4/salmonella – robbyphillips Jan 18 '13 at 18:59
2 Answers
0
You can compile a program using -profile, then when you run it it will write a profiling file. This can then be analysed with the chicken-profile
program.
This is documented in the "using the compiler" section of the manual (search for -profile
).

sjamaan
- 2,282
- 10
- 19