/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve. 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/framework/eigen.h" #include "paddle/framework/op_registry.h" namespace paddle { namespace operators { template void EigenTranspose(const framework::ExecutionContext& context, const framework::Tensor& in, framework::Tensor& out, std::vector axis) { Eigen::array permute; for (int i = 0; i < Rank; i++) { permute[i] = axis[i]; } auto in_dim = in.dims(); auto out_dim = out.dims(); auto eigen_in = framework::EigenTensor::From(in); auto eigen_out = framework::EigenTensor::From(out); auto& dev = context.GetEigenDevice(); eigen_out.device(dev) = eigen_in.shuffle(permute); } template class TransposeKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& context) const override { auto* x = context.Input("X"); auto* out = context.Output("Out"); out->mutable_data(context.GetPlace()); std::vector axis = context.Attr>("axis"); int ndims = axis.size(); switch (ndims) { case 1: EigenTranspose(context, *x, *out, axis); break; case 2: EigenTranspose(context, *x, *out, axis); break; case 3: EigenTranspose(context, *x, *out, axis); break; case 4: EigenTranspose(context, *x, *out, axis); break; case 5: EigenTranspose(context, *x, *out, axis); break; case 6: EigenTranspose(context, *x, *out, axis); break; default: PADDLE_THROW("Tensors with rank at most 6 are supported"); } } }; template class TransposeGradKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& context) const override { auto* out_grad = context.Input(framework::GradVarName("Out")); auto* x_grad = context.Output(framework::GradVarName("X")); if (x_grad) { x_grad->mutable_data(context.GetPlace()); std::vector axis = context.Attr>("axis"); std::vector reversed_axis(axis); for (size_t i = 0; i < axis.size(); i++) { reversed_axis[axis[i]] = i; } int ndims = axis.size(); switch (ndims) { case 1: EigenTranspose(context, *out_grad, *x_grad, reversed_axis); break; case 2: EigenTranspose(context, *out_grad, *x_grad, reversed_axis); break; case 3: EigenTranspose(context, *out_grad, *x_grad, reversed_axis); break; case 4: EigenTranspose(context, *out_grad, *x_grad, reversed_axis); break; case 5: EigenTranspose(context, *out_grad, *x_grad, reversed_axis); break; case 6: EigenTranspose(context, *out_grad, *x_grad, reversed_axis); break; default: PADDLE_THROW("Tensors with rank at most 6 are supported"); } } } }; } // namespace operators } // namespace paddle