You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
136 lines
5.2 KiB
136 lines
5.2 KiB
/* 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. */
|
|
|
|
#pragma once
|
|
|
|
#include "paddle/fluid/framework/data_layout.h"
|
|
#include "paddle/fluid/framework/eigen.h"
|
|
#include "paddle/fluid/framework/op_registry.h"
|
|
#include "paddle/fluid/operators/math/im2col.h"
|
|
#include "paddle/fluid/operators/math/math_function.h"
|
|
|
|
namespace paddle {
|
|
namespace operators {
|
|
|
|
using Tensor = framework::Tensor;
|
|
using LoDTensor = framework::LoDTensor;
|
|
|
|
inline int Im2SeqOutputSize(int input_size, int filter_size, int padding_0,
|
|
int padding_1, int stride) {
|
|
const int output_size =
|
|
(input_size + padding_0 + padding_1 - filter_size) / stride + 1;
|
|
return output_size;
|
|
}
|
|
|
|
template <typename DeviceContext, typename T>
|
|
class Im2SequenceKernel : public framework::OpKernel<T> {
|
|
public:
|
|
void Compute(const framework::ExecutionContext& ctx) const override {
|
|
const Tensor* in = ctx.Input<Tensor>("X");
|
|
LoDTensor* out = ctx.Output<LoDTensor>("Out");
|
|
out->mutable_data<T>(ctx.GetPlace());
|
|
// TODO(wanghaoshuang): Add layout checker after 'set_layout'
|
|
// being available for python API
|
|
// PADDLE_ENFORCE_EQ(in->layout(), framework::DataLayout::kNCHW,
|
|
// "Input(X) layout must be NCHW");
|
|
auto in_dim = in->dims();
|
|
int batch_size = in_dim[0];
|
|
int img_channels = in_dim[1];
|
|
int img_height = in_dim[2];
|
|
int img_width = in_dim[3];
|
|
|
|
auto kernels = ctx.Attr<std::vector<int>>("kernels");
|
|
auto strides = ctx.Attr<std::vector<int>>("strides");
|
|
auto paddings = ctx.Attr<std::vector<int>>("paddings");
|
|
int output_height = Im2SeqOutputSize(img_height, kernels[0], paddings[0],
|
|
paddings[2], strides[0]);
|
|
int output_width = Im2SeqOutputSize(img_width, kernels[1], paddings[1],
|
|
paddings[3], strides[1]);
|
|
|
|
const std::vector<int> dilations({1, 1});
|
|
|
|
auto out_dims = out->dims();
|
|
out->Resize({batch_size, out->numel() / batch_size});
|
|
for (int i = 0; i < batch_size; i++) {
|
|
const Tensor src =
|
|
in->Slice(i, i + 1).Resize({img_channels, img_height, img_width});
|
|
Tensor dst = out->Slice(i, i + 1).Resize(
|
|
{output_height, output_width, img_channels, kernels[0], kernels[1]});
|
|
|
|
math::Im2ColFunctor<math::ColFormat::kOCF, DeviceContext, T> f;
|
|
auto& dev_ctx = ctx.template device_context<DeviceContext>();
|
|
f(dev_ctx, src, dilations, strides, paddings, &dst);
|
|
}
|
|
out->Resize(out_dims);
|
|
|
|
// set lod information
|
|
// TODO(wanghaoshuang): Move this to InferShape
|
|
framework::LoD lod(1);
|
|
lod[0].reserve(batch_size + 1);
|
|
for (int i = 0, offset = 0; i < batch_size + 1; ++i) {
|
|
lod[0].push_back(offset);
|
|
offset += output_height * output_width;
|
|
}
|
|
out->set_lod(lod);
|
|
}
|
|
};
|
|
|
|
template <typename DeviceContext, typename T>
|
|
class Im2SequenceGradKernel : public framework::OpKernel<T> {
|
|
public:
|
|
void Compute(const framework::ExecutionContext& ctx) const override {
|
|
auto* in = ctx.Input<Tensor>("X");
|
|
Tensor* d_out =
|
|
const_cast<Tensor*>(ctx.Input<Tensor>(framework::GradVarName("Out")));
|
|
auto* d_x = ctx.Output<Tensor>(framework::GradVarName("X"));
|
|
d_x->mutable_data<T>(ctx.GetPlace());
|
|
|
|
auto x_v = framework::EigenVector<T>::Flatten(*d_x);
|
|
auto& place = *ctx.template device_context<DeviceContext>().eigen_device();
|
|
x_v.device(place) = x_v.constant(0.0);
|
|
|
|
auto in_dim = in->dims();
|
|
int batch_size = in_dim[0];
|
|
int img_channels = in_dim[1];
|
|
int img_height = in_dim[2];
|
|
int img_width = in_dim[3];
|
|
|
|
auto kernels = ctx.Attr<std::vector<int>>("kernels");
|
|
auto strides = ctx.Attr<std::vector<int>>("strides");
|
|
auto paddings = ctx.Attr<std::vector<int>>("paddings");
|
|
int output_height = Im2SeqOutputSize(img_height, kernels[0], paddings[0],
|
|
paddings[2], strides[0]);
|
|
int output_width = Im2SeqOutputSize(img_width, kernels[1], paddings[1],
|
|
paddings[3], strides[1]);
|
|
|
|
const std::vector<int> dilations({1, 1});
|
|
|
|
auto d_out_dims = d_out->dims();
|
|
d_out->Resize({batch_size, d_out->numel() / batch_size});
|
|
for (int i = 0; i < batch_size; i++) {
|
|
Tensor dst =
|
|
d_x->Slice(i, i + 1).Resize({img_channels, img_height, img_width});
|
|
const Tensor src = d_out->Slice(i, i + 1).Resize(
|
|
{output_height, output_width, img_channels, kernels[0], kernels[1]});
|
|
math::Col2ImFunctor<math::ColFormat::kOCF, DeviceContext, T> f;
|
|
auto& dev_ctx = ctx.template device_context<DeviceContext>();
|
|
f(dev_ctx, src, dilations, strides, paddings, &dst);
|
|
}
|
|
d_out->Resize(d_out_dims);
|
|
}
|
|
};
|
|
|
|
} // namespace operators
|
|
} // namespace paddle
|