[plt-scheme] Statistical profiler documents

From: Eli Barzilay (eli at barzilay.org)
Date: Tue Sep 22 02:09:09 EDT 2009

On Sep 22, Rommel M. Martinez wrote:
> Aside from the one on the main PLT docs site, do other documents
> exist for the statistical profiler? Is there a rudimentary usage
> guide at the very least, lying just around?

I've clarified this with Rommel -- the quick summary is:

* There is no guide-like documentation for the profiler.

* But it's really very simple to use (for most cases).  For example:

    > (define (fib n) (if (<= n 1) n (+ (fib (- n 1)) (fib (- n 2)))))
    > (require profile)
    > (profile (fib 33))

-- 
          ((lambda (x) (x x)) (lambda (x) (x x)))          Eli Barzilay:
                    http://barzilay.org/                   Maze is Life!


Posted on the users mailing list.