send_op_handle.cc 1.4 KB
Newer Older
T
typhoonzero 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
//   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.

#include "paddle/fluid/framework/details/send_op_handle.h"

namespace paddle {
namespace framework {
namespace details {

T
wip  
typhoonzero 已提交
21
SendOpHandle::SendOpHandle(const framework::OpDesc &op_desc,
T
finish  
typhoonzero 已提交
22 23
                           const Scope *local_scope,
                           const platform::Place &place)
T
wip  
typhoonzero 已提交
24
    : op_(framework::OpRegistry::CreateOp(op_desc)),
T
finish  
typhoonzero 已提交
25 26
      local_scope_(local_scope),
      place_(place) {}
T
typhoonzero 已提交
27 28

void SendOpHandle::RunImpl() {
T
wip  
typhoonzero 已提交
29 30 31
  // Wait input done
  for (auto *in : inputs_) {
    auto &p = static_cast<VarHandle *>(in)->place_;
T
finish  
typhoonzero 已提交
32 33 34
    if (in->DebugString() == "dummy") {  // HACK
      continue;
    }
T
wip  
typhoonzero 已提交
35
    in->generated_op_->Wait(dev_ctxes_[p]);
T
typhoonzero 已提交
36
  }
Y
Yu Yang 已提交
37
  this->RunAndRecordEvent([&] { op_->Run(*local_scope_, place_); });
T
typhoonzero 已提交
38 39
}

T
wip  
typhoonzero 已提交
40
std::string SendOpHandle::Name() const { return "send"; }
T
typhoonzero 已提交
41 42 43
}  // namespace details
}  // namespace framework
}  // namespace paddle