/* Copyright (c) 2021 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. */ #include #include #include #include "paddle/fluid/framework/op_registry.h" #include "paddle/fluid/operators/expand_op.h" namespace paddle { namespace operators { template class TransposeNPUKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto* x = ctx.Input("X"); auto* out = ctx.Output("Out"); std::vector axis = ctx.Attr>("axis"); out->mutable_data(ctx.device_context().GetPlace()); NpuOpRunner runner; runner.SetType("Transpose") .AddInput(*x) .AddInput(std::move(axis)) .AddOutput(*out); auto stream = ctx.template device_context() .stream(); runner.Run(stream); } }; template class TransposeGradNPUKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto* out_grad = ctx.Input(framework::GradVarName("Out")); auto* x_grad = ctx.Output(framework::GradVarName("X")); std::vector axis = ctx.Attr>("axis"); std::vector reversed_axis(axis); for (size_t i = 0; i < axis.size(); i++) { reversed_axis[axis[i]] = i; } x_grad->mutable_data(ctx.GetPlace()); NpuOpRunner runner; runner.SetType("Transpose") .AddInput(*out_grad) .AddInput(std::move(reversed_axis)) .AddOutput(*x_grad); auto stream = ctx.template device_context() .stream(); runner.Run(stream); } }; } // namespace operators } // namespace paddle namespace ops = paddle::operators; REGISTER_OP_NPU_KERNEL( transpose2, ops::TransposeNPUKernel, ops::TransposeNPUKernel, ops::TransposeNPUKernel, #ifdef PADDLE_WITH_ASCEND_INT64 ops::TransposeNPUKernel, #endif ops::TransposeNPUKernel, ops::TransposeNPUKernel); REGISTER_OP_NPU_KERNEL(transpose2_grad, ops::TransposeGradNPUKernel, ops::TransposeGradNPUKernel, ops::TransposeGradNPUKernel, #ifdef PADDLE_WITH_ASCEND_INT64 ops::TransposeGradNPUKernel, #endif ops::TransposeGradNPUKernel, ops::TransposeGradNPUKernel);