Is anybody aware of programs for profiling OCaml code apart from using the -p option while compilation and then using gprof? I am asking this question in order to check if the sampling time of 0.01 second can be lowered further?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
poorman's profiler is perfectly applicable for OCaml programs. The same idea works out for profiling allocations as well. |
|||||||||
|
|
Never used it but ocamlviz is another option. |
|||
|
|
|
You can also use ocaml-memprof, a compiler patch (3.12.0 and 3.12 1) written by Fabrice Le Fessant, that adds memory profiling features to ocaml programs. |
|||
|
|