reshape_op.h 2.0 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Y
Yibing Liu 已提交
2

L
Luo Tao 已提交
3 4 5
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
Y
Yibing Liu 已提交
6

L
Luo Tao 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
Y
Yibing Liu 已提交
8

L
Luo Tao 已提交
9 10 11 12 13
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. */
Y
Yibing Liu 已提交
14 15 16

#pragma once

Y
Yi Wang 已提交
17 18
#include "paddle/fluid/framework/eigen.h"
#include "paddle/fluid/framework/op_registry.h"
Y
Yibing Liu 已提交
19 20 21 22

namespace paddle {
namespace operators {

Q
QI JUN 已提交
23
template <typename DeviceContext, typename T>
Y
Yu Yang 已提交
24
class ReshapeKernel : public framework::OpKernel<T> {
Y
Yibing Liu 已提交
25 26
 public:
  void Compute(const framework::ExecutionContext& ctx) const {
Y
Yibing Liu 已提交
27 28
    auto* out = ctx.Output<framework::Tensor>("Out");
    auto* in = ctx.Input<framework::Tensor>("X");
Y
Yan Chunwei 已提交
29
    bool inplace = ctx.Attr<bool>("inplace");
Q
Qiao Longfei 已提交
30
    auto out_dims = out->dims();
Y
Yan Chunwei 已提交
31 32 33 34 35 36 37 38
    if (!inplace) {
      out->mutable_data<T>(ctx.GetPlace());
      framework::TensorCopy(*in, ctx.GetPlace(), ctx.device_context(), out);
      out->Resize(out_dims);
    } else {
      out->ShareDataWith(*in);
      out->Resize(out_dims);
    }
Y
Yibing Liu 已提交
39 40 41
  }
};

Q
QI JUN 已提交
42
template <typename DeviceContext, typename T>
Y
Yu Yang 已提交
43
class ReshapeGradKernel : public framework::OpKernel<T> {
Y
Yibing Liu 已提交
44 45
 public:
  void Compute(const framework::ExecutionContext& ctx) const {
Y
Yibing Liu 已提交
46 47
    auto* d_out = ctx.Input<framework::Tensor>(framework::GradVarName("Out"));
    auto* d_x = ctx.Output<framework::Tensor>(framework::GradVarName("X"));
Y
Yibing Liu 已提交
48
    d_x->mutable_data<T>(ctx.GetPlace());
Y
Yan Chunwei 已提交
49
    bool inplace = ctx.Attr<bool>("inplace");
Y
Yibing Liu 已提交
50 51

    auto in_dims = d_x->dims();
Y
Yan Chunwei 已提交
52 53 54 55 56 57 58
    if (!inplace) {
      framework::TensorCopy(*d_out, ctx.GetPlace(), ctx.device_context(), d_x);
      d_x->Resize(in_dims);
    } else {
      d_x->ShareDataWith(*d_out);
      d_x->Resize(in_dims);
    }
Y
Yibing Liu 已提交
59 60
  }
};
H
Helin Wang 已提交
61 62
}  // namespace operators
}  // namespace paddle