|
|
@ -22,20 +22,6 @@ limitations under the License. */
|
|
|
|
namespace paddle {
|
|
|
|
namespace paddle {
|
|
|
|
namespace framework {
|
|
|
|
namespace framework {
|
|
|
|
|
|
|
|
|
|
|
|
DDim InferShapeContext::GetInputDim(const std::string &name) const {
|
|
|
|
|
|
|
|
const std::vector<std::string> &arg_names = Inputs(name);
|
|
|
|
|
|
|
|
PADDLE_ENFORCE_EQ(arg_names.size(), 1UL,
|
|
|
|
|
|
|
|
"Input(%s) should hold one element, but now it holds %d",
|
|
|
|
|
|
|
|
name, arg_names.size());
|
|
|
|
|
|
|
|
return this->GetDim(arg_names[0]);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::vector<DDim> InferShapeContext::GetInputsDim(
|
|
|
|
|
|
|
|
const std::string &name) const {
|
|
|
|
|
|
|
|
const std::vector<std::string> &arg_names = Inputs(name);
|
|
|
|
|
|
|
|
return GetDims(arg_names);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::vector<DDim> InferShapeContext::GetReaderDims(
|
|
|
|
std::vector<DDim> InferShapeContext::GetReaderDims(
|
|
|
|
const std::string &name) const {
|
|
|
|
const std::string &name) const {
|
|
|
|
const std::vector<std::string> &arg_names = Inputs(name);
|
|
|
|
const std::vector<std::string> &arg_names = Inputs(name);
|
|
|
@ -46,12 +32,6 @@ std::vector<DDim> InferShapeContext::GetReaderDims(
|
|
|
|
return this->GetRepeatedDims(arg_names[0]);
|
|
|
|
return this->GetRepeatedDims(arg_names[0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
DDim InferShapeContext::GetInputsElementDim(const std::string &name,
|
|
|
|
|
|
|
|
int idx) const {
|
|
|
|
|
|
|
|
const std::vector<std::string> &names = Inputs(name);
|
|
|
|
|
|
|
|
return this->GetDim(names[idx]);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InferShapeContext::SetOutputDim(const std::string &name, const DDim &dim) {
|
|
|
|
void InferShapeContext::SetOutputDim(const std::string &name, const DDim &dim) {
|
|
|
|
auto &arg_names = Outputs(name);
|
|
|
|
auto &arg_names = Outputs(name);
|
|
|
|
PADDLE_ENFORCE_EQ(arg_names.size(), 1UL,
|
|
|
|
PADDLE_ENFORCE_EQ(arg_names.size(), 1UL,
|
|
|
@ -76,16 +56,6 @@ void InferShapeContext::SetReaderDims(const std::string &name,
|
|
|
|
return this->SetRepeatedDims(arg_names[0], dims);
|
|
|
|
return this->SetRepeatedDims(arg_names[0], dims);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::vector<DDim> InferShapeContext::GetDims(
|
|
|
|
|
|
|
|
const std::vector<std::string> &names) const {
|
|
|
|
|
|
|
|
std::vector<DDim> ret;
|
|
|
|
|
|
|
|
ret.reserve(names.size());
|
|
|
|
|
|
|
|
std::transform(
|
|
|
|
|
|
|
|
names.begin(), names.end(), std::back_inserter(ret),
|
|
|
|
|
|
|
|
[this](const std::string &name) { return this->GetDim(name); });
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InferShapeContext::SetDims(const std::vector<std::string> &names,
|
|
|
|
void InferShapeContext::SetDims(const std::vector<std::string> &names,
|
|
|
|
const std::vector<DDim> &dims) {
|
|
|
|
const std::vector<DDim> &dims) {
|
|
|
|
size_t length = names.size();
|
|
|
|
size_t length = names.size();
|
|
|
|