abs_op_mlu.cc 2.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
/* 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 <typename T>
class AbsMLUKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
    auto* input = ctx.Input<Tensor>("X");
    auto* output = ctx.Output<Tensor>("Out");

    output->mutable_data<T>(ctx.GetPlace());

    MLUCnnlTensorDesc input_desc(*input);
    MLUCnnlTensorDesc output_desc(*output);

35 36 37 38
    MLUCnnl::Abs(ctx,
                 input_desc.get(),
                 GetBasePtr(input),
                 output_desc.get(),
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
                 GetBasePtr(output));
  }
};

template <typename T>
class AbsGradMLUKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
    auto* x = ctx.Input<Tensor>("X");
    auto* dout = ctx.Input<Tensor>(framework::GradVarName("Out"));
    auto* dx = ctx.Output<Tensor>(framework::GradVarName("X"));

    dx->mutable_data<T>(ctx.GetPlace());

    MLUCnnlTensorDesc input_desc(*x);
54 55
    MLUCnnlOpTensorDesc mul_op_desc(
        CNNL_OP_TENSOR_MUL, ToCnnlDataType<T>(), CNNL_NOT_PROPAGATE_NAN);
56 57 58 59

    Tensor sign_x;
    sign_x.mutable_data<T>(x->dims(), ctx.GetPlace());

60 61 62 63
    MLUCnnl::Sign(ctx,
                  input_desc.get(),
                  GetBasePtr(x),
                  input_desc.get(),
64
                  GetBasePtr(&sign_x));
65 66 67 68 69 70 71 72 73
    MLUCnnl::OpTensor(ctx,
                      mul_op_desc.get(),
                      input_desc.get(),
                      GetBasePtr(&sign_x),
                      input_desc.get(),
                      GetBasePtr(dout),
                      input_desc.get(),
                      GetBasePtr(dx),
                      ToCnnlDataType<T>());
74 75 76 77 78 79 80 81 82
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
namespace plat = paddle::platform;

83 84
REGISTER_OP_MLU_KERNEL(abs,
                       ops::AbsMLUKernel<float>,
85 86
                       ops::AbsMLUKernel<plat::float16>);

87 88
REGISTER_OP_MLU_KERNEL(abs_grad,
                       ops::AbsGradMLUKernel<float>,
89
                       ops::AbsGradMLUKernel<plat::float16>);