/* 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" #include "operators/op_param.h" namespace paddle_mobile { namespace framework { template vector OperatorBase::GetOutKeys() 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.second; } template static T *GetVarValue(const string &key, const VariableNameMap &var_map, const Scope &scope) { auto var_vec = var_map.at(key); if (!var_vec.empty()) { auto var = scope.FindVar(var_vec[0]); return var->GetMutable(); } else { return nullptr; } } template OperatorBase::OperatorBase(const std::string &type, const VariableNameMap &inputs, const VariableNameMap &outputs, const AttributeMap &attrs, std::shared_ptr scope) : type_(type), inputs_(inputs), outputs_(outputs), attrs_(attrs), scope_(scope) { CheckAllInputOutputSet(); } template void OperatorBase::CheckAllInputOutputSet() const {} template void OperatorBase::Run() const { RunImpl(); #ifdef PADDLE_MOBILE_DEBUG vector output_keys = GetOutKeys(); for (const auto key : output_keys) { Tensor *out_ = GetVarValue(key, outputs_, *scope_); DLOG << type_ << " output- " << key << "=" << *out_; } #endif } template class OperatorBase; template class OperatorWithKernel; } // namespace framework } // namespace paddle_mobile