You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
199 lines
6.3 KiB
199 lines
6.3 KiB
// Copyright (c) 2020 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 <string>
|
|
#include <vector>
|
|
#include "paddle/fluid/framework/operator.h"
|
|
#include "paddle/fluid/framework/type_defs.h"
|
|
#include "paddle/fluid/framework/variable.h"
|
|
#include "paddle/fluid/imperative/type_defs.h"
|
|
|
|
namespace paddle {
|
|
namespace imperative {
|
|
|
|
template <typename VarType>
|
|
class DygraphExecutionContext : public framework::ExecutionContext {
|
|
using Variable = framework::Variable;
|
|
|
|
public:
|
|
DygraphExecutionContext(const framework::OperatorBase& op,
|
|
const framework::Scope& scope,
|
|
const platform::DeviceContext& device_context,
|
|
const framework::RuntimeContext& ctx,
|
|
const NameVarMap<VarType>& var_base_map_in,
|
|
const NameVarMap<VarType>& var_base_map_out,
|
|
const framework::AttributeMap& attrs)
|
|
: ExecutionContext(op, scope, device_context, ctx),
|
|
var_base_map_in_(var_base_map_in),
|
|
var_base_map_out_(var_base_map_out),
|
|
attrs_(attrs) {}
|
|
|
|
std::string InputName(const std::string& name) const override {
|
|
auto it = var_base_map_in_.find(name);
|
|
PADDLE_ENFORCE_NE(it, var_base_map_in_.end(),
|
|
platform::errors::PreconditionNotMet(
|
|
"Can not find [%s] in Input", name));
|
|
return it->second[0] ? it->second[0]->Name() : framework::kEmptyVarName;
|
|
}
|
|
|
|
std::vector<std::string> InputNames(const std::string& name) const override {
|
|
auto it = var_base_map_in_.find(name);
|
|
PADDLE_ENFORCE_NE(
|
|
it, var_base_map_in_.end(),
|
|
platform::errors::NotFound("Can not find [%s] in Input", name));
|
|
std::vector<std::string> vec_res;
|
|
vec_res.reserve(it->second.size());
|
|
for (size_t i = 0; i < it->second.size(); ++i) {
|
|
if (it->second[i]) {
|
|
vec_res.push_back(it->second[i]->Name());
|
|
} else {
|
|
vec_res.push_back(framework::kEmptyVarName);
|
|
}
|
|
}
|
|
return vec_res;
|
|
}
|
|
|
|
std::string OutputName(const std::string& name) const override {
|
|
auto it = var_base_map_out_.find(name);
|
|
PADDLE_ENFORCE_NE(
|
|
it, var_base_map_out_.end(),
|
|
platform::errors::NotFound("Can not find [%s] in Output", name));
|
|
return it->second[0] ? it->second[0]->Name() : framework::kEmptyVarName;
|
|
}
|
|
|
|
std::vector<std::string> OutputNames(const std::string& name) const override {
|
|
auto it = var_base_map_out_.find(name);
|
|
PADDLE_ENFORCE_NE(
|
|
it, var_base_map_out_.end(),
|
|
platform::errors::NotFound("Can not find [%s] in Output", name));
|
|
std::vector<std::string> vec_res;
|
|
vec_res.reserve(it->second.size());
|
|
for (size_t i = 0; i < it->second.size(); ++i) {
|
|
if (it->second[i]) {
|
|
vec_res.push_back(it->second[i]->Name());
|
|
} else {
|
|
vec_res.push_back(framework::kEmptyVarName);
|
|
}
|
|
}
|
|
return vec_res;
|
|
}
|
|
|
|
bool HasAttr(const std::string& name) const override {
|
|
return attrs_.count(name) != 0;
|
|
}
|
|
|
|
const framework::AttributeMap& Attrs() const override { return attrs_; }
|
|
|
|
const framework::Attribute& GetAttr(const std::string& name) const override {
|
|
auto it = attrs_.find(name);
|
|
|
|
PADDLE_ENFORCE_NE(
|
|
it, attrs_.end(),
|
|
platform::errors::NotFound("can not find [%s] in attrs", name));
|
|
|
|
return it->second;
|
|
}
|
|
|
|
std::vector<std::string> InNameList() const override {
|
|
std::vector<std::string> vec_temp;
|
|
vec_temp.reserve(var_base_map_in_.size());
|
|
|
|
for (auto& v : var_base_map_in_) {
|
|
vec_temp.push_back(v.first);
|
|
}
|
|
|
|
return vec_temp;
|
|
}
|
|
|
|
bool HasInput(const std::string& name) const override {
|
|
auto it = var_base_map_in_.find(name);
|
|
return (it != var_base_map_in_.end() && it->second.size() > 0);
|
|
}
|
|
|
|
bool HasOutput(const std::string& name) const override {
|
|
auto it = var_base_map_out_.find(name);
|
|
return (it != var_base_map_out_.end() && it->second.size() > 0);
|
|
}
|
|
|
|
size_t InputSize(const std::string& name) const override {
|
|
return InputNames(name).size();
|
|
}
|
|
|
|
size_t OutputSize(const std::string& name) const override {
|
|
return OutputNames(name).size();
|
|
}
|
|
|
|
const Variable* InputVar(const std::string& name) const override {
|
|
auto it = var_base_map_in_.find(name);
|
|
if (it == var_base_map_in_.end()) {
|
|
return nullptr;
|
|
}
|
|
|
|
return it->second.empty() || it->second[0] == nullptr
|
|
? nullptr
|
|
: it->second[0]->MutableVar();
|
|
}
|
|
|
|
Variable* OutputVar(const std::string& name) const override {
|
|
auto it = var_base_map_out_.find(name);
|
|
if (it == var_base_map_out_.end()) {
|
|
return nullptr;
|
|
}
|
|
|
|
return it->second.empty() || it->second[0] == nullptr
|
|
? nullptr
|
|
: it->second[0]->MutableVar();
|
|
}
|
|
|
|
const std::vector<Variable*> MultiInputVar(
|
|
const std::string& name) const override {
|
|
auto it = var_base_map_in_.find(name);
|
|
if (it == var_base_map_in_.end()) {
|
|
return {};
|
|
}
|
|
std::vector<Variable*> vec_res;
|
|
vec_res.reserve(it->second.size());
|
|
for (size_t i = 0; i < it->second.size(); ++i) {
|
|
vec_res.push_back(it->second[i] ? it->second[i]->MutableVar() : nullptr);
|
|
}
|
|
|
|
return vec_res;
|
|
}
|
|
|
|
std::vector<Variable*> MultiOutputVar(
|
|
const std::string& name) const override {
|
|
auto it = var_base_map_out_.find(name);
|
|
if (it == var_base_map_out_.end()) {
|
|
return {};
|
|
}
|
|
std::vector<Variable*> vec_res;
|
|
vec_res.reserve(it->second.size());
|
|
for (size_t i = 0; i < it->second.size(); ++i) {
|
|
vec_res.push_back(it->second[i] ? it->second[i]->MutableVar() : nullptr);
|
|
}
|
|
|
|
return vec_res;
|
|
}
|
|
|
|
private:
|
|
const NameVarMap<VarType>& var_base_map_in_;
|
|
const NameVarMap<VarType>& var_base_map_out_;
|
|
const framework::AttributeMap& attrs_;
|
|
};
|
|
|
|
} // namespace imperative
|
|
} // namespace paddle
|