aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/features/benchmark/fieldmatch/plot.rb
blob: befa75b878e6a5b76fa199655ae8333a0bbd4300 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
require '../plotlib'

if ARGV.size == 0
  puts "must specify folder"
  exit
end

folder = ARGV[0]
extra = ""
extra = ARGV[1] if ARGV.size == 2
field = [20, 100, 1000, 10000]
segmentation = [1, 5, 10, 50, 100, 500, 1000, 10000]

dat = folder + "/plot.dat"
png = folder + "/plot.png"

file = File.open(dat, "w")
segmentation.each do |s|
  file.write("#{s} ")
  field.each do |f|
    file.write(extract_data(folder + "/c-#{f}-#{s}.out") + " ")
  end
  file.write("\n")
end
file.close

titles = ["fl-20", "fl-100", "fl-1000", "fl-10000"]

plot_graph(dat, titles, png, "fieldMatch feature (#{extra})", "maxAlternativeSegmentations", "execution time per document (ms)", folder)