Skip to content

Commit

Permalink
Increase the precision of comparison (#346)
Browse files Browse the repository at this point in the history
  • Loading branch information
k0kubun authored Nov 14, 2024
1 parent 3a18f1b commit 6433b02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run_benchmarks.rb
Original file line number Diff line number Diff line change
Expand Up @@ -498,11 +498,11 @@ def run_benchmarks(ruby:, ruby_description:, categories:, name_filters:, out_pat
end
other_names.each do |name|
table[0] += ["#{name} 1st itr"]
format += ["%.2f"]
format += ["%.3f"]
end
other_names.each do |name|
table[0] += ["#{base_name}/#{name}"]
format += ["%.2f"]
format += ["%.3f"]
end

# Format the results table
Expand Down

0 comments on commit 6433b02

Please sign in to comment.