libpredict_integration: fix signatures

This commit is contained in:
2025-10-05 23:06:05 +03:00
parent d1a9113072
commit c26cc261c4
6 changed files with 29 additions and 22 deletions

View File

@@ -7,13 +7,13 @@
void runPredictScheme(SgProject &project,
std::vector<std::vector<size_t>> &topologies,
std::vector<ParallelRegion*> &parallelRegions,
std::map<std::string, std::vector<LoopGraph*>> loopGraph,
const std::vector<ParallelRegion*> &parallelRegions,
std::map<std::string, std::vector<LoopGraph*>> &loopGraph,
std::map<std::string, std::vector<Messages>> &SPF_messages);
double runLibpredictCalc(SgProject &project,
std::vector<size_t> topology,
std::string clusterConfStr,
std::vector<ParallelRegion*> &parallelRegions,
std::map<std::string, std::vector<LoopGraph*>> loopGraph,
const std::vector<size_t> &topology,
const std::string &clusterConfStr,
const std::vector<ParallelRegion*> &parallelRegions,
std::map<std::string, std::vector<LoopGraph*>> &loopGraph,
std::map<std::string, std::vector<Messages>> &SPF_messages);