Remove default no_aot_data filter
This commit is contained in:
@@ -95,7 +95,8 @@ my %CONFIGS = (
|
|||||||
);
|
);
|
||||||
|
|
||||||
# Those will be executed automatically by runner.pl (+ no filter at all)
|
# Those will be executed automatically by runner.pl (+ no filter at all)
|
||||||
my @DEFAULT_CONFIGS = ('no_aot_data');
|
# my @DEFAULT_CONFIGS = ('no_aot_data');
|
||||||
|
my @DEFAULT_CONFIGS = ();
|
||||||
|
|
||||||
sub get_configs {
|
sub get_configs {
|
||||||
return \%CONFIGS;
|
return \%CONFIGS;
|
||||||
|
|||||||
@@ -72,6 +72,7 @@ marker_count <- faults_data |>
|
|||||||
group_by(mnemonic) |>
|
group_by(mnemonic) |>
|
||||||
summarise(marker_count = sum(faults, na.rm = TRUE), .groups = "drop")
|
summarise(marker_count = sum(faults, na.rm = TRUE), .groups = "drop")
|
||||||
|
|
||||||
|
# Join instr_freq and marker_count, only keep entries both dataframes have
|
||||||
correlation <- instr_freq |>
|
correlation <- instr_freq |>
|
||||||
inner_join(marker_count, by = "mnemonic") |>
|
inner_join(marker_count, by = "mnemonic") |>
|
||||||
filter(instr_count > 0, marker_count > 0)
|
filter(instr_count > 0, marker_count > 0)
|
||||||
|
|||||||
@@ -62,6 +62,8 @@ if (nrow(all_data) == 0) {
|
|||||||
baseline <- all_data |> filter(variant == "c")
|
baseline <- all_data |> filter(variant == "c")
|
||||||
comparisons <- all_data |> filter(variant != "c")
|
comparisons <- all_data |> filter(variant != "c")
|
||||||
|
|
||||||
|
# Join comparisons with baseline (differentiate by _baseline suffix)
|
||||||
|
# and add ratio column
|
||||||
ratios <- comparisons |>
|
ratios <- comparisons |>
|
||||||
left_join(
|
left_join(
|
||||||
baseline |> select(base_name, benchmark, resulttype, faults),
|
baseline |> select(base_name, benchmark, resulttype, faults),
|
||||||
|
|||||||
Reference in New Issue
Block a user