Parallelism with Futures in The Racket Guide introduces
The futures visualizer is a graphical profiling tool for parallel programs written using future . The tool shows a timeline of a program’s execution including all future-related events, as well as the overall amount of processor utilization at any point during the program’s lifetime.
syntax
( visualize-futures e...)
procedure
( visualize-futures-thunk thunk)→any
thunk:(->any)
A typical program using profiling might look like the following:
future-visualizer)
The preceding program is equivalent to:
future-visualizer/tracefuture-visualizer)
procedure
( show-visualizer #:timelinetimeline)→void?