request_handler_impl.h 2.5 KB
Newer Older
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
// Copyright (c) 2018 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.

#pragma once

#include <time.h>

#include <functional>
#include <string>
#include <utility>
#include <vector>

#include "paddle/fluid/framework/data_type.h"
#include "paddle/fluid/framework/executor.h"
#include "paddle/fluid/framework/lod_tensor.h"
#include "paddle/fluid/framework/program_desc.h"
#include "paddle/fluid/framework/scope.h"
#include "paddle/fluid/framework/selected_rows.h"
#include "paddle/fluid/framework/var_type.h"
31
#include "paddle/fluid/operators/distributed/request_handler.h"
32 33 34

namespace paddle {
namespace operators {
35
namespace distributed {
36 37 38 39 40 41

class RequestSendHandler final : public RequestHandler {
 public:
  explicit RequestSendHandler(bool sync_mode) : RequestHandler(sync_mode) {}
  virtual ~RequestSendHandler() {}
  bool Handle(const std::string& varname, framework::Scope* scope,
Q
qiaolongfei 已提交
42 43
              framework::Variable* var, framework::Variable** outvar,
              const std::string& out_var_name = "") override;
Y
Yancey1989 已提交
44 45 46 47 48
  void ResetSparseVarRecorder();

 private:
  std::mutex mutex_sparse_vars_;
  std::vector<framework::Variable*> sparse_vars_;
49 50 51 52 53 54 55
};

class RequestGetHandler final : public RequestHandler {
 public:
  explicit RequestGetHandler(bool sync_mode) : RequestHandler(sync_mode) {}
  virtual ~RequestGetHandler() {}
  bool Handle(const std::string& varname, framework::Scope* scope,
Q
qiaolongfei 已提交
56 57
              framework::Variable* var, framework::Variable** outvar,
              const std::string& out_var_name = "") override;
58 59 60 61 62 63 64
};

class RequestPrefetchHandler final : public RequestHandler {
 public:
  explicit RequestPrefetchHandler(bool sync_mode) : RequestHandler(sync_mode) {}
  virtual ~RequestPrefetchHandler() {}
  bool Handle(const std::string& varname, framework::Scope* scope,
Q
qiaolongfei 已提交
65 66
              framework::Variable* var, framework::Variable** outvar,
              const std::string& out_var_name = "") override;
67 68
};

69
}  // namespace distributed
70 71
}  // namespace operators
}  // namespace paddle