/* Copyright (c) 2022 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 Licnse. */ #include "paddle/fluid/framework/op_registry.h" #include "paddle/fluid/operators/mlu/mlu_baseop.h" namespace paddle { namespace operators { using Tensor = framework::Tensor; template class AbsMLUKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto* input = ctx.Input("X"); auto* output = ctx.Output("Out"); output->mutable_data(ctx.GetPlace()); MLUCnnlTensorDesc input_desc(*input); MLUCnnlTensorDesc output_desc(*output); MLUCnnl::Abs(ctx, input_desc.get(), GetBasePtr(input), output_desc.get(), GetBasePtr(output)); } }; template class AbsGradMLUKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto* x = ctx.Input("X"); auto* dout = ctx.Input(framework::GradVarName("Out")); auto* dx = ctx.Output(framework::GradVarName("X")); dx->mutable_data(ctx.GetPlace()); MLUCnnlTensorDesc input_desc(*x); MLUCnnlOpTensorDesc mul_op_desc(CNNL_OP_TENSOR_MUL, ToCnnlDataType(), CNNL_NOT_PROPAGATE_NAN); Tensor sign_x; sign_x.mutable_data(x->dims(), ctx.GetPlace()); MLUCnnl::Sign(ctx, input_desc.get(), GetBasePtr(x), input_desc.get(), GetBasePtr(&sign_x)); MLUCnnl::OpTensor(ctx, mul_op_desc.get(), input_desc.get(), GetBasePtr(&sign_x), input_desc.get(), GetBasePtr(dout), input_desc.get(), GetBasePtr(dx), ToCnnlDataType()); } }; } // namespace operators } // namespace paddle namespace ops = paddle::operators; namespace plat = paddle::platform; REGISTER_OP_MLU_KERNEL(abs, ops::AbsMLUKernel, ops::AbsMLUKernel); REGISTER_OP_MLU_KERNEL(abs_grad, ops::AbsGradMLUKernel, ops::AbsGradMLUKernel);