marge_regions: rename
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
#include "parse_merge_dirs.h"
|
||||
#include "merge_regions.h"
|
||||
|
||||
#include <unordered_set>
|
||||
|
||||
@@ -360,7 +360,7 @@ static void replaceRegion(SgStatement* st, const unordered_map<string, string> &
|
||||
}
|
||||
}
|
||||
|
||||
void mergeCopyArrays(vector<ParallelRegion *> ®ions, const map<string, vector<FuncInfo *>> &allFuncInfo)
|
||||
void mergeRegions(vector<ParallelRegion *> ®ions, const map<string, vector<FuncInfo *>> &allFuncInfo)
|
||||
{
|
||||
for (const auto *region : regions)
|
||||
{
|
||||
8
src/ParallelizationRegions/merge_regions.h
Normal file
8
src/ParallelizationRegions/merge_regions.h
Normal file
@@ -0,0 +1,8 @@
|
||||
#include "../GraphCall/graph_calls.h"
|
||||
#include "ParRegions.h"
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <map>
|
||||
|
||||
void mergeRegions(std::vector<ParallelRegion*> ®ions, const std::map<std::string, std::vector<FuncInfo*>> &allFuncInfo);
|
||||
@@ -1,8 +0,0 @@
|
||||
#include "../GraphCall/graph_calls.h"
|
||||
#include "ParRegions.h"
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <map>
|
||||
|
||||
void mergeCopyArrays(std::vector<ParallelRegion*> ®ions, const std::map<std::string, std::vector<FuncInfo*>> &allFuncInfo);
|
||||
Reference in New Issue
Block a user