tmm1 (owner)

Revisions

  • 96f4a5 tmm1 Mon Jun 01 03:15:54 -0700 2009
  • 792d53 tmm1 Mon Jun 01 03:14:02 -0700 2009
gist: 121336 Download_button fork
public
Description:
perftools.rb quickstart
Public Clone URL: git://gist.github.com/121336.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
$ sudo gem install --no-rdoc --no-ri -s http://gems.github.com tmm1-perftools.rb
Building native extensions. This could take a while...
Successfully installed tmm1-perftools.rb-0.1.3
1 gem installed
 
$ CPUPROFILE=/tmp/prof RUBYOPT="-r`gem which perftools | tail -1`" ruby -e' 5_000_000.times{ 5+4-3*2/1 } '
PROFILE: interrupts/evictions/bytes = 395/0/108
 
$ pprof.rb --text /tmp/prof
Total: 395 samples
     296 74.9% 74.9% 395 100.0% Integer#times
      30 7.6% 82.5% 30 7.6% Fixnum#*
      25 6.3% 88.9% 25 6.3% Fixnum#+
      22 5.6% 94.4% 22 5.6% Fixnum#-
      22 5.6% 100.0% 22 5.6% Fixnum#/
 
$ pprof.rb --gif /tmp/prof > /tmp/prof.gif
$ open /tmp/prof.gif