Skip to content

Commit

Permalink
Fix Build Time Graphs
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebd99 committed Dec 19, 2023
1 parent 0cdf32b commit 92700bb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Experiments/build_color_summaries.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function build_experiments(experiment_params_list::Vector{ExperimentParams})
Threads.@threads for experiment_params in experiment_params_list
for experiment_params in experiment_params_list
build_times = [("Dataset", "Partitioner", "NumColors", "BuildPhase", "BuildTime", "MemoryFootprint")]
dataset = experiment_params.dataset
summary_params = experiment_params.summary_params
Expand Down
6 changes: 6 additions & 0 deletions Experiments/graph_results.jl
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,12 @@ function graph_grouped_bar_plot(experiment_params_list::Vector{ExperimentParams}
else
current_group = get_value_from_param(experiment_params, grouping)
end

if grouping != build_phase && results_df[i, :BuildPhase] != "FullTime"
continue
end


current_y = 0
if y_type == estimate_error
current_y = results_df[i, :Estimate] / results_df[i, :TrueCard]
Expand Down

0 comments on commit 92700bb

Please sign in to comment.