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

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
#include <cstring>
17
#include <string>
18
#include <unordered_set>
Z
zchen0211 已提交
19

20
#include "paddle/phi/common/place.h"
21
#include "paddle/phi/core/ddim.h"
22
#include "paddle/phi/core/dense_tensor.h"
23
#include "paddle/phi/kernels/funcs/blas/blas.h"
24
#include "paddle/phi/kernels/funcs/eigen/common.h"
Z
zchen0211 已提交
25

26 27
namespace phi {
namespace funcs {
Z
zchen0211 已提交
28 29

/**
30
 * Return the updated array pointer, use blas or eigen lib to optimize time
31 32 33 34
 * cost
 */
template <typename T, typename IndexT = int>
typename std::enable_if<std::is_floating_point<T>::value>::type
35 36 37 38 39 40 41 42 43
elementwise_inner_add(const phi::CPUContext& ctx,
                      const T* src_pointer,
                      T* dst_pointer,
                      size_t src_index,
                      IndexT dst_index,
                      size_t slice_size) {
  auto blas = phi::funcs::GetBlas<phi::CPUContext, T>(ctx);
  blas.VADD(slice_size,
            src_pointer + src_index * slice_size,
44 45
            dst_pointer + dst_index * slice_size,
            dst_pointer + dst_index * slice_size);
46 47 48 49
}

template <typename T, typename IndexT = int>
typename std::enable_if<!std::is_floating_point<T>::value>::type
50
elementwise_inner_add(const phi::CPUContext& ctx UNUSED,
51 52 53 54 55 56 57 58 59
                      const T* src_pointer,
                      T* dst_pointer,
                      size_t src_index,
                      IndexT dst_index,
                      size_t slice_size) {
  using EigenVector = typename phi::EigenTensor<T, 1>::Type;
  using ConstEigenVector = typename phi::EigenTensor<T, 1>::ConstType;

  phi::EigenDim<1>::Type dim;
60 61 62 63 64
  dim[0] = slice_size;

  ConstEigenVector eigen_src(src_pointer + src_index * slice_size, dim);
  EigenVector eigen_dst(dst_pointer + dst_index * slice_size, dim);
  eigen_dst += eigen_src;
65
}
66

67 68
/**
 * Return an updated tensor from source tensor, scattered according to index:
Z
zchen0211 已提交
69
 * dst[i] = src[index[i]]
Z
zchen0211 已提交
70
 * input[src]: type-T source Tensor
71
 * input[index]: type-IndexT index Tensor (1-D)
Z
zchen0211 已提交
72 73
 * return: output tensor
 */
74
template <typename T, typename IndexT = int>
75 76 77 78
void ScatterAssign(const phi::CPUContext& ctx,
                   const DenseTensor& src,
                   const DenseTensor& index,
                   DenseTensor* output) {
79
  if (index.dims().size() == 2) {
80 81 82 83 84 85 86
    PADDLE_ENFORCE_EQ(
        index.dims()[1],
        1,
        phi::errors::InvalidArgument("index.dims()[1] should be 1 when "
                                     "index.dims().size() =2 in scatter_op."
                                     "But received value is [%d]",
                                     index.dims()[1]));
87
  } else {
88 89
    PADDLE_ENFORCE_EQ(index.dims().size() == 1 || index.dims().size() == 0,
                      true,
90
                      phi::errors::InvalidArgument(
91 92
                          "index.dims().size() should be 0, 1 or 2 in "
                          "scatter_op. But received value is [%d]",
93
                          index.dims().size()));
94
  }
95 96

  int64_t index_size = index.dims().size() == 0 ? 1 : index.dims()[0];
Z
zchen0211 已提交
97

98
  auto src_dims = src.dims();
Z
zchen0211 已提交
99 100
  auto dst_dims = output->dims();

101
  const T* p_src = src.data<T>();
102
  // IndexT is int32 or int64, so direct compare is allowed.
103
  const IndexT* p_index = index.data<IndexT>();
Z
zchen0211 已提交
104 105
  T* p_output = output->data<T>();

106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
  if (index.dims().size() != 0) {
    // check src shape and dst shape should match
    for (int i = 1; i < src_dims.size(); i++)
      PADDLE_ENFORCE_EQ(
          src_dims[i],
          dst_dims[i],
          phi::errors::InvalidArgument(
              "The dimensions of the source tensor and target tensor should"
              " match, but received source tensor's %d-th dimension is %d,"
              "target tensor's %d-th dimension is %d.",
              i,
              src_dims[i],
              i,
              dst_dims[i]));
  }
Z
zchen0211 已提交
121 122 123

  // slice size
  size_t slice_size = 1;
124 125 126 127 128
  if (index.dims().size() != 0) {
    for (int i = 1; i < src_dims.size(); ++i) slice_size *= src_dims[i];
  } else {
    for (int i = 0; i < src_dims.size(); ++i) slice_size *= src_dims[i];
  }
Z
zchen0211 已提交
129

Z
1 api  
zchen0211 已提交
130 131
  const size_t slice_bytes = slice_size * sizeof(T);

Z
Zeng Jinle 已提交
132
  for (int64_t i = 0; i < index_size; ++i) {
133
    IndexT index_ = p_index[i];
134

135 136 137
    PADDLE_ENFORCE_GE(index_,
                      0,
                      phi::errors::OutOfRange(
138 139 140 141 142 143
                          "The index is out of bounds, "
                          "please check whether the dimensions of index and "
                          "input meet the requirements. It should "
                          "be greater than or equal to 0, but received [%d]",
                          index_));

144 145 146 147 148 149 150 151 152 153 154
    PADDLE_ENFORCE_LT(
        index_,
        dst_dims[0],
        phi::errors::OutOfRange(
            "The index is out of bounds, "
            "please check whether the values of index and "
            "dimensions of input meet the requirements. each index should "
            "be less than 1st-dim size (%d) of input, but received [%d]",
            dst_dims[0],
            index_));

Z
1 api  
zchen0211 已提交
155 156
    memcpy(p_output + index_ * slice_size, p_src + i * slice_size, slice_bytes);
  }
Z
zchen0211 已提交
157 158
}

159
template <typename T, typename IndexT = int>
160 161 162 163
void ScatterAssignAdd(const phi::CPUContext& ctx,
                      const DenseTensor& src,
                      const DenseTensor& index,
                      DenseTensor* output) {
164
  PADDLE_ENFORCE_EQ(
165
      index.dims().size() == 1 || index.dims().size() == 0 ||
166
          (index.dims().size() == 2 && index.dims()[1] == 1),
167 168 169
      true,
      phi::errors::InvalidArgument(
          "index's shape is error, "
170 171
          "expect index'dims shape is 0, 1, 2 (index.dims[1] should "
          "be 1), but got index'dims shape is %d",
172
          index.dims().size()));
173 174

  int64_t index_size = index.dims().size() == 0 ? 1 : index.dims()[0];
175 176 177 178 179 180

  auto src_dims = src.dims();
  auto dst_dims = output->dims();

  const T* p_src = src.data<T>();
  const IndexT* p_index = index.data<IndexT>();
181
  T* p_output = output->data<T>();
182

183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
  if (index.dims().size() != 0) {
    // check src shape and dst shape should match
    for (int i = 1; i < src_dims.size(); i++)
      PADDLE_ENFORCE_EQ(
          src_dims[i],
          dst_dims[i],
          phi::errors::InvalidArgument(
              "The dimensions of the source tensor and target tensor should"
              " match, but received source tensor's %d-th dimension is %d,"
              "target tensor's %d-th dimension is %d.",
              i,
              src_dims[i],
              i,
              dst_dims[i]));
  }
198 199 200

  // slice size
  size_t slice_size = 1;
201 202 203 204 205
  if (index.dims().size() != 0) {
    for (int i = 1; i < src_dims.size(); ++i) slice_size *= src_dims[i];
  } else {
    for (int i = 0; i < src_dims.size(); ++i) slice_size *= src_dims[i];
  }
206 207 208 209

  const size_t& slice_bytes = slice_size * sizeof(T);

  // if not in overwrite mode, need to init output data
210
  auto max_index = dst_dims[0];
211 212
  for (int64_t i = 0; i < index_size; ++i) {
    const IndexT& index_val = p_index[i];
213 214 215
    PADDLE_ENFORCE_GE(index_val,
                      0,
                      phi::errors::OutOfRange(
216 217 218 219
                          "The index is out of bounds, "
                          "please check whether the dimensions of index and "
                          "input meet the requirements. It should "
                          "be greater than or equal to 0, but received [%d]",
220
                          index_val));
221 222 223
    PADDLE_ENFORCE_LT(index_val,
                      max_index,
                      phi::errors::OutOfRange(
224 225 226 227
                          "The index is out of bounds, "
                          "please check whether the dimensions of index and "
                          "input meet the requirements. It should "
                          "be less than %d, but received %d",
228 229
                          max_index,
                          index_val));
230 231
    memset(p_output + slice_size * index_val, 0, slice_bytes);
  }
232

233 234 235
  // if not in overwrite mode, need to init output data
  for (int64_t i = 0; i < index_size; ++i) {
    const IndexT& index_val = p_index[i];
236 237
    elementwise_inner_add<T, IndexT>(
        ctx, p_src, p_output, i, index_val, slice_size);
238 239 240
  }
}

S
ShenLiang 已提交
241 242 243
// The function is only for scatter grad x,
// however update grad use gather
template <typename T, typename IndexT = int>
244 245 246
void CPUScatterGradForX(const phi::CPUContext& ctx,
                        const DenseTensor& index,
                        DenseTensor* output) {
247
  int64_t index_size = index.dims()[0];
S
ShenLiang 已提交
248 249 250 251 252 253
  auto dst_dims = output->dims();
  const IndexT* p_index = index.data<IndexT>();
  T* p_output = output->data<T>();
  size_t slice_size = 1;
  for (int i = 1; i < dst_dims.size(); ++i) slice_size *= dst_dims[i];
  const size_t slice_bytes = slice_size * sizeof(T);
254
  for (int64_t i = 0; i < index_size; ++i) {
S
ShenLiang 已提交
255 256 257 258 259
    const IndexT& index_ = p_index[i];
    memset(p_output + slice_size * index_, 0, slice_bytes);
  }
}

260
template <typename T, typename IndexT = int>
261 262 263 264
void ScatterNdAdd(const phi::CPUContext& ctx,
                  const DenseTensor& update,
                  const DenseTensor& index,
                  DenseTensor* output) {
265 266 267 268 269 270 271 272 273
  // update.shape = index.shape[:-1] + output.shape[index.shape[-1]:]
  auto index_dims = index.dims();
  auto index_dims_size = index_dims.size();

  auto output_dims = output->dims();
  auto output_dims_size = output_dims.size();

  const T* p_update = update.data<T>();
  const IndexT* p_index = index.data<IndexT>();
274
  T* p_output = output->data<T>();
275 276 277 278

  // final dim
  int64_t end_size = index_dims[index_dims_size - 1];
  // remain dim
279 280
  auto remain_ddim = phi::slice_ddim(index_dims, 0, index_dims_size - 1);
  int64_t remain_numel = phi::product(remain_ddim);
281 282 283 284 285 286 287
  // slice size
  int64_t slice_size = 1;
  for (int64_t i = end_size; i < output_dims_size; ++i) {
    slice_size *= output_dims[i];
  }

  for (int64_t i = 0; i < remain_numel; ++i) {
288
    IndexT index_val = 0;
289 290 291
    IndexT temp = 1;
    for (int64_t j = end_size - 1; j >= 0; --j) {
      IndexT index_value = p_index[i * end_size + j];
292
      PADDLE_ENFORCE_EQ(
293 294 295
          (index_value >= 0 && index_value < output_dims[j]),
          true,
          phi::errors::OutOfRange(
296 297 298 299
              "The index is out of bounds, "
              "please check whether the dimensions of index and "
              "input meet the requirements. It should "
              "be less than [%d] and greater or equal to 0, but received [%d]",
300 301
              output_dims[j],
              index_value));
302

303
      index_val += (index_value * temp);
304 305
      temp *= output_dims[j];
    }
306 307
    elementwise_inner_add<T, IndexT>(
        ctx, p_update, p_output, i, index_val, slice_size);
308 309 310
  }
}

311 312
}  // namespace funcs
}  // namespace phi