-
Notifications
You must be signed in to change notification settings - Fork 28
/
HierarchOrbLB.cpp
127 lines (103 loc) · 2.89 KB
/
HierarchOrbLB.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/**
* Author: gplkrsh2@illinois.edu (Harshitha Menon)
* Hierarchical load balancer for ChaNGa. It has 3 level of tree where the top
* level applies either RefineLB or uses VectorStrategy. At level 1, it applies
* OrbLB_notopo.
*/
#include "Refiner.h"
#include "HierarchOrbLB.h"
#include "Orb3dLB_notopo.h"
#define DEBUGF(x) // CmiPrintf x;
#if CHARM_VERSION > 61002
static void lbinit()
{
LBRegisterBalancer<HierarchOrbLB>("HierarchOrbLB",
"Hybrid load balancer");
}
#else
CreateLBFunc_Def(HierarchOrbLB, "Hybrid load balancer")
extern BaseLB* AllocateOrb3dLB_notopo();
#endif
CkpvExtern(int, _lb_obj_index);
void HierarchOrbLB::init() {
lbname = (char *)"HierarchOrbLB";
thisProxy = CProxy_HierarchOrbLB(thisgroup);
}
HierarchOrbLB::HierarchOrbLB(const CkLBOptions &opt): CBase_HierarchOrbLB(opt) {
#if CMK_LBDB_ON
init();
// decide which load balancer to call
// IMPORTANT: currently, the greedy LB must allow objects that
// are not from existing processors.
#if CHARM_VERSION > 61002
orblb = (CentralLB *)new Orb3dLB_notopo(static_cast<CkMigrateMessage *>(nullptr));
#else
orblb = (CentralLB *)AllocateOrb3dLB_notopo();
#endif
initTree();
#endif
}
HierarchOrbLB::~HierarchOrbLB() {
delete orblb;
}
// only called on leaves
CLBStatsMsg* HierarchOrbLB::AssembleStats()
{
#if CMK_LBDB_ON
CLBStatsMsg* msg = HybridBaseLB::AssembleStats();
// Reset the background time
msg->bg_walltime = 0.0;
return msg;
#else
return NULL;
#endif
}
void HierarchOrbLB::refine(LDStats* stats)
{
int obj;
int n_pes = stats->nprocs();
const auto n_objs = stats->objData.size();
// get original object mapping
int* from_procs = Refiner::AllocProcs(n_pes, stats);
for(obj=0;obj<n_objs;obj++) {
int pe = stats->from_proc[obj];
from_procs[obj] = pe;
}
// Get a new buffer to refine into
int* to_procs = Refiner::AllocProcs(n_pes, stats);
Refiner refiner(1.05); // overload tolerance=1.05
refiner.Refine(n_pes, stats, from_procs, to_procs);
// Save output
for(obj=0;obj<n_objs;obj++) {
int pe = stats->from_proc[obj];
if (to_procs[obj] != pe) {
if (_lb_args.debug()>=2) {
CkPrintf("[%d] Obj %d migrating from %d to %d\n",
CkMyPe(),obj,pe,to_procs[obj]);
}
stats->to_proc[obj] = to_procs[obj];
}
}
if (_lb_args.metaLbOn()) {
stats->is_prev_lb_refine = 1;
stats->after_lb_avg = refiner.computeAverageLoad();
stats->after_lb_max = refiner.computeMax();
if (_lb_args.debug() > 0)
CkPrintf("RefineLB> Max load %lf Avg load %lf\n", stats->after_lb_max,
stats->after_lb_avg);
}
// Free the refine buffers
Refiner::FreeProcs(from_procs);
Refiner::FreeProcs(to_procs);
}
void HierarchOrbLB::work(LDStats* stats) {
#if CMK_LBDB_ON
LevelData *lData = levelData[currentLevel];
if (currentLevel == 1) {
orblb->work(stats);
}
else
refine(stats);
#endif
}
#include "HierarchOrbLB.def.h"