Sha256: 1ae7a94c0c61d22e4302b493a6fa4c410c075b8bcda1c8d216f63033aa96207d

Contents?: true

Size: 1.74 KB

Versions: 13

Compression:

Stored size: 1.74 KB

Contents

# ruby -Ilib -rrubygems test/benchmark.rb

require 'benchmark'
include Benchmark

require 'bibtex'

# data = File.open(BibTeX::Test.fixtures(:benchmark)).read

input = <<~END
  @book{pickaxe,
  	Address = {Raleigh, North Carolina},
  	Author = {Thomas, Dave, and Fowler, Chad, and Hunt, Andy},
  	Date-Added = {2010-08-05 09:54:07 +0200},
  	Date-Modified = {2010-08-05 10:07:01 +0200},
  	Keywords = {ruby},
  	Publisher = {The Pragmatic Bookshelf},
  	Series = {The Facets of Ruby},
  	Title = {Programming Ruby 1.9: The Pragmatic Programmer's Guide},
  	Year = {2009}
  }
END

n = 31
k = 10
lexer = BibTeX::Lexer.new
# parser = BibTeX::Parser.new

f = []
g = []

# Ruby 1.9.3
format = Benchmark.const_defined?(:FMTSTR) ? Benchmark::FMTSTR : Benchmark::FORMAT

Benchmark.benchmark((' ' * 15) + CAPTION, 7, format, format('%14s:', 'sum(f)'), format('%14s:', 'sum(g)')) do |b|
  1.step(n, k) do |i|
    f << b.report(format('%14s:', "f(#{i})")) do
      i.times do
        lexer.data = input
        lexer.analyse
        # BibTeX::Parser.new.parse(input)
      end
    end

    data = input * i

    g << b.report(format('%14s:', "g(#{i})")) do
      lexer.data = data
      lexer.analyse
      # BibTeX::Parser.new.parse(data)
    end
  end

  [f.inject(:+), g.inject(:+)]
end

# require 'gnuplot'
#
# f = f.map(&:total)
# g = g.map(&:total)
#
# x = 1.step(n,k).to_a
#
# Gnuplot.open do |gp|
#   Gnuplot::Plot.new(gp) do |plot|
#
#     plot.title  'BibTeX-Ruby Benchmark'
#     plot.ylabel 't'
#     plot.xlabel 'n'
#
#     plot.data << Gnuplot::DataSet.new([x,f]) do |ds|
#       ds.with = 'linespoints'
#       ds.title = 'f'
#     end
#
#     plot.data << Gnuplot::DataSet.new([x,g]) do |ds|
#       ds.with = 'linespoints'
#       ds.title = 'g'
#     end
#
#   end
# end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
bibtex-ruby-6.1.0 test/benchmark.rb
bibtex-ruby-6.0.0 test/benchmark.rb
bibtex-ruby-5.1.6 test/benchmark.rb
bibtex-ruby-5.1.5 test/benchmark.rb
metanorma-cli-1.3.4 gems/ruby/2.6.0/gems/bibtex-ruby-5.1.4/test/benchmark.rb
metanorma-cli-1.3.3.1 gems/ruby/2.6.0/gems/bibtex-ruby-5.1.4/test/benchmark.rb
bibtex-ruby-5.1.4 test/benchmark.rb
bibtex-ruby-5.1.3 test/benchmark.rb
bibtex-ruby-5.1.2 test/benchmark.rb
bibtex-ruby-5.1.1 test/benchmark.rb
bibtex-ruby-5.1.0 test/benchmark.rb
bibtex-ruby-5.0.1 test/benchmark.rb
bibtex-ruby-5.0.0 test/benchmark.rb