/* Copyright (c) 2018 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 #include "paddle/fluid/framework/eigen.h" #include "paddle/fluid/framework/op_registry.h" #include "paddle/fluid/operators/math/blas.h" #include "paddle/fluid/operators/math/math_function.h" namespace paddle { namespace operators { using Tensor = framework::Tensor; template using EigenTensor = framework::EigenTensor; using Array1 = Eigen::DSizes; using Array2 = Eigen::DSizes; using Array3 = Eigen::DSizes; using Array4 = Eigen::DSizes; /** *Return a tensor with evenly spaced numbers over a specified interval. */ template struct Linspace { framework::Tensor operator()(T start, T end, int count, const framework::ExecutionContext& ctx); }; template class AffineGridOpKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto& place = *ctx.template device_context().eigen_device(); auto* theta = ctx.Input("Theta"); int n = theta->dims()[0]; auto size_attr = ctx.Attr>("output_shape"); int h = 0; int w = 0; if (size_attr.size() == 0) { auto* output_shape = ctx.Input("OutputShape"); Tensor h_sizes; framework::TensorCopy(*output_shape, platform::CPUPlace(), &h_sizes); const int* h_size_data = h_sizes.data(); h = h_size_data[2]; w = h_size_data[3]; } else { h = size_attr[2]; w = size_attr[3]; } auto* output = ctx.Output("Output"); output->mutable_data({n, h, w, 2}, ctx.GetPlace()); math::SetConstant()( ctx.template device_context(), output, static_cast(0)); Linspace linspace; // Get indexes of height with shape [height, width, 1] auto h_idx = linspace((T)-1, (T)1, h, ctx); auto h_idx_t = EigenTensor::From(h_idx); // Get indexes of width with shape [height, width, 1] auto w_idx = linspace((T)-1, (T)1, w, ctx); auto w_idx_t = EigenTensor::From(w_idx); // Get constant ones tensor with shape [height, width, 1] Tensor ones; ones.mutable_data({h, w, 1}, ctx.GetPlace()); auto ones_t = EigenTensor::From(ones).setConstant((T)1); // Get grid tensor with shape [n, h, w, 3] by concatenating h_idx, w_idx and // ones Tensor grid; grid.mutable_data({n, h, w, 3}, ctx.GetPlace()); auto grid_t = EigenTensor::From(grid); grid_t.device(place) = w_idx_t.reshape(Array2(1, w)) .broadcast(Array2(h, 1)) .reshape(Array3(h, w, 1)) .concatenate(h_idx_t.reshape(Array2(1, h)) .broadcast(Array2(w, 1)) .shuffle(Array2(1, 0)) .reshape(Array3(h, w, 1)), 2) .eval() .concatenate(ones_t, 2) .reshape(Array4(1, h, w, 3)) .broadcast(Array4(n, 1, 1, 1)); // output = grid * theta.T // TODO(wanghaoshuang): Refine batched matrix multiply auto blas = math::GetBlas(ctx); for (int i = 0; i < n; ++i) { Tensor sliced_grid = grid.Slice(i, i + 1).Resize({h * w, 3}); Tensor sliced_theta = theta->Slice(i, i + 1).Resize({2, 3}); Tensor sliced_out = output->Slice(i, i + 1).Resize({h * w, 2}); blas.MatMul(sliced_grid, false, sliced_theta, true, T(1), &sliced_out, T(0)); } } }; template class AffineGridGradOpKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto& place = *ctx.template device_context().eigen_device(); auto output_grad = ctx.Input(framework::GradVarName("Output")); auto theta_grad = ctx.Output(framework::GradVarName("Theta")); int n = output_grad->dims()[0]; auto size_attr = ctx.Attr>("output_shape"); int h = 0; int w = 0; if (size_attr.size() == 0) { auto* output_shape = ctx.Input("OutputShape"); Tensor h_sizes; framework::TensorCopy(*output_shape, platform::CPUPlace(), &h_sizes); const int* h_size_data = h_sizes.data(); h = h_size_data[2]; w = h_size_data[3]; } else { h = size_attr[2]; w = size_attr[3]; } theta_grad->mutable_data({n, 2, 3}, ctx.GetPlace()); math::SetConstant()( ctx.template device_context(), theta_grad, static_cast(0)); Linspace linspace; // Get indexes of height with shape [height, width, 1] auto h_idx = linspace((T)-1, (T)1, h, ctx); auto h_idx_t = EigenTensor::From(h_idx); // Get indexes of width with shape [height, width, 1] auto w_idx = linspace((T)-1, (T)1, w, ctx); auto w_idx_t = EigenTensor::From(w_idx); // Get constant ones tensor with shape [height, width, 1] Tensor ones; ones.mutable_data({h, w, 1}, ctx.GetPlace()); auto ones_t = EigenTensor::From(ones).setConstant((T)1); // Get grid tensor with shape [n, h, w, 3] by concatenating h_idx, w_idx and // ones Tensor grid; grid.mutable_data({n, h, w, 3}, ctx.GetPlace()); auto grid_t = EigenTensor::From(grid); grid_t.device(place) = w_idx_t.reshape(Array2(1, w)) .broadcast(Array2(h, 1)) .reshape(Array3(h, w, 1)) .concatenate(h_idx_t.reshape(Array2(1, h)) .broadcast(Array2(w, 1)) .shuffle(Array2(1, 0)) .reshape(Array3(h, w, 1)), 2) .eval() .concatenate(ones_t, 2) .reshape(Array4(1, h, w, 3)) .broadcast(Array4(n, 1, 1, 1)); // output = grid * theta.T // TODO(wanghaoshuang): Refine batched matrix multiply auto blas = math::GetBlas(ctx); for (int i = 0; i < n; ++i) { Tensor sliced_grid = grid.Slice(i, i + 1).Resize({h * w, 3}); Tensor sliced_out_grad = output_grad->Slice(i, i + 1).Resize({h * w, 2}); Tensor sliced_theta_grad = theta_grad->Slice(i, i + 1).Resize({2, 3}); blas.MatMul(sliced_out_grad, true, sliced_grid, false, T(1), &sliced_theta_grad, T(0)); } } }; } // namespace operators } // namespace paddle