scatter_nd_add_op.cu 4.5 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
/* Copyright (c) 2019 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/operators/gather.cu.h"
#include "paddle/fluid/operators/gather_op.h"
#include "paddle/fluid/operators/scatter.cu.h"
#include "paddle/fluid/operators/scatter_nd_add_op.h"

namespace paddle {
namespace operators {

template <typename DeviceContext, typename T>
class ScatterNdAddOpCUDAKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext &ctx) const override {
    PADDLE_ENFORCE_EQ(platform::is_gpu_place(ctx.GetPlace()), true,
28 29
                      platform::errors::PreconditionNotMet(
                          "This kernel only runs on GPU device."));
30 31 32 33 34 35
    auto *X = ctx.Input<Tensor>("X");
    auto *Ids = ctx.Input<Tensor>("Index");
    auto *Updates = ctx.Input<Tensor>("Updates");
    auto *Out = ctx.Output<Tensor>("Out");

    framework::TensorCopySync(*X, ctx.GetPlace(), Out);
36
    const auto &index_type = framework::TransToProtoVarType(Ids->dtype());
37 38
    bool index_type_match = index_type == framework::proto::VarType::INT32 ||
                            index_type == framework::proto::VarType::INT64;
39 40 41 42 43 44 45 46 47
    PADDLE_ENFORCE_EQ(index_type_match, true,
                      platform::errors::InvalidArgument(
                          "Index holds the wrong type, it holds [%s], but "
                          "desires to be [%s] or [%s].",
                          paddle::framework::DataTypeToString(index_type),
                          paddle::framework::DataTypeToString(
                              framework::proto::VarType::INT32),
                          paddle::framework::DataTypeToString(
                              framework::proto::VarType::INT64)));
48 49 50 51 52 53 54 55 56 57 58 59 60
    if (index_type == framework::proto::VarType::INT32) {
      GPUScatterNdAdd<DeviceContext, T, int32_t>(ctx, *Updates, *Ids, Out);
    } else {
      GPUScatterNdAdd<DeviceContext, T, int64_t>(ctx, *Updates, *Ids, Out);
    }
  }
};

template <typename DeviceContext, typename T>
class ScatterNdAddGradOpCUDAKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext &ctx) const override {
    PADDLE_ENFORCE_EQ(platform::is_gpu_place(ctx.GetPlace()), true,
61 62
                      platform::errors::PreconditionNotMet(
                          "This kernel only runs on GPU device."));
63 64 65 66 67 68 69 70 71 72
    auto *dX = ctx.Output<Tensor>(framework::GradVarName("X"));
    auto *dUpdates = ctx.Output<Tensor>(framework::GradVarName("Updates"));
    auto *Ids = ctx.Input<Tensor>("Index");
    auto *dOut = ctx.Input<Tensor>(framework::GradVarName("Out"));
    if (dX) {
      framework::TensorCopy(*dOut, ctx.GetPlace(), dX);
    }
    if (dUpdates) {
      dUpdates->mutable_data<T>(ctx.GetPlace());
      // Gradient by Gather
73
      const auto &index_type = framework::TransToProtoVarType(Ids->dtype());
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
      if (index_type == framework::proto::VarType::INT32) {
        GPUGatherNd<DeviceContext, T, int32_t>(ctx, *dOut, *Ids, dUpdates);
      } else {
        GPUGatherNd<DeviceContext, T, int64_t>(ctx, *dOut, *Ids, dUpdates);
      }
    }
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
using CUDA = paddle::platform::CUDADeviceContext;
namespace plat = paddle::platform;

REGISTER_OP_CUDA_KERNEL(scatter_nd_add,
                        ops::ScatterNdAddOpCUDAKernel<CUDA, float>,
                        ops::ScatterNdAddOpCUDAKernel<CUDA, double>,
                        ops::ScatterNdAddOpCUDAKernel<CUDA, int64_t>,
                        ops::ScatterNdAddOpCUDAKernel<CUDA, int>,
                        ops::ScatterNdAddOpCUDAKernel<CUDA, plat::float16>);

REGISTER_OP_CUDA_KERNEL(scatter_nd_add_grad,
                        ops::ScatterNdAddGradOpCUDAKernel<CUDA, float>,
                        ops::ScatterNdAddGradOpCUDAKernel<CUDA, double>,
                        ops::ScatterNdAddGradOpCUDAKernel<CUDA, int64_t>,
                        ops::ScatterNdAddGradOpCUDAKernel<CUDA, int>,
                        ops::ScatterNdAddGradOpCUDAKernel<CUDA, plat::float16>);