|
|
|
@ -17,90 +17,66 @@ limitations under the License. */
|
|
|
|
|
namespace paddle {
|
|
|
|
|
namespace operators {
|
|
|
|
|
|
|
|
|
|
class ReshapeOp : public framework::OperatorWithKernel {
|
|
|
|
|
public:
|
|
|
|
|
ReshapeOp(const std::string &type, const framework::VariableNameMap &inputs,
|
|
|
|
|
const framework::VariableNameMap &outputs,
|
|
|
|
|
const framework::AttributeMap &attrs)
|
|
|
|
|
: OperatorWithKernel(type, inputs, outputs, attrs) {}
|
|
|
|
|
|
|
|
|
|
void InferShape(framework::InferShapeContext *ctx) const override {
|
|
|
|
|
// input check
|
|
|
|
|
PADDLE_ENFORCE(ctx->HasInput("X"),
|
|
|
|
|
"Input(X) of ReshapeOp should not be null.");
|
|
|
|
|
PADDLE_ENFORCE(ctx->HasOutput("Out"),
|
|
|
|
|
"Output(Out) of ReshapeOp should not be null.");
|
|
|
|
|
|
|
|
|
|
auto shape = ctx->Attrs().Get<std::vector<int>>("shape");
|
|
|
|
|
PADDLE_ENFORCE(shape.size() > 0, "Attr(shape) shouldn't be empty.");
|
|
|
|
|
auto x_dims = ctx->GetInputDim("X");
|
|
|
|
|
|
|
|
|
|
std::vector<size_t> neg_dims_idx;
|
|
|
|
|
// set some dimension to -1 if it is unknown
|
|
|
|
|
const int unknown_size = -1;
|
|
|
|
|
for (size_t i = 0; i < shape.size(); ++i) {
|
|
|
|
|
PADDLE_ENFORCE(shape[i] > 0 || shape[i] == unknown_size,
|
|
|
|
|
"Each dimension of Attr(shape) must be positive or %d.",
|
|
|
|
|
unknown_size);
|
|
|
|
|
if (shape[i] == unknown_size) {
|
|
|
|
|
neg_dims_idx.push_back(i);
|
|
|
|
|
PADDLE_ENFORCE(neg_dims_idx.size() <= 1,
|
|
|
|
|
"Only one dimension of Attr(shape) can be unknown.");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int64_t capacity =
|
|
|
|
|
std::accumulate(shape.begin(), shape.end(), 1, std::multiplies<int>());
|
|
|
|
|
int64_t in_size = framework::product(x_dims);
|
|
|
|
|
if (neg_dims_idx.size() == 1) {
|
|
|
|
|
// dim infer
|
|
|
|
|
shape[neg_dims_idx[0]] = in_size / (-capacity);
|
|
|
|
|
// recalculate capacity
|
|
|
|
|
capacity = shape[neg_dims_idx[0]] * (-capacity);
|
|
|
|
|
}
|
|
|
|
|
// capacity check
|
|
|
|
|
PADDLE_ENFORCE(capacity == in_size,
|
|
|
|
|
"The size of Input(X) mismatches with Attr(shape).");
|
|
|
|
|
// resize output
|
|
|
|
|
std::vector<int64_t> shape_int64(shape.size(), 0);
|
|
|
|
|
std::transform(shape.begin(), shape.end(), shape_int64.begin(),
|
|
|
|
|
[](int a) { return static_cast<int64_t>(a); });
|
|
|
|
|
auto out_dims = framework::make_ddim(shape_int64);
|
|
|
|
|
ctx->SetOutputDim("Out", out_dims);
|
|
|
|
|
if (shape[0] == x_dims[0]) {
|
|
|
|
|
// Only pass LoD when the first dimension is equal between
|
|
|
|
|
// output and input.
|
|
|
|
|
ctx->ShareLoD("X", /*->*/ "Out");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class ReshapeOpMaker : public framework::OpProtoAndCheckerMaker {
|
|
|
|
|
public:
|
|
|
|
|
ReshapeOpMaker(OpProto *proto, OpAttrChecker *op_checker)
|
|
|
|
|
: OpProtoAndCheckerMaker(proto, op_checker) {
|
|
|
|
|
AddInput("X", "The input tensor of reshape operator.");
|
|
|
|
|
AddOutput("Out", "The output tensor of reshape operator.");
|
|
|
|
|
AddAttr<std::vector<int>>("shape",
|
|
|
|
|
"(vector<int>) "
|
|
|
|
|
"Target shape of reshape operator.");
|
|
|
|
|
AddInput("X", "(Tensor). The input tensor of reshape operator.");
|
|
|
|
|
AddInput("Shape",
|
|
|
|
|
"(Tensor<int32>, optional). If provided, reshape according to "
|
|
|
|
|
"this given shape. That is to say it has a higher priority than "
|
|
|
|
|
"the shape attribute, while the shape attribute still should be "
|
|
|
|
|
"set correctly to gurantee shape inference in compile time.")
|
|
|
|
|
.AsDispensable();
|
|
|
|
|
AddOutput("Out", "(Tensor). The output tensor of reshape operator.");
|
|
|
|
|
AddAttr<std::vector<int>>(
|
|
|
|
|
"shape", "(std::vector<int>) Target shape of reshape operator.");
|
|
|
|
|
AddAttr<bool>("inplace",
|
|
|
|
|
"Change the source tensor's shape without copy memory.")
|
|
|
|
|
.SetDefault(true);
|
|
|
|
|
"(default: false) Change the source tensor's shape without "
|
|
|
|
|
"memory copy. When Attr(inplace) is set true, the output "
|
|
|
|
|
"tensor shares memory with Input(X), otherwise, a new output "
|
|
|
|
|
"tensor is created, and its data are copied from Input(x).")
|
|
|
|
|
.SetDefault(false);
|
|
|
|
|
AddComment(R"DOC(
|
|
|
|
|
Reshape Operator.
|
|
|
|
|
|
|
|
|
|
Reshape Input(X) into the shape specified by Attr(shape).
|
|
|
|
|
Reshape Input(X) into the shape specified by Attr(shape) or Input(Shape). The
|
|
|
|
|
data in Input(X) are unchanged.
|
|
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
|
|
An example:
|
|
|
|
|
Given a 2-D tensor X with 2 rows and 2 columns : [[1, 2], [3, 4]]
|
|
|
|
|
1. Given a 3-D tensor Input(X) with a shape [2, 4, 6], and the target shape
|
|
|
|
|
specified by Attr(shape) is [6, 8], the reshape operator will transform Input(X)
|
|
|
|
|
into a 2-D tensor with shape [6, 8] and leaving Input(X)'s data unchanged.
|
|
|
|
|
|
|
|
|
|
and target shape = [1, 4], the reshape operator will transform
|
|
|
|
|
the tensor X into a 2-D tensor: [[1, 2, 3, 4]]
|
|
|
|
|
2. Given a 3-D tensor Input(X) with a shape [2, 4, 6], and the target shape
|
|
|
|
|
specified by Attr(shape) is [2, 3, -1, 2], the reshape operator will transform
|
|
|
|
|
Input(X) into a 4-D tensor with shape [2, 3, 4, 2] and leaving Input(X)'s data
|
|
|
|
|
unchanged. In this case, one and only dimension of Attr(shape) can be set to -1,
|
|
|
|
|
the value of this dimension is inferred from the total element number of
|
|
|
|
|
Input(X) and remaining dimensions.
|
|
|
|
|
|
|
|
|
|
3. Given a 3-D tensor Input(X) with a shape [2, 4, 6], and the target shape
|
|
|
|
|
specified by Attr(shape) is [-1, 0, 3, 2], the reshape operator will transform
|
|
|
|
|
Input(X) into a 4-D tensor with shape [2, 4, 3, 2] and leaving Input(X)'s data
|
|
|
|
|
unchanged. In this case, besides -1, 0 means the actual dimension value is going
|
|
|
|
|
to be copied from the corresponding dimension of Input(X).
|
|
|
|
|
|
|
|
|
|
Note:
|
|
|
|
|
|
|
|
|
|
1. One and only one dimension in Attr(shape) can be set -1. In this case,
|
|
|
|
|
the actual dimension value will be infered from the total element number of
|
|
|
|
|
Input(X) and remaining dimensions.
|
|
|
|
|
|
|
|
|
|
2. More than one dimensions in Attr(shape) can be set to 0, which means the real
|
|
|
|
|
dimension value will be copied from Input(X) at runtime. Note that the index of
|
|
|
|
|
0 can not exceed Rank(X). For example, Input(X) is a 3-D tensor with shape
|
|
|
|
|
[2, 3, 4], Attr(shape) = [2, 3, 2, 0] is an invalid input.
|
|
|
|
|
|
|
|
|
|
3. Input(Shape) has a higher priority than Attr(shape) if it is provided, while
|
|
|
|
|
Attr(shape) still should be set correctly to gurantee shape inference in
|
|
|
|
|
compile-time.
|
|
|
|
|
|
|
|
|
|
One dimension in the target shape can be set -1, representing that its
|
|
|
|
|
size is unknown. In this case, the real dimension will be infered from
|
|
|
|
|
the original shape of Input(X) and other dimensions in the target shape.
|
|
|
|
|
)DOC");
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
@ -119,6 +95,14 @@ class ReshapeGradOp : public framework::OperatorWithKernel {
|
|
|
|
|
"Input(Out@GRAD) shouldn't be null.");
|
|
|
|
|
ctx->SetOutputDim(framework::GradVarName("X"), ctx->GetInputDim("X"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
framework::OpKernelType GetExpectedKernelType(
|
|
|
|
|
const framework::ExecutionContext &ctx) const override {
|
|
|
|
|
return framework::OpKernelType(
|
|
|
|
|
framework::ToDataType(ctx.Input<framework::LoDTensor>("X")->type()),
|
|
|
|
|
ctx.device_context());
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace operators
|
|
|
|
|