Clean `sendop` `recv` operator. (#11309)
parent
fa29ef0b0d
commit
627d7a64f8
@ -1,101 +0,0 @@
|
||||
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License. */
|
||||
|
||||
#include <future> // NOLINT
|
||||
#include <ostream>
|
||||
|
||||
#include "paddle/fluid/framework/data_type.h"
|
||||
#include "paddle/fluid/framework/lod_tensor.h"
|
||||
#include "paddle/fluid/framework/op_registry.h"
|
||||
#include "paddle/fluid/operators/detail/grpc_client.h"
|
||||
#include "paddle/fluid/operators/send_recv_util.h"
|
||||
#include "paddle/fluid/platform/profiler.h"
|
||||
|
||||
namespace paddle {
|
||||
namespace operators {
|
||||
|
||||
class SendVarsOp : public framework::OperatorBase {
|
||||
public:
|
||||
SendVarsOp(const std::string& type, const framework::VariableNameMap& inputs,
|
||||
const framework::VariableNameMap& outputs,
|
||||
const framework::AttributeMap& attrs)
|
||||
: OperatorBase(type, inputs, outputs, attrs) {}
|
||||
|
||||
void RunImpl(const framework::Scope& scope,
|
||||
const platform::Place& place) const override {
|
||||
auto ins = Inputs("X");
|
||||
|
||||
std::vector<std::string> epmap = Attr<std::vector<std::string>>("epmap");
|
||||
int sync_send = Attr<int>("sync_send");
|
||||
|
||||
platform::DeviceContextPool& pool = platform::DeviceContextPool::Instance();
|
||||
auto& ctx = *pool.Get(place);
|
||||
|
||||
// For profiling
|
||||
platform::RecordEvent record_event(Type(), &ctx);
|
||||
|
||||
detail::RPCClient* rpc_client =
|
||||
detail::RPCClient::GetInstance<detail::GRPCClient>();
|
||||
|
||||
for (size_t i = 0; i < ins.size(); i++) {
|
||||
if (NeedSend(scope, ins[i])) {
|
||||
VLOG(3) << "sending " << ins[i] << " to " << epmap[i];
|
||||
// TODO(Yancey1989): we need to use an IO threadpool which has
|
||||
// a larger number of threads than the computing threadpool.
|
||||
rpc_client->AsyncSendVar(epmap[i], ctx, scope, ins[i]);
|
||||
} else {
|
||||
VLOG(3) << "don't send no-initialied variable: " << ins[i];
|
||||
}
|
||||
}
|
||||
if (sync_send) {
|
||||
rpc_client->Wait();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
class SendVarsOpMaker : public framework::OpProtoAndCheckerMaker {
|
||||
public:
|
||||
void Make() {
|
||||
AddInput("X", "(Tensor, SelectedRows) Input variables to be sent")
|
||||
.AsDuplicable();
|
||||
AddComment(R"DOC(
|
||||
Send operator
|
||||
|
||||
This operator will send variables to listen_and_serve op at the parameter server.
|
||||
)DOC");
|
||||
AddAttr<int>("sync_send",
|
||||
"(int, default 0)"
|
||||
"sync send or async send.")
|
||||
.SetDefault(0);
|
||||
AddAttr<std::vector<std::string>>("epmap",
|
||||
"(string vector, default 127.0.0.1:6164)"
|
||||
"Server endpoints in the order of input "
|
||||
"variables for mapping")
|
||||
.SetDefault({"127.0.0.1:6164"});
|
||||
}
|
||||
};
|
||||
|
||||
class SendVarsOpShapeInference : public framework::InferShapeBase {
|
||||
public:
|
||||
void operator()(framework::InferShapeContext* ctx) const override {}
|
||||
};
|
||||
|
||||
} // namespace operators
|
||||
} // namespace paddle
|
||||
|
||||
namespace ops = paddle::operators;
|
||||
|
||||
REGISTER_OPERATOR(send_vars, ops::SendVarsOp,
|
||||
paddle::framework::EmptyGradOpMaker, ops::SendVarsOpMaker,
|
||||
ops::SendVarsOpShapeInference);
|
Loading…
Reference in new issue