request_handler_impl.cc 6.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// 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.

W
Wang Guibao 已提交
15
#include "paddle/fluid/operators/distributed/request_handler_impl.h"
16 17 18 19 20 21 22 23
#include <iostream>
#include <string>
#include <vector>

#include "paddle/fluid/framework/data_type.h"
#include "paddle/fluid/framework/lod_tensor.h"
#include "paddle/fluid/framework/scope.h"
#include "paddle/fluid/framework/selected_rows.h"
W
Wang Guibao 已提交
24
#include "paddle/fluid/framework/variable_helper.h"
25
#include "paddle/fluid/operators/distributed/rpc_server.h"
T
tangwei12 已提交
26
#include "paddle/fluid/string/printf.h"
27 28 29

namespace paddle {
namespace operators {
30
namespace distributed {
31

T
tangwei12 已提交
32 33
// define LOOKUP_TABLE_PATH for checkpoint notify to save lookup table variables
// to directory specified.
T
tangwei12 已提交
34
constexpr char LOOKUP_TABLE_PATH[] = "kLookupTablePath";
T
tangwei12 已提交
35

36 37 38
bool RequestSendHandler::Handle(const std::string& varname,
                                framework::Scope* scope,
                                framework::Variable* invar,
Q
qiaolongfei 已提交
39
                                framework::Variable** outvar,
W
Wu Yi 已提交
40
                                const int trainer_id,
Q
Qiao Longfei 已提交
41 42
                                const std::string& out_var_name,
                                const std::string& table_name) {
M
minqiyang 已提交
43
  VLOG(4) << "RequestSendHandler:" << varname;
44 45 46

  // Sync
  if (varname == BATCH_BARRIER_MESSAGE) {
M
minqiyang 已提交
47
    VLOG(3) << "sync: recv BATCH_BARRIER_MESSAGE";
48
    rpc_server_->IncreaseBatchBarrier(kRequestSend);
Y
Yancey1989 已提交
49
  } else if (varname == COMPLETE_MESSAGE) {
M
minqiyang 已提交
50
    VLOG(3) << "sync: recv complete message";
Y
Yancey1989 已提交
51
    rpc_server_->Complete();
52
  } else {
53 54
    // Async
    if (!sync_mode_) {
M
minqiyang 已提交
55
      VLOG(3) << "async process var: " << varname;
56 57 58 59 60 61 62 63 64 65
      try {
        executor_->RunPreparedContext((*grad_to_prepared_ctx_)[varname].get(),
                                      scope);
      } catch (std::exception& e) {
        LOG(ERROR) << "async: run sub program error " << e.what();
        return false;
      }
      return true;
    } else {  // sync
      rpc_server_->WaitCond(kRequestSend);
M
minqiyang 已提交
66
      VLOG(3) << "sync: processing received var: " << varname;
67

68 69 70 71
      if (invar == nullptr) {
        LOG(FATAL) << "sync: Can not find server side var: " << varname;
        return false;
      }
Y
Yancey1989 已提交
72
    }
73 74 75 76 77 78 79
  }
  return true;
}

bool RequestGetHandler::Handle(const std::string& varname,
                               framework::Scope* scope,
                               framework::Variable* invar,
Q
qiaolongfei 已提交
80
                               framework::Variable** outvar,
W
Wu Yi 已提交
81
                               const int trainer_id,
Q
Qiao Longfei 已提交
82 83
                               const std::string& out_var_name,
                               const std::string& table_name) {
M
minqiyang 已提交
84
  VLOG(4) << "RequestGetHandler:" << varname;
85

Y
Yancey1989 已提交
86 87
  if (sync_mode_) {
    if (varname == FETCH_BARRIER_MESSAGE) {
M
minqiyang 已提交
88
      VLOG(3) << "sync: recv fetch barrier message";
Y
Yancey1989 已提交
89 90
      rpc_server_->IncreaseBatchBarrier(kRequestGet);
    } else {
91
      rpc_server_->WaitCond(kRequestGet);
Y
Yancey1989 已提交
92 93 94
      *outvar = scope_->FindVar(varname);
    }
  } else {
Y
Yancey1989 已提交
95
    if (varname != FETCH_BARRIER_MESSAGE && varname != COMPLETE_MESSAGE) {
W
Wu Yi 已提交
96 97 98 99
      if (enable_dc_asgd_) {
        // NOTE: the format is determined by distributed_transpiler.py
        std::string param_bak_name =
            string::Sprintf("%s.trainer_%d_bak", varname, trainer_id);
M
minqiyang 已提交
100
        VLOG(3) << "getting " << param_bak_name << " trainer_id " << trainer_id;
W
Wu Yi 已提交
101 102 103 104 105
        auto var = scope_->FindVar(varname);
        auto t_orig = var->Get<framework::LoDTensor>();
        auto param_bak = scope_->Var(param_bak_name);
        auto t = param_bak->GetMutable<framework::LoDTensor>();
        t->mutable_data(dev_ctx_->GetPlace(), t_orig.type());
M
minqiyang 已提交
106
        VLOG(3) << "copying " << varname << " to " << param_bak_name;
W
Wu Yi 已提交
107 108
        framework::TensorCopy(t_orig, dev_ctx_->GetPlace(), t);
      }
Y
Yancey1989 已提交
109
      *outvar = scope_->FindVar(varname);
110 111 112 113 114 115 116 117
    }
  }
  return true;
}

bool RequestPrefetchHandler::Handle(const std::string& varname,
                                    framework::Scope* scope,
                                    framework::Variable* invar,
Q
qiaolongfei 已提交
118
                                    framework::Variable** outvar,
W
Wu Yi 已提交
119
                                    const int trainer_id,
Q
Qiao Longfei 已提交
120 121
                                    const std::string& out_var_name,
                                    const std::string& table_name) {
M
minqiyang 已提交
122
  VLOG(4) << "RequestPrefetchHandler " << varname;
123

Q
Qiao Longfei 已提交
124
  if (table_name.empty()) {
Q
Qiao Longfei 已提交
125 126
    auto var_desc = program_->Block(0).FindVar(out_var_name);
    InitializeVariable(*outvar, var_desc->GetType());
Q
Qiao Longfei 已提交
127 128 129
    executor_->RunPreparedContext(
        (*prefetch_var_name_to_prepared_ctx_)[varname].get(), scope);
  } else {
Q
Qiao Longfei 已提交
130
    (*outvar)->GetMutable<framework::LoDTensor>();
Q
Qiao Longfei 已提交
131 132 133 134 135
    auto lookup_table_op =
        BuildLookupTableOp(table_name, varname, out_var_name);
    paddle::platform::CPUPlace cpu_place;
    lookup_table_op->Run(*scope, cpu_place);
  }
136 137 138
  return true;
}

T
tangwei12 已提交
139 140 141 142
bool RequestCheckpointHandler::Handle(const std::string& varname,
                                      framework::Scope* scope,
                                      framework::Variable* invar,
                                      framework::Variable** outvar,
W
Wu Yi 已提交
143
                                      const int trainer_id,
Q
Qiao Longfei 已提交
144 145
                                      const std::string& out_var_name,
                                      const std::string& table_name) {
146 147 148
  PADDLE_ENFORCE(
      checkpoint_notify_id != -1,
      "when checkpoint_notify_id = -1, there should be no RPC invoke.");
T
tangwei12 已提交
149

T
tangwei12 已提交
150
  // TODO(tangwei12): find out why scope will be error.
T
bug fix  
tangwei12 已提交
151
  auto* lt_var = scope_->FindVar(LOOKUP_TABLE_PATH)->GetMutable<std::string>();
T
tangwei12 已提交
152 153
  lt_var->clear();
  lt_var->append(out_var_name);
M
minqiyang 已提交
154 155
  VLOG(4) << "RequestCheckpointHandler update var kLookupTablePath to: "
          << out_var_name;
T
bug fix  
tangwei12 已提交
156
  executor_->RunPreparedContext(checkpoint_prepared_ctx_.get(), scope_);
T
bug fix  
tangwei12 已提交
157 158
  return true;
}
T
tangwei12 已提交
159

160
}  // namespace distributed
161 162
}  // namespace operators
}  // namespace paddle