Remove default no_aot_data filter

This commit is contained in:
2026-08-05 18:22:55 +02:00
parent 879381aed6
commit 9ecfd26ac6
3 changed files with 5 additions and 1 deletions
+2 -1
View File
@@ -95,7 +95,8 @@ my %CONFIGS = (
);
# 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 {
return \%CONFIGS;
@@ -72,6 +72,7 @@ marker_count <- faults_data |>
group_by(mnemonic) |>
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 |>
inner_join(marker_count, by = "mnemonic") |>
filter(instr_count > 0, marker_count > 0)
@@ -62,6 +62,8 @@ if (nrow(all_data) == 0) {
baseline <- 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 |>
left_join(
baseline |> select(base_name, benchmark, resulttype, faults),