commit
1431f25196
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,54 @@
|
|||||||
|
/* Copyright (c) 2016 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 "paddle/framework/shape_inference.h"
|
||||||
|
|
||||||
|
namespace paddle {
|
||||||
|
namespace framework {
|
||||||
|
|
||||||
|
std::vector<framework::DDim> InferShapeContext::GetInputsDim(
|
||||||
|
const std::string &name) const {
|
||||||
|
const std::vector<std::string> &names = Inputs(name);
|
||||||
|
return GetDims(names);
|
||||||
|
}
|
||||||
|
|
||||||
|
void InferShapeContext::SetOutputsDim(
|
||||||
|
const std::string &name, const std::vector<framework::DDim> &dims) {
|
||||||
|
auto &names = Outputs(name);
|
||||||
|
SetDims(names, dims);
|
||||||
|
}
|
||||||
|
|
||||||
|
void InferShapeContext::ShareLoD(const std::string &in, const std::string &out,
|
||||||
|
size_t i, size_t j) const {}
|
||||||
|
|
||||||
|
std::vector<framework::DDim> InferShapeContext::GetDims(
|
||||||
|
const std::vector<std::string> &names) const {
|
||||||
|
std::vector<framework::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,
|
||||||
|
const std::vector<framework::DDim> &dims) {
|
||||||
|
size_t length = names.size();
|
||||||
|
PADDLE_ENFORCE_EQ(length, dims.size());
|
||||||
|
for (size_t i = 0; i < length; ++i) {
|
||||||
|
SetDim(names[i], dims[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace framework
|
||||||
|
} // namespace paddle
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue