gather_op_mlu.cc 4.5 KB
Newer Older
F
fwenguang 已提交
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
/* 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. */

#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/framework/tensor_util.h"
#include "paddle/fluid/operators/mlu/mlu_baseop.h"

namespace paddle {
namespace operators {

template <typename T>
class GatherOpMLUKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext &ctx) const override {
26 27
    auto *x = ctx.Input<phi::DenseTensor>("X");
    auto *index = ctx.Input<phi::DenseTensor>("Index");
F
fwenguang 已提交
28 29
    auto axis = ctx.Attr<int>("axis");

30 31 32
    const auto index_dims = index->dims();
    if (index_dims.size() == 2) {
      PADDLE_ENFORCE_EQ(
33 34
          index_dims[1],
          1,
35 36 37 38 39
          platform::errors::InvalidArgument(
              "The last dim of index should be 1 when it is 2D, but we get %d",
              index_dims[1]));
    } else {
      PADDLE_ENFORCE_EQ(
40 41
          index_dims.size(),
          1,
42 43 44 45 46
          platform::errors::InvalidArgument(
              "The index should be 1D, when it is not 2D, but we get %d",
              index_dims.size()));
    }

47
    auto *out = ctx.Output<phi::DenseTensor>("Out");
F
fwenguang 已提交
48 49 50
    out->mutable_data<T>(ctx.GetPlace());

    MLUCnnlTensorDesc x_desc(*x);
51
    int index_shape_1d[1] = {static_cast<int>(index_dims[0])};
52 53
    MLUCnnlTensorDesc index_desc(
        1, index_shape_1d, ToCnnlDataType(index->dtype()));
F
fwenguang 已提交
54
    MLUCnnlTensorDesc out_desc(*out);
55 56 57 58 59 60 61 62 63
    MLUCnnl::GatherFunctor(ctx,
                           axis,
                           0 /*batch_dims*/,
                           x_desc.get(),
                           GetBasePtr(x),
                           index_desc.get(),
                           GetBasePtr(index),
                           out_desc.get(),
                           GetBasePtr(out));
F
fwenguang 已提交
64 65 66 67 68 69 70
  }
};

template <typename T>
class GatherGradOpMLUKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext &ctx) const override {
71 72 73
    auto *index = ctx.Input<phi::DenseTensor>("Index");
    auto *dout = ctx.Input<phi::DenseTensor>(framework::GradVarName("Out"));
    auto *dx = ctx.Output<phi::DenseTensor>(framework::GradVarName("X"));
74 75 76 77

    const auto index_dims = index->dims();
    if (index_dims.size() == 2) {
      PADDLE_ENFORCE_EQ(
78 79
          index_dims[1],
          1,
80 81 82 83 84
          platform::errors::InvalidArgument(
              "The last dim of index should be 1 when it is 2D, but we get %d",
              index_dims[1]));
    } else {
      PADDLE_ENFORCE_EQ(
85 86
          index_dims.size(),
          1,
87 88 89 90 91
          platform::errors::InvalidArgument(
              "The index should be 1D, when it is not 2D, but we get %d",
              index_dims.size()));
    }

F
fwenguang 已提交
92 93 94 95
    dx->mutable_data<T>(ctx.GetPlace());

    MLUCnnlTensorDesc dx_desc(*dx);
    auto value = static_cast<T>(0);
96 97
    MLUCnnl::Fill(
        ctx, CNNL_POINTER_MODE_HOST, &value, dx_desc.get(), GetBasePtr(dx));
F
fwenguang 已提交
98

99
    int index_shape_1d[1] = {static_cast<int>(index_dims[0])};
100 101
    MLUCnnlTensorDesc index_desc(
        1, index_shape_1d, ToCnnlDataType(index->dtype()));
F
fwenguang 已提交
102 103
    MLUCnnlTensorDesc dout_desc(*dout);
    const cnnlScatterRefMode_t mode = CNNL_SCATTERREF_UPDATE;
104 105 106 107 108 109 110 111
    MLUCnnl::ScatterRefFunctor(ctx,
                               dx_desc.get(),
                               GetBasePtr(dx),
                               dout_desc.get(),
                               GetBasePtr(dout),
                               index_desc.get(),
                               GetBasePtr(index),
                               mode);
F
fwenguang 已提交
112 113 114 115 116 117 118
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
119 120
REGISTER_OP_MLU_KERNEL(gather,
                       ops::GatherOpMLUKernel<float>,
F
fwenguang 已提交
121 122 123
                       ops::GatherOpMLUKernel<paddle::platform::float16>,
                       ops::GatherOpMLUKernel<int>);

124 125
REGISTER_OP_MLU_KERNEL(gather_grad,
                       ops::GatherGradOpMLUKernel<float>,
F
fwenguang 已提交
126 127
                       ops::GatherGradOpMLUKernel<paddle::platform::float16>,
                       ops::GatherGradOpMLUKernel<int>);