gather_nd_op.cu 5.3 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/framework/eigen.h"
#include "paddle/fluid/operators/gather.cu.h"
#include "paddle/fluid/operators/gather_nd_op.h"
#include "paddle/fluid/operators/scatter.cu.h"

namespace paddle {
namespace operators {

template <typename DeviceContext, typename T>
class GatherNdOpCUDAKernel : 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 *index = ctx.Input<Tensor>("Index");
    auto *output = ctx.Output<Tensor>("Out");

    output->mutable_data<T>(ctx.GetPlace());
    if (x->numel() == 0) return;
36
    const auto &index_type = framework::TransToProtoVarType(index->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) {
      GPUGatherNd<DeviceContext, T, int>(ctx, *x, *index, output);
    } else if (index_type == framework::proto::VarType::INT64) {
      GPUGatherNd<DeviceContext, T, int64_t>(ctx, *x, *index, output);
    }
  }
};

template <typename DeviceContext, typename T>
class GatherNdGradOpCUDAKernel : 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 73
    auto *index = ctx.Input<Tensor>("Index");
    auto *dX = ctx.Output<Tensor>(framework::GradVarName("X"));
    auto *dO = ctx.Input<Tensor>(framework::GradVarName("Out"));

    dX->mutable_data<T>(ctx.GetPlace());
    auto dxt = framework::EigenVector<T>::Flatten(*dX);
    auto &place = *ctx.template device_context<platform::CUDADeviceContext>()
                       .eigen_device();
    dxt.device(place) = dxt.constant(static_cast<T>(0));
    if (dO->numel() == 0) return;

74
    const auto &index_type = framework::TransToProtoVarType(index->dtype());
75 76 77
    bool index_type_match = index_type == framework::proto::VarType::INT32 ||
                            index_type == framework::proto::VarType::INT64;

78 79 80 81 82 83 84 85 86
    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)));
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105

    if (index_type == framework::proto::VarType::INT32) {
      GPUScatterNdAdd<DeviceContext, T, int>(ctx, *dO, *index, dX);
    } else if (index_type == framework::proto::VarType::INT64) {
      GPUScatterNdAdd<DeviceContext, T, int64_t>(ctx, *dO, *index, dX);
    }
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
namespace plat = paddle::platform;
using CUDA = paddle::platform::CUDADeviceContext;
REGISTER_OP_CUDA_KERNEL(gather_nd, ops::GatherNdOpCUDAKernel<CUDA, float>,
                        ops::GatherNdOpCUDAKernel<CUDA, double>,
                        ops::GatherNdOpCUDAKernel<CUDA, int64_t>,
                        ops::GatherNdOpCUDAKernel<CUDA, int>,
106
                        ops::GatherNdOpCUDAKernel<CUDA, int16_t>,
G
Guo Sheng 已提交
107
                        ops::GatherNdOpCUDAKernel<CUDA, bool>,
108 109 110 111 112 113 114 115
                        ops::GatherNdOpCUDAKernel<CUDA, plat::float16>);

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