(workload, algorithm, seed)
| 63 | return df_combined |
| 64 | |
| 65 | def load_data(workload, algorithm, seed): |
| 66 | if target == "llvm": |
| 67 | result_file = llvm_results / f"llvm_{workload}" / algorithm / f"{seed}_KB.json" |
| 68 | else: |
| 69 | result_file = gcc_results_path / f"gcc_{workload}" / algorithm / f"{seed}_KB.json" |
| 70 | df = load_and_prepare_data(result_file) |
| 71 | return df |
| 72 | |
| 73 | def collect_all_data(workload): |
| 74 | all_data = [] |
no test coverage detected