The ruby-prof tag has no wiki summary.
0
votes
1answer
55 views
Negative times in ruby-prof?
I am using rspec-prof, which is based on ruby-prof, to profile a spec that takes quite some time. However, I cannot interpret the results that I get, because they are reporting negative times. Am I ...
-1
votes
1answer
248 views
Is there a trick to profiling memory usage w/ ruby-prof using an rvm gemset?
I've been trying to get ruby-prof working for memory usage on Mac OS X w/ Ruby 1.8.7 and so far I'm not having much luck.
I understand from the documentation that RubyProf::MEMORY mode requires a ...
1
vote
1answer
127 views
Profile Jekyll build time
I use Jekyll to build my site, and it is starting to take a rather long time (a few minutes) to compile the site (of a bit more than 600 posts). I suspect that some plugins might be responsible, but ...
2
votes
0answers
242 views
Ruby segmentation fault when running a profile test
I get the segmentation fault error below when I run rake test:profile. I'm using ruby 1.9.2p290 (2011-07-09 revision 32553) [i686-linux]. But it also happens with the p320 version of Ruby 1.9.2 and ...
-1
votes
1answer
86 views
ruby-prof says Ruby increment operator (+=) takes 25 seconds
I'm trying to profile some Ruby code I wrote using ruby-prof gem and see that basic operations like i += 1 (listed as Fixnum#+ in the table below) take over 24 seconds to run (in this particular test, ...
2
votes
3answers
492 views
Ruby profiler stack level too deep error
It seems like I always get this error on one of my scripts:
/Users/amosng/.rvm/gems/ruby-1.9.3-p194/gems/ruby-prof-0.11.2/lib/ruby-prof/profile.rb:25: stack level too deep (SystemStackError)
Has ...
0
votes
1answer
154 views
Ruby on Rails: rb_class_superclass not located in msvcrt-ruby191.dll (ruby-prof error?)
So, long story short, I had o format and reinstall my OS hence all my dev utilities.
git env sorted.
DevKit was fine.
Sphinx/mysql fine.
Bundle installed perfectly.
Everything is gravy until I go to ...
0
votes
0answers
114 views
Cause of errors in RubyProf eliminating multiple methods
When I use RubyProf and try to eliminate both Array#each and Kernel#send methods from the result, I get errors trying to generate HTML graph output. Output is generated just fine with either one of ...
6
votes
5answers
1k views
Errors with ruby-prof in a Rails Performance Test
I'm creating a Rails Performance test, as described in the Rails Guide, and I'm having problems with ruby-prof.
I'm using Ruby 1.9.2-p0 (though experienced the same issue on p320) and Rails 3.1.0.
I ...
0
votes
0answers
220 views
bundle or install ruby-prof failed on windows
Folks,
I tried hard to install ruby-prof on windows xp and windows 7 through bundler, but not lucky at all,
in the main site of ruby-prof, it says we need to install version '0.7.3' for windows, I ...
1
vote
1answer
645 views
Which is the best graphical ruby profiler?
The best match that I have found until now is to use ruby-prof from command line and try to guess the graph reading from there.
require 'ruby-prof'
# Profile the code
RubyProf.start
...
[code to ...
1
vote
1answer
150 views
Ruby profiler results interpretation
I'm using a ruby-prof gem to profile my code.
And results looks like this:
%self total self wait child calls name
50.56 31.06 23.45 0.00 7.62 234593 Array#each
...
-1
votes
4answers
292 views
Using ruby-prof to get runtime difference between “1+1” and “1x2”
Attempting to profile the difference in runtime between "1+1" and "1x2" using Ruby and the gem ruby-prof.
Install the gem and hacked together some code that appears to work, but does not give me the ...
1
vote
1answer
242 views
undefined method 'threads' using ruby-prof
I'm trying to use ruby-prof to profile some code. It seems to work up until the line indicated below:
require 'rubygems'
require 'ruby-prof'
result = RubyProf.start do
puts "do stuff..."
end
...
1
vote
1answer
89 views
ruby-prof “Wait” column in the results: what is it?
The results for the ruby-prof output always contains a value for the "Wait" column. However, I've never found a description of what this value is and in all the times I've used ruby-prof, I've never ...
5
votes
5answers
459 views
Mutex sleep is taking a lot of CPU
I profiled my event-machine based application with ruby-prof and found the following interesting:
5.28 0.00 5.28 0.00 4/4 Mutex#synchronize
90.72% 0.00% ...
24
votes
1answer
2k views
Understanding ruby-prof output
I ran ruby-profiler on one of my programs. I'm trying to figure out what each fields mean. I'm guessing everything is CPU time (and not wall clock time), which is fantastic. I want to understand what ...
8
votes
3answers
4k views
How can I profile Ruby code in 1.9.2?
What can I use to profile code in 1.9.2? All of the versions of ruby-prof I've found segfault against 1.9.2.
For instance, when I add
gem "ruby-prof"
to my Rails project's Gemfile and run
bundle
...
7
votes
2answers
943 views
How to profile Rake task?
I need to profile the rake task. Cause I'm noob I know only how to profile .rb code
like this: ruby -Ilib -S ruby-prof -p graph_html profile.rb > profile.html
But how do I profile a specific Rake ...
7
votes
1answer
3k views
Profiling Ruby Code
Besides ruby-prof and and the core Benchmark class, what do you use to profile your Ruby code? In particular, how do you find the bottlenecks in your code? It almost feels like I need to work on my ...
1
vote
1answer
605 views
rails performance test is failing
Simple performance test, I have installed ruby-prof and no other gems
are missing,
rake test:profile returns the following error.
the test is simply.
require 'test_helper'
require ...
2
votes
2answers
788 views
Low-overhead Ruby profiling?
I have a Ruby program that takes about 4 minutes to complete task and I'd like to get it down to under 1 minute.
I tried ruby-prof from gem but enabling it increases running times to ~30 minutes, and ...
0
votes
2answers
735 views
Profile memory-performance for part of an rails project
I want to test the profile usage of an important library-class of my rails-project. It uses ActiveRecord so I need all rails dependencies to profile it.
As far as I know, I need a patched ruby ...
2
votes
2answers
183 views
Is it possible to ignore irrelevant methods when profiling ruby applications?
While using ruby-prof, printed out in graph-html mode, the report for one method says (with some snipping)
%Total %Self Total Self Wait Child Calls Name Line
...
0
votes
2answers
2k views
rails ruby-prof and benchmark testing
I'm running Rails 2.2.2. I've read a few articles about ruby-prof and profiling a rails app. And I'm confused as to how things are really working.
I was originally using this tutorial
...