2007-11-15 20:30:29 -05:00
|
|
|
#
|
|
|
|
# Ruby Benchmark driver
|
|
|
|
#
|
|
|
|
|
2007-11-21 04:03:52 -05:00
|
|
|
first = true
|
|
|
|
|
|
|
|
begin
|
|
|
|
require 'optparse'
|
|
|
|
rescue LoadError
|
|
|
|
if first
|
|
|
|
first = false
|
|
|
|
$:.unshift File.join(File.dirname(__FILE__), '../lib')
|
|
|
|
retry
|
|
|
|
else
|
|
|
|
raise
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-11-15 20:30:29 -05:00
|
|
|
require 'benchmark'
|
|
|
|
require 'pp'
|
|
|
|
|
|
|
|
class BenchmarkDriver
|
|
|
|
def self.benchmark(opt)
|
|
|
|
driver = self.new(opt[:execs], opt[:dir], opt)
|
|
|
|
begin
|
|
|
|
driver.run
|
|
|
|
ensure
|
|
|
|
driver.show_results
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def output *args
|
|
|
|
puts(*args)
|
|
|
|
@output and @output.puts(*args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def message *args
|
|
|
|
output(*args) if @verbose
|
|
|
|
end
|
|
|
|
|
|
|
|
def message_print *args
|
|
|
|
if @verbose
|
|
|
|
print(*args)
|
|
|
|
STDOUT.flush
|
|
|
|
@output and @output.print(*args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def progress_message *args
|
|
|
|
unless STDOUT.tty?
|
2011-05-15 07:55:52 -04:00
|
|
|
STDERR.print(*args)
|
2007-11-15 20:30:29 -05:00
|
|
|
STDERR.flush
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize execs, dir, opt = {}
|
|
|
|
@execs = execs.map{|e|
|
|
|
|
e.strip!
|
|
|
|
next if e.empty?
|
|
|
|
|
|
|
|
if /(.+)::(.+)/ =~ e
|
|
|
|
# ex) ruby-a::/path/to/ruby-a
|
2012-11-26 04:19:00 -05:00
|
|
|
label = $1.strip
|
|
|
|
path = $2
|
|
|
|
version = `#{path} -v`.chomp
|
2007-11-15 20:30:29 -05:00
|
|
|
else
|
2012-11-26 04:19:00 -05:00
|
|
|
path = e
|
|
|
|
version = label = `#{path} -v`.chomp
|
2007-11-15 20:30:29 -05:00
|
|
|
end
|
2012-11-26 04:19:00 -05:00
|
|
|
[path, label, version]
|
2007-11-15 20:30:29 -05:00
|
|
|
}.compact
|
|
|
|
|
|
|
|
@dir = dir
|
|
|
|
@repeat = opt[:repeat] || 1
|
|
|
|
@repeat = 1 if @repeat < 1
|
|
|
|
@pattern = opt[:pattern] || nil
|
2012-10-24 04:46:01 -04:00
|
|
|
@exclude = opt[:exclude] || nil
|
2007-11-15 20:30:29 -05:00
|
|
|
@verbose = opt[:quiet] ? false : (opt[:verbose] || false)
|
|
|
|
@output = opt[:output] ? open(opt[:output], 'w') : nil
|
2014-05-06 22:57:11 -04:00
|
|
|
@rawdata_output = opt[:rawdata_output] ? open(opt[:rawdata_output], 'w') : nil
|
2007-11-15 20:30:29 -05:00
|
|
|
@loop_wl1 = @loop_wl2 = nil
|
2012-10-18 21:22:08 -04:00
|
|
|
@ruby_arg = opt[:ruby_arg] || nil
|
2007-11-15 20:30:29 -05:00
|
|
|
@opt = opt
|
2015-03-04 19:14:02 -05:00
|
|
|
@name_width = 4 # "name".size
|
2007-11-15 20:30:29 -05:00
|
|
|
|
|
|
|
# [[name, [[r-1-1, r-1-2, ...], [r-2-1, r-2-2, ...]]], ...]
|
|
|
|
@results = []
|
|
|
|
|
|
|
|
if @verbose
|
|
|
|
@start_time = Time.now
|
|
|
|
message @start_time
|
2012-11-26 04:19:00 -05:00
|
|
|
@execs.each_with_index{|(path, label, version), i|
|
2012-11-26 04:30:32 -05:00
|
|
|
message "target #{i}: " + (label == version ? "#{label}" : "#{label} (#{version})") + " at \"#{path}\""
|
2007-11-15 20:30:29 -05:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-16 09:26:46 -04:00
|
|
|
def adjusted_results name, results
|
|
|
|
s = nil
|
|
|
|
results.each_with_index{|e, i|
|
|
|
|
r = e.min
|
|
|
|
case name
|
|
|
|
when /^vm1_/
|
|
|
|
if @loop_wl1
|
|
|
|
r -= @loop_wl1[i]
|
|
|
|
r = 0 if r < 0
|
|
|
|
s = '*'
|
|
|
|
end
|
|
|
|
when /^vm2_/
|
|
|
|
if @loop_wl2
|
|
|
|
r -= @loop_wl2[i]
|
|
|
|
r = 0 if r < 0
|
|
|
|
s = '*'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
yield r
|
|
|
|
}
|
|
|
|
s
|
2011-07-06 17:47:56 -04:00
|
|
|
end
|
|
|
|
|
2007-11-15 20:30:29 -05:00
|
|
|
def show_results
|
2015-03-04 19:14:02 -05:00
|
|
|
case @opt[:format]
|
|
|
|
when :tsv
|
|
|
|
when :markdown
|
|
|
|
markdown = true
|
|
|
|
end
|
|
|
|
|
2007-11-15 20:30:29 -05:00
|
|
|
output
|
|
|
|
|
|
|
|
if @verbose
|
|
|
|
message '-----------------------------------------------------------'
|
|
|
|
message 'raw data:'
|
|
|
|
message
|
|
|
|
message PP.pp(@results, "", 79)
|
|
|
|
message
|
2012-08-11 11:45:54 -04:00
|
|
|
message "Elapsed time: #{Time.now - @start_time} (sec)"
|
2007-11-15 20:30:29 -05:00
|
|
|
end
|
|
|
|
|
2014-05-06 22:57:11 -04:00
|
|
|
if @rawdata_output
|
|
|
|
h = {}
|
|
|
|
h[:cpuinfo] = File.read('/proc/cpuinfo') if File.exist?('/proc/cpuinfo')
|
|
|
|
h[:executables] = @execs
|
|
|
|
h[:results] = @results
|
2014-05-06 23:07:10 -04:00
|
|
|
@rawdata_output.puts h.inspect
|
2014-05-06 22:57:11 -04:00
|
|
|
end
|
|
|
|
|
2007-11-15 20:30:29 -05:00
|
|
|
output '-----------------------------------------------------------'
|
|
|
|
output 'benchmark results:'
|
|
|
|
|
|
|
|
if @verbose and @repeat > 1
|
|
|
|
output "minimum results in each #{@repeat} measurements."
|
|
|
|
end
|
|
|
|
|
2015-03-04 19:14:02 -05:00
|
|
|
tabs = @name_width / 8
|
|
|
|
sep = markdown ? "\t|" : "\t"
|
2012-10-16 09:26:46 -04:00
|
|
|
output "Execution time (sec)"
|
2015-03-04 19:14:02 -05:00
|
|
|
output if markdown
|
|
|
|
output ["name", @execs.map{|(_, v)| v}].join(sep)
|
|
|
|
output "-"*(8*tabs+8)+"|------:"*@execs.size if markdown
|
2007-11-15 20:30:29 -05:00
|
|
|
@results.each{|v, result|
|
|
|
|
rets = []
|
2012-10-16 09:26:46 -04:00
|
|
|
s = adjusted_results(v, result){|r|
|
2007-11-15 20:30:29 -05:00
|
|
|
rets << sprintf("%.3f", r)
|
|
|
|
}
|
2015-03-04 19:14:02 -05:00
|
|
|
v += s if s
|
|
|
|
output [v, rets].join(sep)
|
2007-11-15 20:30:29 -05:00
|
|
|
}
|
2011-07-06 17:47:56 -04:00
|
|
|
|
2012-10-16 09:26:46 -04:00
|
|
|
if @execs.size > 1
|
|
|
|
output
|
2012-11-17 06:07:05 -05:00
|
|
|
output "Speedup ratio: compare with the result of `#{@execs[0][1]}' (greater is better)"
|
2015-03-04 19:14:02 -05:00
|
|
|
output if markdown
|
|
|
|
output ["name", @execs[1..-1].map{|(_, v)| v}].join(sep)
|
|
|
|
output "-"*(8*tabs+8)+"|------:"*(@execs.size-1) if markdown
|
2012-10-16 09:26:46 -04:00
|
|
|
@results.each{|v, result|
|
|
|
|
rets = []
|
|
|
|
first_value = nil
|
|
|
|
s = adjusted_results(v, result){|r|
|
|
|
|
if first_value
|
|
|
|
if r == 0
|
2012-11-17 06:07:05 -05:00
|
|
|
rets << "Error"
|
2012-10-16 09:26:46 -04:00
|
|
|
else
|
|
|
|
rets << sprintf("%.3f", first_value/r)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
first_value = r
|
|
|
|
end
|
|
|
|
}
|
2015-03-04 19:14:02 -05:00
|
|
|
v += s if s
|
|
|
|
output [v, rets].join(sep)
|
2012-10-16 09:26:46 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2012-10-16 09:07:44 -04:00
|
|
|
if @opt[:output]
|
|
|
|
output
|
|
|
|
output "Log file: #{@opt[:output]}"
|
2011-07-06 17:47:56 -04:00
|
|
|
end
|
2007-11-15 20:30:29 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def files
|
|
|
|
flag = {}
|
|
|
|
@files = Dir.glob(File.join(@dir, 'bm*.rb')).map{|file|
|
|
|
|
next if @pattern && /#{@pattern}/ !~ File.basename(file)
|
2012-10-24 04:46:01 -04:00
|
|
|
next if @exclude && /#{@exclude}/ =~ File.basename(file)
|
2007-11-15 20:30:29 -05:00
|
|
|
case file
|
|
|
|
when /bm_(vm[12])_/, /bm_loop_(whileloop2?).rb/
|
|
|
|
flag[$1] = true
|
|
|
|
end
|
|
|
|
file
|
|
|
|
}.compact
|
|
|
|
|
|
|
|
if flag['vm1'] && !flag['whileloop']
|
|
|
|
@files << File.join(@dir, 'bm_loop_whileloop.rb')
|
|
|
|
elsif flag['vm2'] && !flag['whileloop2']
|
|
|
|
@files << File.join(@dir, 'bm_loop_whileloop2.rb')
|
|
|
|
end
|
|
|
|
|
|
|
|
@files.sort!
|
|
|
|
progress_message "total: #{@files.size * @repeat} trial(s) (#{@repeat} trial(s) for #{@files.size} benchmark(s))\n"
|
|
|
|
@files
|
|
|
|
end
|
|
|
|
|
|
|
|
def run
|
|
|
|
files.each_with_index{|file, i|
|
|
|
|
@i = i
|
|
|
|
r = measure_file(file)
|
|
|
|
|
|
|
|
if /bm_loop_whileloop.rb/ =~ file
|
|
|
|
@loop_wl1 = r[1].map{|e| e.min}
|
|
|
|
elsif /bm_loop_whileloop2.rb/ =~ file
|
|
|
|
@loop_wl2 = r[1].map{|e| e.min}
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def measure_file file
|
|
|
|
name = File.basename(file, '.rb').sub(/^bm_/, '')
|
|
|
|
prepare_file = File.join(File.dirname(file), "prepare_#{name}.rb")
|
|
|
|
load prepare_file if FileTest.exist?(prepare_file)
|
|
|
|
|
|
|
|
if @verbose
|
|
|
|
output
|
|
|
|
output '-----------------------------------------------------------'
|
|
|
|
output name
|
|
|
|
output
|
|
|
|
output File.read(file)
|
|
|
|
output
|
|
|
|
end
|
|
|
|
|
2015-03-04 19:14:02 -05:00
|
|
|
@name_width = name.size if name.size > @name_width
|
2007-11-15 20:30:29 -05:00
|
|
|
result = [name]
|
|
|
|
result << @execs.map{|(e, v)|
|
|
|
|
(0...@repeat).map{
|
|
|
|
message_print "#{v}\t"
|
|
|
|
progress_message '.'
|
|
|
|
|
|
|
|
m = measure(e, file)
|
|
|
|
message "#{m}"
|
|
|
|
m
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@results << result
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
2014-05-05 12:11:00 -04:00
|
|
|
unless defined?(File::NULL)
|
|
|
|
if File.exist?('/dev/null')
|
|
|
|
File::NULL = '/dev/null'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-11-15 20:30:29 -05:00
|
|
|
def measure executable, file
|
2012-10-18 21:22:08 -04:00
|
|
|
cmd = "#{executable} #{@ruby_arg} #{file}"
|
|
|
|
|
2007-11-15 20:30:29 -05:00
|
|
|
m = Benchmark.measure{
|
2014-01-30 13:48:40 -05:00
|
|
|
system(cmd, out: File::NULL)
|
2007-11-15 20:30:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if $? != 0
|
2012-05-27 00:35:11 -04:00
|
|
|
output "\`#{cmd}\' exited with abnormal status (#{$?})"
|
|
|
|
0
|
|
|
|
else
|
|
|
|
m.real
|
2007-11-15 20:30:29 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if __FILE__ == $0
|
|
|
|
opt = {
|
2012-11-26 04:19:00 -05:00
|
|
|
:execs => [],
|
2012-10-16 09:07:44 -04:00
|
|
|
:dir => File.dirname(__FILE__),
|
2007-11-15 20:30:29 -05:00
|
|
|
:repeat => 1,
|
|
|
|
:output => "bmlog-#{Time.now.strftime('%Y%m%d-%H%M%S')}.#{$$}",
|
2015-03-04 19:14:02 -05:00
|
|
|
:raw_output => nil,
|
|
|
|
:format => :tsv,
|
2007-11-15 20:30:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
parser = OptionParser.new{|o|
|
|
|
|
o.on('-e', '--executables [EXECS]',
|
2012-11-26 04:19:00 -05:00
|
|
|
"Specify benchmark one or more targets (e1::path1; e2::path2; e3::path3;...)"){|e|
|
|
|
|
e.split(/;/).each{|path|
|
|
|
|
opt[:execs] << path
|
|
|
|
}
|
2007-11-15 20:30:29 -05:00
|
|
|
}
|
|
|
|
o.on('-d', '--directory [DIRECTORY]', "Benchmark suites directory"){|d|
|
|
|
|
opt[:dir] = d
|
|
|
|
}
|
|
|
|
o.on('-p', '--pattern [PATTERN]', "Benchmark name pattern"){|p|
|
|
|
|
opt[:pattern] = p
|
|
|
|
}
|
2012-10-24 04:46:01 -04:00
|
|
|
o.on('-x', '--exclude [PATTERN]', "Benchmark exclude pattern"){|e|
|
|
|
|
opt[:exclude] = e
|
|
|
|
}
|
2007-11-15 20:30:29 -05:00
|
|
|
o.on('-r', '--repeat-count [NUM]', "Repeat count"){|n|
|
|
|
|
opt[:repeat] = n.to_i
|
|
|
|
}
|
2012-02-12 01:17:25 -05:00
|
|
|
o.on('-o', '--output-file [FILE]', "Output file"){|f|
|
|
|
|
opt[:output] = f
|
2007-11-15 20:30:29 -05:00
|
|
|
}
|
2012-10-18 21:22:08 -04:00
|
|
|
o.on('--ruby-arg [ARG]', "Optional argument for ruby"){|a|
|
|
|
|
opt[:ruby_arg] = a
|
|
|
|
}
|
2014-05-06 22:57:11 -04:00
|
|
|
o.on('--rawdata-output [FILE]', 'output rawdata'){|r|
|
|
|
|
opt[:rawdata_output] = r
|
2007-11-15 20:30:29 -05:00
|
|
|
}
|
2015-03-04 19:14:02 -05:00
|
|
|
o.on('-f', '--format={tsv,markdown}', 'output format', [:tsv, :markdown]){|r|
|
|
|
|
opt[:format] = r
|
|
|
|
}
|
2007-11-15 20:30:29 -05:00
|
|
|
o.on('-v', '--verbose'){|v|
|
|
|
|
opt[:verbose] = v
|
|
|
|
}
|
2014-05-06 22:57:11 -04:00
|
|
|
o.on('-q', '--quiet', "Run without notify information except result table."){|q|
|
|
|
|
opt[:quiet] = q
|
|
|
|
opt[:verbose] = false
|
|
|
|
}
|
2007-11-15 20:30:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
parser.parse!(ARGV)
|
|
|
|
BenchmarkDriver.benchmark(opt)
|
|
|
|
end
|
|
|
|
|