Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
PkgBenchmark = "32113eaa-f34f-5b0d-bd6c-c81e245fc73d"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
SolverBenchmark = "581a75fa-a23a-52d0-a590-d6201de2218a"
StatsPlots = "f3b207a7-027a-5e70-b257-86293d7955fd"

[compat]
BenchmarkTools = "1.3"
Expand All @@ -28,6 +29,7 @@ Pkg = "1.9"
PkgBenchmark = "0.2"
Plots = "1.39"
SolverBenchmark = "0.5,0.6"
StatsPlots = "0.15"
julia = "^1.6"

[extras]
Expand Down
6 changes: 4 additions & 2 deletions src/JSOBenchmarks.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ using JLD2
using JSON
using PkgBenchmark
using Plots
using StatsPlots

# JSO modules
using SolverBenchmark
Expand Down Expand Up @@ -113,12 +114,13 @@ function run_benchmarks(
property == :name && continue
commit_values = this_commit_k[!, property]
reference_values = reference_k[!, property]
plot(
groupedbar(
names,
[commit_values, reference_values],
title = string(property),
label = ["commit" "reference"],
linewidth = 2,
bar_width = 0.7,
bar_position = :dodge,
xticks = (1:length(names), names),
xrotation = 45,
tickfontsize = 4,
Expand Down
Loading