|
|
|
@ -161,22 +161,30 @@ class OperatorContext {
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
const T* Input(const size_t index) const {
|
|
|
|
|
return &(InputVar(index)->Get<T>());
|
|
|
|
|
auto var = InputVar(index);
|
|
|
|
|
PADDLE_ENFORCE(var != nullptr, "Input(%d) should not be nullptr", index);
|
|
|
|
|
return &var->Get<T>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
T* Output(const size_t index) const {
|
|
|
|
|
return OutputVar(index)->GetMutable<T>();
|
|
|
|
|
auto var = OutputVar(index);
|
|
|
|
|
PADDLE_ENFORCE(var != nullptr, "Output(%d) should not be nullptr", index);
|
|
|
|
|
return var->GetMutable<T>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
const T* Input(const std::string& name) const {
|
|
|
|
|
return &(InputVar(name)->Get<T>());
|
|
|
|
|
auto var = InputVar(name);
|
|
|
|
|
PADDLE_ENFORCE(var != nullptr, "Input(%s) should not be nullptr", name);
|
|
|
|
|
return &var->Get<T>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
T* Output(const std::string& name) const {
|
|
|
|
|
return OutputVar(name)->GetMutable<T>();
|
|
|
|
|
auto var = OutputVar(name);
|
|
|
|
|
PADDLE_ENFORCE(var != nullptr, "Output(%s) should not be nullptr", name);
|
|
|
|
|
return var->GetMutable<T>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
@ -185,8 +193,12 @@ class OperatorContext {
|
|
|
|
|
std::vector<const T*> res;
|
|
|
|
|
res.reserve(names.size());
|
|
|
|
|
std::transform(names.begin(), names.end(), std::back_inserter(res),
|
|
|
|
|
[this](const std::string& name) {
|
|
|
|
|
return &scope_.FindVar(name)->Get<T>();
|
|
|
|
|
[&](const std::string& sub_name) {
|
|
|
|
|
auto var = scope_.FindVar(sub_name);
|
|
|
|
|
PADDLE_ENFORCE(var != nullptr,
|
|
|
|
|
"MultiInput(%s:%s) should not be nullptr",
|
|
|
|
|
name, sub_name);
|
|
|
|
|
return &var->Get<T>();
|
|
|
|
|
});
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
@ -197,8 +209,12 @@ class OperatorContext {
|
|
|
|
|
std::vector<const T*> res;
|
|
|
|
|
res.reserve(names.size());
|
|
|
|
|
std::transform(names.begin(), names.end(), std::back_inserter(res),
|
|
|
|
|
[this](const std::string& name) {
|
|
|
|
|
return scope_.FindVar(name)->GetMutable<T>();
|
|
|
|
|
[&](const std::string& sub_name) {
|
|
|
|
|
auto var = scope_.FindVar(sub_name);
|
|
|
|
|
PADDLE_ENFORCE(var != nullptr,
|
|
|
|
|
"MultiOutput(%s:%s) should not be nullptr",
|
|
|
|
|
name, sub_name);
|
|
|
|
|
return var->GetMutable<T>();
|
|
|
|
|
});
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|