21 lines
938 B
C++
21 lines
938 B
C++
#pragma once
|
|
#include <vector>
|
|
#include <map>
|
|
#include <string>
|
|
#include "dvm.h"
|
|
#include "graph_calls.h"
|
|
|
|
void runPredictScheme(SgProject &project,
|
|
std::vector<std::vector<size_t>> &topologies,
|
|
const std::vector<ParallelRegion*> ¶llelRegions,
|
|
std::map<std::string, std::vector<LoopGraph*>>& loopGraph,
|
|
std::map<std::string, std::vector<Messages>> &SPF_messages);
|
|
|
|
double runLibpredictCalc(SgProject &project,
|
|
const std::vector<size_t>& topology,
|
|
const std::string& clusterConfStr,
|
|
const std::vector<ParallelRegion*> ¶llelRegions,
|
|
std::map<std::string, std::vector<LoopGraph*>>& loopGraph,
|
|
std::map<std::string, std::vector<Messages>> &SPF_messages,
|
|
const std::map<size_t, size_t> &templateIdMapping);
|