operator.cpp 2.5 KB
Newer Older
Z
zhaojiaying01 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* 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 "framework/operator.h"
16
#include "operators/op_param.h"
朔-望's avatar
朔-望 已提交
17 18

namespace paddle_mobile {
朔-望's avatar
朔-望 已提交
19
namespace framework {
朔-望's avatar
朔-望 已提交
20

21 22 23 24 25
template <typename Dtype>
vector<string> OperatorBase<Dtype>::GetOutKeys() const {
  auto it = op_input_output_key.find(type_);
  if (it == op_input_output_key.end()) {
    DLOG << type_ << " has no outputs";
26
    return {};
27 28 29 30
  }
  return it->second.second;
}

31 32 33 34 35 36 37 38 39 40
template <typename Dtype>
vector<string> OperatorBase<Dtype>::GetInputKeys() const {
  auto it = op_input_output_key.find(type_);
  if (it == op_input_output_key.end()) {
    DLOG << type_ << " has no outputs";
    return {};
  }
  return it->second.first;
}

朔-望's avatar
朔-望 已提交
41 42 43 44 45 46
template <typename Dtype>
OperatorBase<Dtype>::OperatorBase(const std::string &type,
                                  const VariableNameMap &inputs,
                                  const VariableNameMap &outputs,
                                  const AttributeMap &attrs,
                                  std::shared_ptr<Scope> scope)
朔-望's avatar
朔-望 已提交
47 48 49 50
    : type_(type),
      inputs_(inputs),
      outputs_(outputs),
      attrs_(attrs),
朔-望's avatar
朔-望 已提交
51
      scope_(scope) {
52
  CheckAllInputOutputSet();
朔-望's avatar
朔-望 已提交
53
}
54

朔-望's avatar
朔-望 已提交
55 56
template <typename Dtype>
void OperatorBase<Dtype>::CheckAllInputOutputSet() const {}
W
wangliu 已提交
57

58 59 60
template <typename Dtype>
void OperatorBase<Dtype>::Run() const {
  RunImpl();
W
wangliu 已提交
61
#ifdef PADDLE_MOBILE_DEBUG
62 63 64
  vector<string> input_keys = GetInputKeys();
  for (const auto key : input_keys) {
    Tensor *input = GetVarValue<framework::LoDTensor>(key, inputs_, *scope_);
xiebaiyuan's avatar
xiebaiyuan 已提交
65
    if (input) DLOG << type_ << " input- " << key << "=" << *input;
66
  }
67 68 69 70 71 72 73 74
  vector<string> output_keys = GetOutKeys();
  for (const auto key : output_keys) {
    Tensor *out_ = GetVarValue<framework::LoDTensor>(key, outputs_, *scope_);
    DLOG << type_ << " output- " << key << "=" << *out_;
  }
#endif
}

朔-望's avatar
朔-望 已提交
75
template class OperatorBase<CPU>;
L
for  
liuruilong 已提交
76 77 78
template class OperatorBase<FPGA>;
template class OperatorBase<GPU_MALI>;

朔-望's avatar
朔-望 已提交
79 80
}  // namespace framework
}  // namespace paddle_mobile