gather_op.h 4.0 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Z
zchen0211 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15

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. */

#pragma once
Y
Yi Wang 已提交
16 17
#include "paddle/fluid/framework/eigen.h"
#include "paddle/fluid/framework/op_registry.h"
18 19
#include "paddle/fluid/operators/gather.h"
#include "paddle/fluid/operators/scatter.h"
Z
zchen0211 已提交
20 21 22 23 24 25

namespace paddle {
namespace operators {

using Tensor = framework::Tensor;

Z
zchen0211 已提交
26
template <typename T>
Y
Yu Yang 已提交
27
class GatherOpKernel : public framework::OpKernel<T> {
Z
zchen0211 已提交
28
 public:
Z
zchen0211 已提交
29
  void Compute(const framework::ExecutionContext &ctx) const override {
Z
zchen0211 已提交
30 31 32 33 34 35 36 37
    PADDLE_ENFORCE(platform::is_cpu_place(ctx.GetPlace()),
                   "This kernel only runs on CPU.");

    auto *x = ctx.Input<Tensor>("X");
    auto *index = ctx.Input<Tensor>("Index");
    auto *output = ctx.Output<Tensor>("Out");

    output->mutable_data<T>(ctx.GetPlace());
38
    if (x->numel() == 0) return;
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

    const auto &index_type = index->type();
    bool index_type_match = index_type == framework::proto::VarType::INT32 ||
                            index_type == framework::proto::VarType::INT64;
    PADDLE_ENFORCE(
        index_type_match,
        "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));
    if (index_type == framework::proto::VarType::INT32) {
      CPUGather<T, int>(ctx.device_context(), *x, *index, output);
    } else if (index_type == framework::proto::VarType::INT64) {
      CPUGather<T, int64_t>(ctx.device_context(), *x, *index, output);
    }
Z
zchen0211 已提交
54 55 56
  }
};

Z
zchen0211 已提交
57
template <typename T>
Y
Yu Yang 已提交
58
class GatherGradientOpKernel : public framework::OpKernel<T> {
Z
zchen0211 已提交
59
 public:
Z
zchen0211 已提交
60
  void Compute(const framework::ExecutionContext &ctx) const override {
Z
zchen0211 已提交
61 62 63
    PADDLE_ENFORCE(platform::is_cpu_place(ctx.GetPlace()),
                   "This kernel only runs on CPU.");

64
    auto *index = ctx.Input<Tensor>("Index");
Z
zchen0211 已提交
65 66
    auto *dX = ctx.Output<Tensor>(framework::GradVarName("X"));
    auto *dO = ctx.Input<Tensor>(framework::GradVarName("Out"));
Z
zchen0211 已提交
67

Z
zchen0211 已提交
68
    dX->mutable_data<T>(ctx.GetPlace());
Z
zchen0211 已提交
69
    auto dxt = framework::EigenVector<T>::Flatten(*dX);
Q
QI JUN 已提交
70 71
    auto &place = *ctx.template device_context<platform::CPUDeviceContext>()
                       .eigen_device();
Z
zchen0211 已提交
72
    dxt.device(place) = dxt.constant(static_cast<T>(0));
73
    if (dO->numel() == 0) return;
74
    bool overwrite = ctx.Attr<bool>("overwrite");
75 76 77 78 79 80 81 82 83 84 85

    const auto &index_type = index->type();
    bool index_type_match = index_type == framework::proto::VarType::INT32 ||
                            index_type == framework::proto::VarType::INT64;
    PADDLE_ENFORCE(
        index_type_match,
        "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));
    if (index_type == framework::proto::VarType::INT32) {
86 87 88 89 90
      if (overwrite) {
        ScatterAssign<T, int32_t>(ctx.device_context(), *dO, *index, dX);
      } else {
        ScatterAssignAdd<T, int32_t>(ctx, *dO, *index, dX);
      }
91
    } else if (index_type == framework::proto::VarType::INT64) {
92 93 94 95 96
      if (overwrite) {
        ScatterAssign<T, int64_t>(ctx.device_context(), *dO, *index, dX);
      } else {
        ScatterAssignAdd<T, int64_t>(ctx, *dO, *index, dX);
      }
97
    }
Z
zchen0211 已提交
98 99 100 101 102
  }
};

}  // namespace operators
}  // namespace paddle