2017-01-03 05:00:01 +03:00
|
|
|
# frozen_string_literal: true
|
2011-06-17 02:47:28 +04:00
|
|
|
#--
|
2009-03-06 06:56:38 +03:00
|
|
|
# benchmark.rb - a performance benchmarking library
|
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# $Id$
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
|
|
|
# Created by Gotoken (gotoken@notwork.org).
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
|
|
|
# Documentation by Gotoken (original RD), Lyle Johnson (RDoc conversion), and
|
2009-03-06 06:56:38 +03:00
|
|
|
# Gavin Sinclair (editing).
|
2011-06-17 02:47:28 +04:00
|
|
|
#++
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
|
|
|
# == Overview
|
|
|
|
#
|
|
|
|
# The Benchmark module provides methods for benchmarking Ruby code, giving
|
|
|
|
# detailed reports on the time taken for each task.
|
2002-03-14 09:23:46 +03:00
|
|
|
#
|
|
|
|
|
2003-09-19 10:39:07 +04:00
|
|
|
# The Benchmark module provides methods to measure and report the time
|
2004-01-20 09:20:59 +03:00
|
|
|
# used to execute Ruby code.
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
2004-01-20 09:20:59 +03:00
|
|
|
# * Measure the time to construct the string given by the expression
|
2013-04-30 18:19:20 +04:00
|
|
|
# <code>"a"*1_000_000_000</code>:
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
|
|
|
# require 'benchmark'
|
|
|
|
#
|
2013-04-30 18:19:20 +04:00
|
|
|
# puts Benchmark.measure { "a"*1_000_000_000 }
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2015-12-23 06:43:23 +03:00
|
|
|
# On my machine (OSX 10.8.3 on i5 1.7 GHz) this generates:
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2013-04-30 18:19:20 +04:00
|
|
|
# 0.350000 0.400000 0.750000 ( 0.835234)
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2004-01-20 09:20:59 +03:00
|
|
|
# This report shows the user CPU time, system CPU time, the sum of
|
|
|
|
# the user and system CPU times, and the elapsed real time. The unit
|
|
|
|
# of time is seconds.
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2004-01-20 09:20:59 +03:00
|
|
|
# * Do some experiments sequentially using the #bm method:
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
|
|
|
# require 'benchmark'
|
|
|
|
#
|
2013-04-30 18:19:20 +04:00
|
|
|
# n = 5000000
|
2003-09-19 10:39:07 +04:00
|
|
|
# Benchmark.bm do |x|
|
|
|
|
# x.report { for i in 1..n; a = "1"; end }
|
|
|
|
# x.report { n.times do ; a = "1"; end }
|
|
|
|
# x.report { 1.upto(n) do ; a = "1"; end }
|
|
|
|
# end
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2004-01-20 09:20:59 +03:00
|
|
|
# The result:
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
|
|
|
# user system total real
|
2013-04-30 18:19:20 +04:00
|
|
|
# 1.010000 0.000000 1.010000 ( 1.014479)
|
|
|
|
# 1.000000 0.000000 1.000000 ( 0.998261)
|
|
|
|
# 0.980000 0.000000 0.980000 ( 0.981335)
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
2004-01-20 09:20:59 +03:00
|
|
|
# * Continuing the previous example, put a label in each report:
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
|
|
|
# require 'benchmark'
|
|
|
|
#
|
2013-04-30 18:19:20 +04:00
|
|
|
# n = 5000000
|
2003-09-19 10:39:07 +04:00
|
|
|
# Benchmark.bm(7) do |x|
|
|
|
|
# x.report("for:") { for i in 1..n; a = "1"; end }
|
|
|
|
# x.report("times:") { n.times do ; a = "1"; end }
|
|
|
|
# x.report("upto:") { 1.upto(n) do ; a = "1"; end }
|
|
|
|
# end
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# The result:
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# user system total real
|
2013-04-30 18:19:20 +04:00
|
|
|
# for: 1.010000 0.000000 1.010000 ( 1.015688)
|
|
|
|
# times: 1.000000 0.000000 1.000000 ( 1.003611)
|
|
|
|
# upto: 1.030000 0.000000 1.030000 ( 1.028098)
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
2004-01-20 09:20:59 +03:00
|
|
|
# * The times for some benchmarks depend on the order in which items
|
|
|
|
# are run. These differences are due to the cost of memory
|
|
|
|
# allocation and garbage collection. To avoid these discrepancies,
|
|
|
|
# the #bmbm method is provided. For example, to compare ways to
|
|
|
|
# sort an array of floats:
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
|
|
|
# require 'benchmark'
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# array = (1..1000000).map { rand }
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# Benchmark.bmbm do |x|
|
|
|
|
# x.report("sort!") { array.dup.sort! }
|
|
|
|
# x.report("sort") { array.dup.sort }
|
|
|
|
# end
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2004-01-20 09:20:59 +03:00
|
|
|
# The result:
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# Rehearsal -----------------------------------------
|
2013-04-30 18:19:20 +04:00
|
|
|
# sort! 1.490000 0.010000 1.500000 ( 1.490520)
|
|
|
|
# sort 1.460000 0.000000 1.460000 ( 1.463025)
|
|
|
|
# -------------------------------- total: 2.960000sec
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# user system total real
|
2013-04-30 18:19:20 +04:00
|
|
|
# sort! 1.460000 0.000000 1.460000 ( 1.460465)
|
|
|
|
# sort 1.450000 0.010000 1.460000 ( 1.448327)
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
2004-01-20 09:20:59 +03:00
|
|
|
# * Report statistics of sequential experiments with unique labels,
|
|
|
|
# using the #benchmark method:
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
|
|
|
# require 'benchmark'
|
2011-01-31 19:11:06 +03:00
|
|
|
# include Benchmark # we need the CAPTION and FORMAT constants
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
2013-04-30 18:19:20 +04:00
|
|
|
# n = 5000000
|
2011-01-31 19:11:06 +03:00
|
|
|
# Benchmark.benchmark(CAPTION, 7, FORMAT, ">total:", ">avg:") do |x|
|
2003-09-19 10:39:07 +04:00
|
|
|
# tf = x.report("for:") { for i in 1..n; a = "1"; end }
|
|
|
|
# tt = x.report("times:") { n.times do ; a = "1"; end }
|
|
|
|
# tu = x.report("upto:") { 1.upto(n) do ; a = "1"; end }
|
|
|
|
# [tf+tt+tu, (tf+tt+tu)/3]
|
|
|
|
# end
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2004-01-20 09:20:59 +03:00
|
|
|
# The result:
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# user system total real
|
2013-04-30 18:19:20 +04:00
|
|
|
# for: 0.950000 0.000000 0.950000 ( 0.952039)
|
|
|
|
# times: 0.980000 0.000000 0.980000 ( 0.984938)
|
|
|
|
# upto: 0.950000 0.000000 0.950000 ( 0.946787)
|
|
|
|
# >total: 2.880000 0.000000 2.880000 ( 2.883764)
|
|
|
|
# >avg: 0.960000 0.000000 0.960000 ( 0.961255)
|
2004-01-20 09:20:59 +03:00
|
|
|
|
2002-03-14 09:23:46 +03:00
|
|
|
module Benchmark
|
2003-09-19 10:39:07 +04:00
|
|
|
|
2023-11-06 12:31:07 +03:00
|
|
|
VERSION = "0.3.0"
|
2023-05-25 09:58:09 +03:00
|
|
|
|
2012-06-09 02:56:17 +04:00
|
|
|
BENCHMARK_VERSION = "2002-04-25" # :nodoc:
|
2002-03-14 09:23:46 +03:00
|
|
|
|
2012-06-09 02:56:17 +04:00
|
|
|
# Invokes the block with a Benchmark::Report object, which
|
2004-01-20 09:20:59 +03:00
|
|
|
# may be used to collect and report on the results of individual
|
2012-06-09 02:56:17 +04:00
|
|
|
# benchmark tests. Reserves +label_width+ leading spaces for
|
|
|
|
# labels on each line. Prints +caption+ at the top of the
|
|
|
|
# report, and uses +format+ to format each line.
|
2021-03-03 23:13:30 +03:00
|
|
|
# (Note: +caption+ must contain a terminating newline character,
|
|
|
|
# see the default Benchmark::Tms::CAPTION for an example.)
|
|
|
|
#
|
2011-01-31 19:11:06 +03:00
|
|
|
# Returns an array of Benchmark::Tms objects.
|
|
|
|
#
|
2004-01-20 09:20:59 +03:00
|
|
|
# If the block returns an array of
|
2012-06-09 02:56:17 +04:00
|
|
|
# Benchmark::Tms objects, these will be used to format
|
2015-05-19 11:15:07 +03:00
|
|
|
# additional lines of output. If +labels+ parameter are
|
2004-01-20 09:20:59 +03:00
|
|
|
# given, these are used to label these extra lines.
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
|
|
|
# _Note_: Other methods provide a simpler interface to this one, and are
|
|
|
|
# suitable for nearly all benchmarking requirements. See the examples in
|
|
|
|
# Benchmark, and the #bm and #bmbm methods.
|
|
|
|
#
|
2009-03-06 06:56:38 +03:00
|
|
|
# Example:
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
|
|
|
# require 'benchmark'
|
2011-01-31 19:11:06 +03:00
|
|
|
# include Benchmark # we need the CAPTION and FORMAT constants
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
2013-04-30 18:19:20 +04:00
|
|
|
# n = 5000000
|
2011-01-31 19:11:06 +03:00
|
|
|
# Benchmark.benchmark(CAPTION, 7, FORMAT, ">total:", ">avg:") do |x|
|
2003-09-19 10:39:07 +04:00
|
|
|
# tf = x.report("for:") { for i in 1..n; a = "1"; end }
|
|
|
|
# tt = x.report("times:") { n.times do ; a = "1"; end }
|
|
|
|
# tu = x.report("upto:") { 1.upto(n) do ; a = "1"; end }
|
|
|
|
# [tf+tt+tu, (tf+tt+tu)/3]
|
|
|
|
# end
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2012-06-09 02:56:17 +04:00
|
|
|
# Generates:
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# user system total real
|
2013-04-30 18:19:20 +04:00
|
|
|
# for: 0.970000 0.000000 0.970000 ( 0.970493)
|
|
|
|
# times: 0.990000 0.000000 0.990000 ( 0.989542)
|
|
|
|
# upto: 0.970000 0.000000 0.970000 ( 0.972854)
|
|
|
|
# >total: 2.930000 0.000000 2.930000 ( 2.932889)
|
|
|
|
# >avg: 0.976667 0.000000 0.976667 ( 0.977630)
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2004-01-20 09:20:59 +03:00
|
|
|
|
2011-01-31 19:11:06 +03:00
|
|
|
def benchmark(caption = "", label_width = nil, format = nil, *labels) # :yield: report
|
2021-03-02 03:22:23 +03:00
|
|
|
sync = $stdout.sync
|
|
|
|
$stdout.sync = true
|
2002-03-14 09:23:46 +03:00
|
|
|
label_width ||= 0
|
2011-06-28 10:09:46 +04:00
|
|
|
label_width += 1
|
2011-01-31 19:11:06 +03:00
|
|
|
format ||= FORMAT
|
2012-07-18 07:56:58 +04:00
|
|
|
print ' '*label_width + caption unless caption.empty?
|
2011-01-31 19:11:06 +03:00
|
|
|
report = Report.new(label_width, format)
|
|
|
|
results = yield(report)
|
2002-03-14 09:23:46 +03:00
|
|
|
Array === results and results.grep(Tms).each {|t|
|
2011-01-31 19:11:06 +03:00
|
|
|
print((labels.shift || t.label || "").ljust(label_width), t.format(format))
|
2002-03-14 09:23:46 +03:00
|
|
|
}
|
2011-01-31 19:11:06 +03:00
|
|
|
report.list
|
2011-06-28 10:09:46 +04:00
|
|
|
ensure
|
2021-03-02 03:22:23 +03:00
|
|
|
$stdout.sync = sync unless sync.nil?
|
2002-03-14 09:23:46 +03:00
|
|
|
end
|
|
|
|
|
2003-09-19 10:39:07 +04:00
|
|
|
|
2013-09-20 20:05:48 +04:00
|
|
|
# A simple interface to the #benchmark method, #bm generates sequential
|
2015-05-19 11:15:07 +03:00
|
|
|
# reports with labels. +label_width+ and +labels+ parameters have the same
|
|
|
|
# meaning as for #benchmark.
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# require 'benchmark'
|
|
|
|
#
|
2013-04-30 18:19:20 +04:00
|
|
|
# n = 5000000
|
2003-09-19 10:39:07 +04:00
|
|
|
# Benchmark.bm(7) do |x|
|
|
|
|
# x.report("for:") { for i in 1..n; a = "1"; end }
|
|
|
|
# x.report("times:") { n.times do ; a = "1"; end }
|
|
|
|
# x.report("upto:") { 1.upto(n) do ; a = "1"; end }
|
|
|
|
# end
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2012-06-09 02:56:17 +04:00
|
|
|
# Generates:
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# user system total real
|
2013-04-30 18:19:20 +04:00
|
|
|
# for: 0.960000 0.000000 0.960000 ( 0.957966)
|
|
|
|
# times: 0.960000 0.000000 0.960000 ( 0.960423)
|
|
|
|
# upto: 0.950000 0.000000 0.950000 ( 0.954864)
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
2004-01-20 09:20:59 +03:00
|
|
|
|
2003-09-19 10:39:07 +04:00
|
|
|
def bm(label_width = 0, *labels, &blk) # :yield: report
|
2011-01-31 19:11:06 +03:00
|
|
|
benchmark(CAPTION, label_width, FORMAT, *labels, &blk)
|
2002-03-14 09:23:46 +03:00
|
|
|
end
|
|
|
|
|
2003-09-19 10:39:07 +04:00
|
|
|
|
2004-01-20 09:20:59 +03:00
|
|
|
# Sometimes benchmark results are skewed because code executed
|
|
|
|
# earlier encounters different garbage collection overheads than
|
|
|
|
# that run later. #bmbm attempts to minimize this effect by running
|
* dln.c, io.c, pack.c, lib/benchmark.rb, lib/cgi.rb, lib/csv.rb,
lib/date.rb, lib/ftools.rb, lib/getoptlong.rb, lib/logger.rb,
lib/matrix.rb, lib/monitor.rb, lib/set.rb, lib/thwait.rb,
lib/timeout.rb, lib/yaml.rb, lib/drb/drb.rb, lib/irb/workspace.rb,
lib/net/ftp.rb, lib/net/http.rb, lib/net/imap.rb, lib/net/pop.rb,
lib/net/telnet.rb, lib/racc/parser.rb, lib/rinda/rinda.rb,
lib/rinda/tuplespace.rb, lib/shell/command-processor.rb,
lib/soap/rpc/soaplet.rb, lib/test/unit/testcase.rb,
lib/test/unit/testsuite.rb: typo fix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6178 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-04-19 03:19:47 +04:00
|
|
|
# the tests twice, the first time as a rehearsal in order to get the
|
2004-01-20 09:20:59 +03:00
|
|
|
# runtime environment stable, the second time for
|
2012-06-09 02:56:17 +04:00
|
|
|
# real. GC.start is executed before the start of each of
|
2004-01-20 09:20:59 +03:00
|
|
|
# the real timings; the cost of this is not included in the
|
|
|
|
# timings. In reality, though, there's only so much that #bmbm can
|
|
|
|
# do, and the results are not guaranteed to be isolated from garbage
|
|
|
|
# collection and other effects.
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
2004-01-20 09:20:59 +03:00
|
|
|
# Because #bmbm takes two passes through the tests, it can
|
|
|
|
# calculate the required label width.
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
|
|
|
# require 'benchmark'
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# array = (1..1000000).map { rand }
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# Benchmark.bmbm do |x|
|
|
|
|
# x.report("sort!") { array.dup.sort! }
|
|
|
|
# x.report("sort") { array.dup.sort }
|
|
|
|
# end
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2012-06-09 02:56:17 +04:00
|
|
|
# Generates:
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# Rehearsal -----------------------------------------
|
2013-04-30 18:19:20 +04:00
|
|
|
# sort! 1.440000 0.010000 1.450000 ( 1.446833)
|
|
|
|
# sort 1.440000 0.000000 1.440000 ( 1.448257)
|
|
|
|
# -------------------------------- total: 2.890000sec
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# user system total real
|
2013-04-30 18:19:20 +04:00
|
|
|
# sort! 1.460000 0.000000 1.460000 ( 1.458065)
|
|
|
|
# sort 1.450000 0.000000 1.450000 ( 1.455963)
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
2004-01-20 09:20:59 +03:00
|
|
|
# #bmbm yields a Benchmark::Job object and returns an array of
|
2003-09-19 10:39:07 +04:00
|
|
|
# Benchmark::Tms objects.
|
|
|
|
#
|
* ext/pathname/lib/pathname.rb, ext/tk/lib/multi-tk.rb,
ext/tk/sample/demos-en/widget, lib/benchmark.rb, lib/irb/cmd/fork.rb,
lib/mkmf.rb, lib/net/ftp.rb, lib/net/smtp.rb, lib/open3.rb,
lib/pstore.rb, lib/rexml/element.rb, lib/rexml/light/node.rb,
lib/rinda/tuplespace.rb, lib/rss/maker/base.rb,
lib/rss/maker/entry.rb, lib/scanf.rb, lib/set.rb, lib/shell.rb,
lib/shell/command-processor.rb, lib/shell/process-controller.rb,
lib/shell/system-command.rb, lib/uri/common.rb: remove unused block
arguments to avoid creating Proc objects.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33638 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2011-11-05 11:37:47 +04:00
|
|
|
def bmbm(width = 0) # :yield: job
|
2002-03-14 09:23:46 +03:00
|
|
|
job = Job.new(width)
|
|
|
|
yield(job)
|
2011-06-28 10:09:46 +04:00
|
|
|
width = job.width + 1
|
2021-03-02 03:22:23 +03:00
|
|
|
sync = $stdout.sync
|
|
|
|
$stdout.sync = true
|
2002-03-14 09:23:46 +03:00
|
|
|
|
|
|
|
# rehearsal
|
2011-01-31 19:11:06 +03:00
|
|
|
puts 'Rehearsal '.ljust(width+CAPTION.length,'-')
|
|
|
|
ets = job.list.inject(Tms.new) { |sum,(label,item)|
|
|
|
|
print label.ljust(width)
|
2011-05-19 02:07:09 +04:00
|
|
|
res = Benchmark.measure(&item)
|
|
|
|
print res.format
|
|
|
|
sum + res
|
2011-01-31 19:11:06 +03:00
|
|
|
}.format("total: %tsec")
|
|
|
|
print " #{ets}\n\n".rjust(width+CAPTION.length+2,'-')
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2002-03-14 09:23:46 +03:00
|
|
|
# take
|
2011-01-31 19:11:06 +03:00
|
|
|
print ' '*width + CAPTION
|
|
|
|
job.list.map { |label,item|
|
|
|
|
GC.start
|
2002-03-14 09:23:46 +03:00
|
|
|
print label.ljust(width)
|
2011-06-28 10:09:46 +04:00
|
|
|
Benchmark.measure(label, &item).tap { |res| print res }
|
2002-03-14 09:23:46 +03:00
|
|
|
}
|
2011-02-07 17:01:01 +03:00
|
|
|
ensure
|
2021-03-02 03:22:23 +03:00
|
|
|
$stdout.sync = sync unless sync.nil?
|
2002-03-14 09:23:46 +03:00
|
|
|
end
|
|
|
|
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# Returns the time used to execute the given block as a
|
2015-05-19 11:15:07 +03:00
|
|
|
# Benchmark::Tms object. Takes +label+ option.
|
|
|
|
#
|
|
|
|
# require 'benchmark'
|
|
|
|
#
|
|
|
|
# n = 1000000
|
|
|
|
#
|
|
|
|
# time = Benchmark.measure do
|
|
|
|
# n.times { a = "1" }
|
|
|
|
# end
|
|
|
|
# puts time
|
|
|
|
#
|
|
|
|
# Generates:
|
|
|
|
#
|
|
|
|
# 0.220000 0.000000 0.220000 ( 0.227313)
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
|
|
|
def measure(label = "") # :yield:
|
2015-06-02 03:08:25 +03:00
|
|
|
t0, r0 = Process.times, Process.clock_gettime(Process::CLOCK_MONOTONIC)
|
2002-03-14 09:23:46 +03:00
|
|
|
yield
|
2015-06-02 03:08:25 +03:00
|
|
|
t1, r1 = Process.times, Process.clock_gettime(Process::CLOCK_MONOTONIC)
|
2009-03-06 06:56:38 +03:00
|
|
|
Benchmark::Tms.new(t1.utime - t0.utime,
|
|
|
|
t1.stime - t0.stime,
|
|
|
|
t1.cutime - t0.cutime,
|
|
|
|
t1.cstime - t0.cstime,
|
2012-07-18 07:56:58 +04:00
|
|
|
r1 - r0,
|
2003-09-19 10:39:07 +04:00
|
|
|
label)
|
2002-03-14 09:23:46 +03:00
|
|
|
end
|
|
|
|
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
|
|
|
# Returns the elapsed real time used to execute the given block.
|
2024-09-27 06:37:36 +03:00
|
|
|
# The unit of time is seconds.
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
2024-09-27 06:39:21 +03:00
|
|
|
# Benchmark.realtime { "a" * 1_000_000_000 }
|
|
|
|
# #=> 0.5098029999935534
|
|
|
|
#
|
2011-06-28 10:09:46 +04:00
|
|
|
def realtime # :yield:
|
2015-06-02 03:08:25 +03:00
|
|
|
r0 = Process.clock_gettime(Process::CLOCK_MONOTONIC)
|
2008-02-02 14:09:24 +03:00
|
|
|
yield
|
2015-06-02 03:08:25 +03:00
|
|
|
Process.clock_gettime(Process::CLOCK_MONOTONIC) - r0
|
2002-03-14 09:23:46 +03:00
|
|
|
end
|
|
|
|
|
2011-01-31 19:11:06 +03:00
|
|
|
module_function :benchmark, :measure, :realtime, :bm, :bmbm
|
2003-09-19 10:39:07 +04:00
|
|
|
|
|
|
|
#
|
|
|
|
# A Job is a sequence of labelled blocks to be processed by the
|
|
|
|
# Benchmark.bmbm method. It is of little direct interest to the user.
|
|
|
|
#
|
2011-05-25 04:38:30 +04:00
|
|
|
class Job # :nodoc:
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
|
|
|
# Returns an initialized Job instance.
|
|
|
|
# Usually, one doesn't call this method directly, as new
|
|
|
|
# Job objects are created by the #bmbm method.
|
2012-06-09 02:56:17 +04:00
|
|
|
# +width+ is a initial value for the label offset used in formatting;
|
|
|
|
# the #bmbm method passes its +width+ argument to this constructor.
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2002-03-14 09:23:46 +03:00
|
|
|
def initialize(width)
|
|
|
|
@width = width
|
|
|
|
@list = []
|
|
|
|
end
|
|
|
|
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
|
|
|
# Registers the given label and block pair in the job list.
|
|
|
|
#
|
|
|
|
def item(label = "", &blk) # :yield:
|
2008-02-10 18:29:00 +03:00
|
|
|
raise ArgumentError, "no block" unless block_given?
|
2011-01-31 19:11:06 +03:00
|
|
|
label = label.to_s
|
2002-03-14 09:23:46 +03:00
|
|
|
w = label.length
|
|
|
|
@width = w if @width < w
|
2011-01-31 19:11:06 +03:00
|
|
|
@list << [label, blk]
|
2002-03-14 09:23:46 +03:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
alias report item
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-09-19 10:39:07 +04:00
|
|
|
# An array of 2-element arrays, consisting of label and block pairs.
|
|
|
|
attr_reader :list
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2011-01-31 19:11:06 +03:00
|
|
|
# Length of the widest label in the #list.
|
2003-09-19 10:39:07 +04:00
|
|
|
attr_reader :width
|
2002-03-14 09:23:46 +03:00
|
|
|
end
|
|
|
|
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
|
|
|
# This class is used by the Benchmark.benchmark and Benchmark.bm methods.
|
|
|
|
# It is of little direct interest to the user.
|
|
|
|
#
|
2011-05-25 04:38:30 +04:00
|
|
|
class Report # :nodoc:
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
|
|
|
# Returns an initialized Report instance.
|
|
|
|
# Usually, one doesn't call this method directly, as new
|
2009-03-06 06:56:38 +03:00
|
|
|
# Report objects are created by the #benchmark and #bm methods.
|
2012-06-09 02:56:17 +04:00
|
|
|
# +width+ and +format+ are the label offset and
|
2009-03-06 06:56:38 +03:00
|
|
|
# format string used by Tms#format.
|
|
|
|
#
|
2011-01-31 19:11:06 +03:00
|
|
|
def initialize(width = 0, format = nil)
|
|
|
|
@width, @format, @list = width, format, []
|
2002-03-14 09:23:46 +03:00
|
|
|
end
|
|
|
|
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
2012-06-09 02:56:17 +04:00
|
|
|
# Prints the +label+ and measured time for the block,
|
|
|
|
# formatted by +format+. See Tms#format for the
|
2003-09-19 10:39:07 +04:00
|
|
|
# formatting rules.
|
|
|
|
#
|
2011-01-31 19:11:06 +03:00
|
|
|
def item(label = "", *format, &blk) # :yield:
|
|
|
|
print label.to_s.ljust(@width)
|
|
|
|
@list << res = Benchmark.measure(label, &blk)
|
|
|
|
print res.format(@format, *format)
|
2002-03-14 09:23:46 +03:00
|
|
|
res
|
|
|
|
end
|
|
|
|
|
|
|
|
alias report item
|
2011-01-31 19:11:06 +03:00
|
|
|
|
|
|
|
# An array of Benchmark::Tms objects representing each item.
|
|
|
|
attr_reader :list
|
2002-03-14 09:23:46 +03:00
|
|
|
end
|
|
|
|
|
2003-09-19 10:39:07 +04:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# A data object, representing the times associated with a benchmark
|
|
|
|
# measurement.
|
|
|
|
#
|
2002-03-14 09:23:46 +03:00
|
|
|
class Tms
|
2011-05-18 00:42:25 +04:00
|
|
|
|
|
|
|
# Default caption, see also Benchmark::CAPTION
|
2002-03-14 09:23:46 +03:00
|
|
|
CAPTION = " user system total real\n"
|
2011-05-18 18:09:38 +04:00
|
|
|
|
2011-05-18 00:42:25 +04:00
|
|
|
# Default format string, see also Benchmark::FORMAT
|
2011-01-31 19:11:06 +03:00
|
|
|
FORMAT = "%10.6u %10.6y %10.6t %10.6r\n"
|
2002-03-14 09:23:46 +03:00
|
|
|
|
2003-09-19 10:39:07 +04:00
|
|
|
# User CPU time
|
|
|
|
attr_reader :utime
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-09-19 10:39:07 +04:00
|
|
|
# System CPU time
|
|
|
|
attr_reader :stime
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-09-19 10:39:07 +04:00
|
|
|
# User CPU time of children
|
|
|
|
attr_reader :cutime
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-09-19 10:39:07 +04:00
|
|
|
# System CPU time of children
|
|
|
|
attr_reader :cstime
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-09-19 10:39:07 +04:00
|
|
|
# Elapsed real time
|
|
|
|
attr_reader :real
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2012-06-09 02:56:17 +04:00
|
|
|
# Total time, that is +utime+ + +stime+ + +cutime+ + +cstime+
|
2003-09-19 10:39:07 +04:00
|
|
|
attr_reader :total
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-09-19 10:39:07 +04:00
|
|
|
# Label
|
|
|
|
attr_reader :label
|
|
|
|
|
|
|
|
#
|
* dln.c, io.c, pack.c, lib/benchmark.rb, lib/cgi.rb, lib/csv.rb,
lib/date.rb, lib/ftools.rb, lib/getoptlong.rb, lib/logger.rb,
lib/matrix.rb, lib/monitor.rb, lib/set.rb, lib/thwait.rb,
lib/timeout.rb, lib/yaml.rb, lib/drb/drb.rb, lib/irb/workspace.rb,
lib/net/ftp.rb, lib/net/http.rb, lib/net/imap.rb, lib/net/pop.rb,
lib/net/telnet.rb, lib/racc/parser.rb, lib/rinda/rinda.rb,
lib/rinda/tuplespace.rb, lib/shell/command-processor.rb,
lib/soap/rpc/soaplet.rb, lib/test/unit/testcase.rb,
lib/test/unit/testsuite.rb: typo fix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6178 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-04-19 03:19:47 +04:00
|
|
|
# Returns an initialized Tms object which has
|
2012-06-09 02:56:17 +04:00
|
|
|
# +utime+ as the user CPU time, +stime+ as the system CPU time,
|
|
|
|
# +cutime+ as the children's user CPU time, +cstime+ as the children's
|
|
|
|
# system CPU time, +real+ as the elapsed real time and +label+ as the label.
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2011-01-31 19:11:06 +03:00
|
|
|
def initialize(utime = 0.0, stime = 0.0, cutime = 0.0, cstime = 0.0, real = 0.0, label = nil)
|
|
|
|
@utime, @stime, @cutime, @cstime, @real, @label = utime, stime, cutime, cstime, real, label.to_s
|
2002-03-14 09:23:46 +03:00
|
|
|
@total = @utime + @stime + @cutime + @cstime
|
|
|
|
end
|
|
|
|
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# Returns a new Tms object whose times are the sum of the times for this
|
2012-06-09 02:56:17 +04:00
|
|
|
# Tms object, plus the time required to execute the code block (+blk+).
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
def add(&blk) # :yield:
|
2011-01-31 19:11:06 +03:00
|
|
|
self + Benchmark.measure(&blk)
|
2002-03-14 09:23:46 +03:00
|
|
|
end
|
|
|
|
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# An in-place version of #add.
|
2018-09-15 15:45:46 +03:00
|
|
|
# Changes the times of this Tms object by making it the sum of the times
|
|
|
|
# for this Tms object, plus the time required to execute
|
|
|
|
# the code block (+blk+).
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2010-04-02 22:22:29 +04:00
|
|
|
def add!(&blk)
|
2011-01-31 19:11:06 +03:00
|
|
|
t = Benchmark.measure(&blk)
|
2002-03-14 09:23:46 +03:00
|
|
|
@utime = utime + t.utime
|
|
|
|
@stime = stime + t.stime
|
|
|
|
@cutime = cutime + t.cutime
|
|
|
|
@cstime = cstime + t.cstime
|
|
|
|
@real = real + t.real
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# Returns a new Tms object obtained by memberwise summation
|
2018-09-15 15:45:46 +03:00
|
|
|
# of the individual times for this Tms object with those of the +other+
|
2003-09-19 10:39:07 +04:00
|
|
|
# Tms object.
|
2009-03-06 06:56:38 +03:00
|
|
|
# This method and #/() are useful for taking statistics.
|
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
def +(other); memberwise(:+, other) end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
|
|
|
# Returns a new Tms object obtained by memberwise subtraction
|
2018-09-15 15:45:46 +03:00
|
|
|
# of the individual times for the +other+ Tms object from those of this
|
2003-09-19 10:39:07 +04:00
|
|
|
# Tms object.
|
|
|
|
#
|
|
|
|
def -(other); memberwise(:-, other) end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
|
|
|
# Returns a new Tms object obtained by memberwise multiplication
|
2018-09-15 15:45:46 +03:00
|
|
|
# of the individual times for this Tms object by +x+.
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
2002-03-14 09:23:46 +03:00
|
|
|
def *(x); memberwise(:*, x) end
|
2003-09-19 10:39:07 +04:00
|
|
|
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# Returns a new Tms object obtained by memberwise division
|
2018-09-15 15:45:46 +03:00
|
|
|
# of the individual times for this Tms object by +x+.
|
2009-03-06 06:56:38 +03:00
|
|
|
# This method and #+() are useful for taking statistics.
|
|
|
|
#
|
2002-03-14 09:23:46 +03:00
|
|
|
def /(x); memberwise(:/, x) end
|
|
|
|
|
2003-09-19 10:39:07 +04:00
|
|
|
#
|
|
|
|
# Returns the contents of this Tms object as
|
2015-05-19 11:15:07 +03:00
|
|
|
# a formatted string, according to a +format+ string
|
2003-09-19 10:39:07 +04:00
|
|
|
# like that passed to Kernel.format. In addition, #format
|
|
|
|
# accepts the following extensions:
|
|
|
|
#
|
|
|
|
# <tt>%u</tt>:: Replaced by the user CPU time, as reported by Tms#utime.
|
|
|
|
# <tt>%y</tt>:: Replaced by the system CPU time, as reported by #stime (Mnemonic: y of "s*y*stem")
|
2009-03-06 06:56:38 +03:00
|
|
|
# <tt>%U</tt>:: Replaced by the children's user CPU time, as reported by Tms#cutime
|
* dln.c, io.c, pack.c, lib/benchmark.rb, lib/cgi.rb, lib/csv.rb,
lib/date.rb, lib/ftools.rb, lib/getoptlong.rb, lib/logger.rb,
lib/matrix.rb, lib/monitor.rb, lib/set.rb, lib/thwait.rb,
lib/timeout.rb, lib/yaml.rb, lib/drb/drb.rb, lib/irb/workspace.rb,
lib/net/ftp.rb, lib/net/http.rb, lib/net/imap.rb, lib/net/pop.rb,
lib/net/telnet.rb, lib/racc/parser.rb, lib/rinda/rinda.rb,
lib/rinda/tuplespace.rb, lib/shell/command-processor.rb,
lib/soap/rpc/soaplet.rb, lib/test/unit/testcase.rb,
lib/test/unit/testsuite.rb: typo fix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6178 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-04-19 03:19:47 +04:00
|
|
|
# <tt>%Y</tt>:: Replaced by the children's system CPU time, as reported by Tms#cstime
|
2003-09-19 10:39:07 +04:00
|
|
|
# <tt>%t</tt>:: Replaced by the total CPU time, as reported by Tms#total
|
|
|
|
# <tt>%r</tt>:: Replaced by the elapsed real time, as reported by Tms#real
|
|
|
|
# <tt>%n</tt>:: Replaced by the label string, as reported by Tms#label (Mnemonic: n of "*n*ame")
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2015-05-19 11:15:07 +03:00
|
|
|
# If +format+ is not given, FORMAT is used as default value, detailing the
|
2003-09-19 10:39:07 +04:00
|
|
|
# user, system and real elapsed time.
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2011-01-31 19:11:06 +03:00
|
|
|
def format(format = nil, *args)
|
|
|
|
str = (format || FORMAT).dup
|
2012-07-18 07:56:58 +04:00
|
|
|
str.gsub!(/(%[-+.\d]*)n/) { "#{$1}s" % label }
|
|
|
|
str.gsub!(/(%[-+.\d]*)u/) { "#{$1}f" % utime }
|
|
|
|
str.gsub!(/(%[-+.\d]*)y/) { "#{$1}f" % stime }
|
|
|
|
str.gsub!(/(%[-+.\d]*)U/) { "#{$1}f" % cutime }
|
|
|
|
str.gsub!(/(%[-+.\d]*)Y/) { "#{$1}f" % cstime }
|
|
|
|
str.gsub!(/(%[-+.\d]*)t/) { "#{$1}f" % total }
|
|
|
|
str.gsub!(/(%[-+.\d]*)r/) { "(#{$1}f)" % real }
|
2011-01-31 19:11:06 +03:00
|
|
|
format ? str % args : str
|
2002-03-14 09:23:46 +03:00
|
|
|
end
|
|
|
|
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# Same as #format.
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2002-03-14 09:23:46 +03:00
|
|
|
def to_s
|
|
|
|
format
|
|
|
|
end
|
|
|
|
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-09-19 10:39:07 +04:00
|
|
|
# Returns a new 6-element array, consisting of the
|
* dln.c, io.c, pack.c, lib/benchmark.rb, lib/cgi.rb, lib/csv.rb,
lib/date.rb, lib/ftools.rb, lib/getoptlong.rb, lib/logger.rb,
lib/matrix.rb, lib/monitor.rb, lib/set.rb, lib/thwait.rb,
lib/timeout.rb, lib/yaml.rb, lib/drb/drb.rb, lib/irb/workspace.rb,
lib/net/ftp.rb, lib/net/http.rb, lib/net/imap.rb, lib/net/pop.rb,
lib/net/telnet.rb, lib/racc/parser.rb, lib/rinda/rinda.rb,
lib/rinda/tuplespace.rb, lib/shell/command-processor.rb,
lib/soap/rpc/soaplet.rb, lib/test/unit/testcase.rb,
lib/test/unit/testsuite.rb: typo fix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6178 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-04-19 03:19:47 +04:00
|
|
|
# label, user CPU time, system CPU time, children's
|
|
|
|
# user CPU time, children's system CPU time and elapsed
|
2003-09-19 10:39:07 +04:00
|
|
|
# real time.
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2002-03-14 09:23:46 +03:00
|
|
|
def to_a
|
|
|
|
[@label, @utime, @stime, @cutime, @cstime, @real]
|
|
|
|
end
|
|
|
|
|
2021-02-08 07:02:52 +03:00
|
|
|
#
|
|
|
|
# Returns a hash containing the same data as `to_a`.
|
|
|
|
#
|
|
|
|
def to_h
|
|
|
|
{
|
|
|
|
label: @label,
|
|
|
|
utime: @utime,
|
|
|
|
stime: @stime,
|
|
|
|
cutime: @cutime,
|
|
|
|
cstime: @cstime,
|
|
|
|
real: @real
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2002-03-14 09:23:46 +03:00
|
|
|
protected
|
2012-06-09 02:56:17 +04:00
|
|
|
|
2011-06-17 02:47:28 +04:00
|
|
|
#
|
|
|
|
# Returns a new Tms object obtained by memberwise operation +op+
|
|
|
|
# of the individual times for this Tms object with those of the other
|
2018-09-15 15:45:46 +03:00
|
|
|
# Tms object (+x+).
|
2011-06-17 02:47:28 +04:00
|
|
|
#
|
|
|
|
# +op+ can be a mathematical operation such as <tt>+</tt>, <tt>-</tt>,
|
|
|
|
# <tt>*</tt>, <tt>/</tt>
|
|
|
|
#
|
2002-03-14 09:23:46 +03:00
|
|
|
def memberwise(op, x)
|
|
|
|
case x
|
|
|
|
when Benchmark::Tms
|
2003-09-19 10:39:07 +04:00
|
|
|
Benchmark::Tms.new(utime.__send__(op, x.utime),
|
|
|
|
stime.__send__(op, x.stime),
|
|
|
|
cutime.__send__(op, x.cutime),
|
|
|
|
cstime.__send__(op, x.cstime),
|
|
|
|
real.__send__(op, x.real)
|
2011-05-19 04:07:25 +04:00
|
|
|
)
|
2002-03-14 09:23:46 +03:00
|
|
|
else
|
2003-09-19 10:39:07 +04:00
|
|
|
Benchmark::Tms.new(utime.__send__(op, x),
|
|
|
|
stime.__send__(op, x),
|
|
|
|
cutime.__send__(op, x),
|
|
|
|
cstime.__send__(op, x),
|
|
|
|
real.__send__(op, x)
|
2011-05-19 04:07:25 +04:00
|
|
|
)
|
2002-03-14 09:23:46 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2003-09-19 10:39:07 +04:00
|
|
|
# The default caption string (heading above the output times).
|
2002-03-14 09:23:46 +03:00
|
|
|
CAPTION = Benchmark::Tms::CAPTION
|
2003-09-19 10:39:07 +04:00
|
|
|
|
2009-03-06 06:56:38 +03:00
|
|
|
# The default format string used to display times. See also Benchmark::Tms#format.
|
2011-01-31 19:11:06 +03:00
|
|
|
FORMAT = Benchmark::Tms::FORMAT
|
2002-03-14 09:23:46 +03:00
|
|
|
end
|