Skip to content

Commit caa45c1

Browse files
committed
#276: greedylb: remove old message no longer needed
1 parent 4af5e3b commit caa45c1

File tree

1 file changed

+0
-23
lines changed

1 file changed

+0
-23
lines changed

src/vt/vrt/collection/balance/greedylb/greedylb_msgs.h

-23
Original file line numberDiff line numberDiff line change
@@ -106,29 +106,6 @@ struct GreedyPayload : GreedyLBTypes {
106106
ObjSampleType sample_;
107107
};
108108

109-
struct GreedyCollectMsg : GreedyLBTypes, collective::ReduceTMsg<GreedyPayload> {
110-
using MessageParentType = collective::ReduceTMsg<GreedyPayload>;
111-
vt_msg_serialize_required(); // prev. serialize(1)
112-
113-
GreedyCollectMsg() = default;
114-
GreedyCollectMsg(ObjSampleType const& in_load, LoadType const& in_profile)
115-
: collective::ReduceTMsg<GreedyPayload>(GreedyPayload{in_load,in_profile})
116-
{ }
117-
118-
template <typename SerializerT>
119-
void serialize(SerializerT& s) {
120-
MessageParentType::serialize(s);
121-
}
122-
123-
ObjSampleType const& getModeledLoad() const {
124-
return collective::ReduceTMsg<GreedyPayload>::getConstVal().getSample();
125-
}
126-
127-
ObjSampleType&& getLoadMove() {
128-
return collective::ReduceTMsg<GreedyPayload>::getVal().getSampleMove();
129-
}
130-
};
131-
132109
struct GreedySendMsg : GreedyLBTypes, vt::Message {
133110
using MessageParentType = vt::Message;
134111
vt_msg_serialize_required(); // vector

0 commit comments

Comments
 (0)