elementwise_mul_op_mlu.cc 5.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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 License. */

15
#include "paddle/fluid/operators/elementwise/elementwise_mlu.h"
16 17 18 19 20 21 22 23 24 25 26

namespace paddle {
namespace operators {

using Tensor = framework::Tensor;
using MLUDeviceContext = platform::MLUDeviceContext;

template <typename T>
class ElementwiseMulMLUKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
27
    MLUOpTensorKernel<T>(ctx, CNNL_OP_TENSOR_MUL);
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
  }
};

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

    const auto& x_dims = x->dims();
    const auto& y_dims = y->dims();
    axis = (axis < 0 ? (std::abs(x_dims.size() - y_dims.size()) + axis + 1)
                     : axis);
    int max_dim = std::max(x_dims.size(), y_dims.size());
    std::vector<int> x_dims_array(max_dim);
    std::vector<int> y_dims_array(max_dim);
    std::vector<int> out_dims_array(max_dim);
    GetBroadcastDimsArrays(x_dims, y_dims, x_dims_array.data(),
                           y_dims_array.data(), out_dims_array.data(), max_dim,
                           axis);

    MLUCnnlTensorDesc x_desc(max_dim, x_dims_array.data(), ToCnnlDataType<T>());
    MLUCnnlTensorDesc y_desc(max_dim, y_dims_array.data(), ToCnnlDataType<T>());
    MLUCnnlTensorDesc dout_desc(*dout);
    MLUCnnlOpTensorDesc mul_op_desc(CNNL_OP_TENSOR_MUL, ToCnnlDataType<T>(),
                                    CNNL_NOT_PROPAGATE_NAN);
    if (dx) {
      dx->mutable_data<T>(ctx.GetPlace());
      if (dx->dims() == dout->dims()) {
        MLUCnnl::OpTensor(ctx, mul_op_desc.get(), dout_desc.get(),
                          GetBasePtr(dout), y_desc.get(), GetBasePtr(y),
                          x_desc.get(), GetBasePtr(dx), ToCnnlDataType<T>());
      } else {
        Tensor dx_temp(x->dtype());
        dx_temp.Resize(dout->dims());
        dx_temp.mutable_data<T>(ctx.GetPlace());
        MLUCnnl::OpTensor(ctx, mul_op_desc.get(), dout_desc.get(),
                          GetBasePtr(dout), y_desc.get(), GetBasePtr(y),
                          dout_desc.get(), GetBasePtr(&dx_temp),
                          ToCnnlDataType<T>());

        std::vector<int> reduce_axes;
        GetReduceAxes(axis, dx_temp.dims(), dx->dims(), &reduce_axes);
        MLUCnnlReduceDesc reduction_desc(
            reduce_axes, CNNL_REDUCE_ADD, ToCnnlDataType<T>(),
            CNNL_NOT_PROPAGATE_NAN, CNNL_REDUCE_NO_INDICES, CNNL_32BIT_INDICES);
        MLUCnnlTensorDesc dx_desc(*dx);
        MLUCnnl::Reduce(ctx, true /*need_workspace*/, reduction_desc.get(),
                        nullptr, dout_desc.get(), GetBasePtr(&dx_temp), 0,
                        nullptr, nullptr, dx_desc.get(), GetBasePtr(dx));
      }
    }
    if (dy) {
      dy->mutable_data<T>(ctx.GetPlace());
      if (dy->dims() == dout->dims()) {
        MLUCnnl::OpTensor(ctx, mul_op_desc.get(), dout_desc.get(),
                          GetBasePtr(dout), x_desc.get(), GetBasePtr(x),
                          y_desc.get(), GetBasePtr(dy), ToCnnlDataType<T>());
      } else {
        Tensor dy_temp(y->dtype());
        dy_temp.Resize(dout->dims());
        dy_temp.mutable_data<T>(ctx.GetPlace());
        MLUCnnl::OpTensor(ctx, mul_op_desc.get(), dout_desc.get(),
                          GetBasePtr(dout), x_desc.get(), GetBasePtr(x),
                          dout_desc.get(), GetBasePtr(&dy_temp),
                          ToCnnlDataType<T>());

        std::vector<int> reduce_axes;
        GetReduceAxes(axis, dy_temp.dims(), dy->dims(), &reduce_axes);
        MLUCnnlReduceDesc reduction_desc(
            reduce_axes, CNNL_REDUCE_ADD, ToCnnlDataType<T>(),
            CNNL_NOT_PROPAGATE_NAN, CNNL_REDUCE_NO_INDICES, CNNL_32BIT_INDICES);
        MLUCnnlTensorDesc dy_desc(*dy);
        MLUCnnl::Reduce(ctx, true /*need_workspace*/, reduction_desc.get(),
                        nullptr, dout_desc.get(), GetBasePtr(&dy_temp), 0,
                        nullptr, nullptr, dy_desc.get(), GetBasePtr(dy));
      }
    }
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;

REGISTER_OP_MLU_KERNEL(elementwise_mul, ops::ElementwiseMulMLUKernel<float>,
                       ops::ElementwiseMulMLUKernel<paddle::platform::float16>,
                       ops::ElementwiseMulMLUKernel<int>);

REGISTER_OP_MLU_KERNEL(
    elementwise_mul_grad, ops::ElementwiseMulGradMLUKernel<float>,
    ops::ElementwiseMulGradMLUKernel<paddle::platform::float16>,
    ops::ElementwiseMulGradMLUKernel<int>);