math_function.cc 15.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2016 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. */

15
#include "paddle/phi/kernels/funcs/math_function.h"
16 17 18 19 20 21 22 23 24 25 26 27

#ifdef PADDLE_WITH_MKLML
#include "paddle/fluid/platform/dynload/mklml.h"
#endif

#ifdef PADDLE_USE_OPENBLAS
#include <cblas.h>
#endif

#include <memory>
#include <utility>
#include <vector>
28

29 30 31
#include "paddle/fluid/framework/data_type.h"
#include "paddle/fluid/platform/bfloat16.h"
#include "paddle/fluid/platform/float16.h"
32 33 34
#include "paddle/phi/backends/cpu/cpu_context.h"
#include "paddle/phi/kernels/funcs/eigen/common.h"
#include "paddle/phi/kernels/funcs/math_function_impl.h"
35 36
#include "unsupported/Eigen/CXX11/Tensor"

37
namespace phi {
38 39
namespace funcs {

40
using float16 = phi::dtype::float16;
41 42

template struct SetConstant<paddle::platform::CPUDeviceContext,
43
                            phi::dtype::float16>;
44
template struct SetConstant<paddle::platform::CPUDeviceContext,
45
                            phi::dtype::bfloat16>;
46 47 48 49 50 51 52 53
template struct SetConstant<paddle::platform::CPUDeviceContext, float>;
template struct SetConstant<paddle::platform::CPUDeviceContext, double>;
template struct SetConstant<paddle::platform::CPUDeviceContext, int16_t>;
template struct SetConstant<paddle::platform::CPUDeviceContext, int>;
template struct SetConstant<paddle::platform::CPUDeviceContext, int64_t>;
template struct SetConstant<paddle::platform::CPUDeviceContext, bool>;
template struct SetConstant<paddle::platform::CPUDeviceContext, uint8_t>;
template struct SetConstant<paddle::platform::CPUDeviceContext,
54
                            phi::dtype::complex<float>>;
55
template struct SetConstant<paddle::platform::CPUDeviceContext,
56 57 58 59 60 61 62 63 64 65 66 67 68
                            phi::dtype::complex<double>>;

template struct SetConstant<phi::CPUContext, phi::dtype::float16>;
template struct SetConstant<phi::CPUContext, phi::dtype::bfloat16>;
template struct SetConstant<phi::CPUContext, float>;
template struct SetConstant<phi::CPUContext, double>;
template struct SetConstant<phi::CPUContext, int16_t>;
template struct SetConstant<phi::CPUContext, int>;
template struct SetConstant<phi::CPUContext, int64_t>;
template struct SetConstant<phi::CPUContext, bool>;
template struct SetConstant<phi::CPUContext, uint8_t>;
template struct SetConstant<phi::CPUContext, phi::dtype::complex<float>>;
template struct SetConstant<phi::CPUContext, phi::dtype::complex<double>>;
69 70 71

#ifdef PADDLE_WITH_XPU
template struct SetConstant<paddle::platform::XPUDeviceContext,
72
                            phi::dtype::float16>;
73
template struct SetConstant<paddle::platform::XPUDeviceContext,
74
                            phi::dtype::bfloat16>;
75 76 77 78 79 80 81 82
template struct SetConstant<paddle::platform::XPUDeviceContext, float>;
template struct SetConstant<paddle::platform::XPUDeviceContext, double>;
template struct SetConstant<paddle::platform::XPUDeviceContext, uint8_t>;
template struct SetConstant<paddle::platform::XPUDeviceContext, int16_t>;
template struct SetConstant<paddle::platform::XPUDeviceContext, int>;
template struct SetConstant<paddle::platform::XPUDeviceContext, int64_t>;
template struct SetConstant<paddle::platform::XPUDeviceContext, bool>;
template struct SetConstant<paddle::platform::XPUDeviceContext,
83
                            phi::dtype::complex<float>>;
84
template struct SetConstant<paddle::platform::XPUDeviceContext,
85
                            phi::dtype::complex<double>>;
86 87 88 89
#endif

#define DEFINE_CPU_TRANS(RANK)                                                 \
  template struct Transpose<paddle::platform::CPUDeviceContext,                \
90
                            phi::dtype::float16,                               \
91 92
                            RANK>;                                             \
  template struct Transpose<paddle::platform::CPUDeviceContext,                \
93
                            phi::dtype::bfloat16,                              \
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
                            RANK>;                                             \
  template struct Transpose<paddle::platform::CPUDeviceContext, float, RANK>;  \
  template struct Transpose<paddle::platform::CPUDeviceContext, double, RANK>; \
  template struct Transpose<paddle::platform::CPUDeviceContext, int, RANK>;    \
  template struct Transpose<paddle::platform::CPUDeviceContext,                \
                            int64_t,                                           \
                            RANK>;                                             \
  template struct Transpose<paddle::platform::CPUDeviceContext, bool, RANK>;   \
  template struct Transpose<paddle::platform::CPUDeviceContext,                \
                            int16_t,                                           \
                            RANK>;                                             \
  template struct Transpose<paddle::platform::CPUDeviceContext,                \
                            uint8_t,                                           \
                            RANK>;                                             \
  template struct Transpose<paddle::platform::CPUDeviceContext, int8_t, RANK>; \
  template struct Transpose<paddle::platform::CPUDeviceContext,                \
110
                            phi::dtype::complex<float>,                        \
111 112
                            RANK>;                                             \
  template struct Transpose<paddle::platform::CPUDeviceContext,                \
113
                            phi::dtype::complex<double>,                       \
114
                            RANK>;                                             \
115 116 117 118 119 120 121 122 123 124 125 126
  template struct Transpose<phi::CPUContext, phi::dtype::float16, RANK>;       \
  template struct Transpose<phi::CPUContext, phi::dtype::bfloat16, RANK>;      \
  template struct Transpose<phi::CPUContext, float, RANK>;                     \
  template struct Transpose<phi::CPUContext, double, RANK>;                    \
  template struct Transpose<phi::CPUContext, int, RANK>;                       \
  template struct Transpose<phi::CPUContext, int64_t, RANK>;                   \
  template struct Transpose<phi::CPUContext, bool, RANK>;                      \
  template struct Transpose<phi::CPUContext, int16_t, RANK>;                   \
  template struct Transpose<phi::CPUContext, uint8_t, RANK>;                   \
  template struct Transpose<phi::CPUContext, int8_t, RANK>;                    \
  template struct Transpose<phi::CPUContext,                                   \
                            phi::dtype::complex<float>,                        \
127
                            RANK>;                                             \
128
  template struct Transpose<phi::CPUContext, phi::dtype::complex<double>, RANK>;
129 130 131 132 133 134 135 136

DEFINE_CPU_TRANS(1);
DEFINE_CPU_TRANS(2);
DEFINE_CPU_TRANS(3);
DEFINE_CPU_TRANS(4);
DEFINE_CPU_TRANS(5);
DEFINE_CPU_TRANS(6);

137 138 139 140 141 142 143
template <typename DeviceContext, typename T>
void TransposeNormal<DeviceContext, T>::operator()(
    const DeviceContext& context,
    const paddle::framework::Tensor& in,
    paddle::framework::Tensor* out,
    const std::vector<int>& axis) {
  const int rank = axis.size();
144 145
  auto in_stride = phi::stride(in.dims());
  auto out_stride = phi::stride(out->dims());
146 147 148 149 150 151 152 153 154 155 156 157
  const T* in_ptr = in.data<T>();
  T* out_ptr = out->data<T>();

  auto transpose_helper = [&](int64_t beg, int64_t end) {
    for (int64_t out_idx = beg; out_idx < end; ++out_idx) {
      int64_t in_idx = 0;
      int64_t tmp_idx = out_idx;
      // calculate the input index
      for (int i = 0; i < rank; ++i) {
        const int64_t coordinate = tmp_idx / out_stride[i];
        tmp_idx -= coordinate * out_stride[i];
        in_idx += coordinate * in_stride[axis[i]];
158
      }
159 160 161 162 163
      out_ptr[out_idx] = in_ptr[in_idx];
    }
  };
  transpose_helper(0, out->numel());
}
164 165

// define transpose normal
166 167
#define DEFINE_CPU_TRANS_NORMAL(TYPE)                                        \
  template struct TransposeNormal<paddle::platform::CPUDeviceContext, TYPE>; \
168
  template struct TransposeNormal<phi::CPUContext, TYPE>
169

170 171
DEFINE_CPU_TRANS_NORMAL(phi::dtype::float16);
DEFINE_CPU_TRANS_NORMAL(phi::dtype::bfloat16);
172 173 174 175 176 177 178 179
DEFINE_CPU_TRANS_NORMAL(float);
DEFINE_CPU_TRANS_NORMAL(double);
DEFINE_CPU_TRANS_NORMAL(int);
DEFINE_CPU_TRANS_NORMAL(int64_t);
DEFINE_CPU_TRANS_NORMAL(bool);
DEFINE_CPU_TRANS_NORMAL(int16_t);
DEFINE_CPU_TRANS_NORMAL(uint8_t);
DEFINE_CPU_TRANS_NORMAL(int8_t);
180 181
DEFINE_CPU_TRANS_NORMAL(phi::dtype::complex<float>);
DEFINE_CPU_TRANS_NORMAL(phi::dtype::complex<double>);
182 183 184 185 186 187

struct TensorSetConstantCPU {
  TensorSetConstantCPU(paddle::framework::Tensor* tensor, float value)
      : tensor_(tensor), value_(value) {}
  template <typename T>
  void apply() const {
188
    auto cpu = phi::CPUPlace();
189 190 191 192 193 194 195 196 197 198 199 200
    auto* begin = tensor_->mutable_data<T>(cpu);
    std::fill(begin, begin + tensor_->numel(), static_cast<T>(value_));
  }
  paddle::framework::Tensor* tensor_;
  float value_;
};

template <>
void set_constant_with_place<paddle::platform::XPUPlace>(
    const paddle::platform::DeviceContext& context,
    paddle::framework::Tensor* tensor,
    float value) {
201
  PADDLE_THROW(phi::errors::Unimplemented("XPUPlace is not supported"));
202 203 204 205 206 207 208
}

template <>
void set_constant_with_place<paddle::platform::NPUPlace>(
    const paddle::platform::DeviceContext& context,
    paddle::framework::Tensor* tensor,
    float value) {
209
  PADDLE_THROW(phi::errors::Unimplemented("NPUPlace is not supported"));
210 211 212 213 214 215 216
}

template <>
void set_constant_with_place<paddle::platform::NPUPinnedPlace>(
    const paddle::platform::DeviceContext& context,
    paddle::framework::Tensor* tensor,
    float value) {
217
  PADDLE_THROW(phi::errors::Unimplemented("NPUPinnedPlace is not supported"));
218 219 220 221 222 223 224
}

template <>
void set_constant_with_place<paddle::platform::IPUPlace>(
    const paddle::platform::DeviceContext& context,
    paddle::framework::Tensor* tensor,
    float value) {
225
  PADDLE_THROW(phi::errors::Unimplemented("IPUPlace is not supported"));
226 227
}

228 229 230 231 232
template <>
void set_constant_with_place<paddle::platform::CustomPlace>(
    const paddle::platform::DeviceContext& context,
    paddle::framework::Tensor* tensor,
    float value) {
233
  PADDLE_THROW(phi::errors::Unimplemented("CustomPlace is not supported"));
234 235
}

236
template <>
237
void set_constant_with_place<phi::CPUPlace>(
238 239 240
    const paddle::platform::DeviceContext& context,
    paddle::framework::Tensor* tensor,
    float value) {
241
  phi::VisitDataType(tensor->dtype(), TensorSetConstantCPU(tensor, value));
242 243 244 245 246 247 248
}

template <>
void set_constant_with_place<paddle::platform::MLUPlace>(
    const paddle::platform::DeviceContext& context,
    paddle::framework::Tensor* tensor,
    float value) {
249
  PADDLE_THROW(phi::errors::Unimplemented("MLUPlace is not supported"));
250 251 252 253 254 255 256
}

template <>
void set_constant_with_place<paddle::platform::CUDAPinnedPlace>(
    const paddle::platform::DeviceContext& context,
    paddle::framework::Tensor* tensor,
    float value) {
257
  phi::VisitDataType(tensor->dtype(), TensorSetConstantCPU(tensor, value));
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
}

struct TensorSetConstantWithPlace : public boost::static_visitor<void> {
  TensorSetConstantWithPlace(const paddle::platform::DeviceContext& context,
                             paddle::framework::Tensor* tensor,
                             float value)
      : context_(context), tensor_(tensor), value_(value) {}

  template <typename Place>
  void operator()(Place place) const {
    set_constant_with_place<Place>(context_, tensor_, value_);
  }

  const paddle::platform::DeviceContext& context_;
  paddle::framework::Tensor* tensor_;
  float value_;
};

void set_constant(const paddle::platform::DeviceContext& context,
                  paddle::framework::Tensor* tensor,
                  float value) {
  TensorSetConstantWithPlace func(context, tensor, value);
280 281 282 283 284 285
#ifdef PADDLE_WITH_CUSTOM_DEVICE
  if (paddle::platform::is_custom_place(context.GetPlace())) {
    func(phi::CPUPlace());
    return;
  }
#endif
286 287 288 289
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
  // tensor->place().apply_visitor(func);
  paddle::platform::VisitPlace(tensor->place(), func);
#else
290
  func(phi::CPUPlace());
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
#endif
}

template <typename T>
struct RowwiseAdd<paddle::platform::CPUDeviceContext, T> {
  void operator()(const paddle::platform::CPUDeviceContext& context,
                  const paddle::framework::Tensor& input,
                  const paddle::framework::Tensor& vector,
                  paddle::framework::Tensor* output) {
    auto in_dims = input.dims();
    auto out_dims = output->dims();
    auto size = input.numel() / in_dims[0];
    PADDLE_ENFORCE_EQ(
        vector.numel(),
        size,
306
        phi::errors::InvalidArgument(
307 308 309 310 311 312 313 314 315
            "The input vector size"
            " should be equal to the size of each row of input tensor."
            " Expected vector size=%d, but received %d",
            size,
            vector.numel()));
    const char* in_dims_cstr = in_dims.to_str().c_str();
    const char* out_dims_cstr = out_dims.to_str().c_str();
    PADDLE_ENFORCE_EQ(out_dims,
                      in_dims,
316
                      phi::errors::InvalidArgument(
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
                          "The output tensor shape should be same as the input"
                          " tensor shape. Expected output tensor shape: %s,"
                          " but received %s",
                          in_dims_cstr,
                          out_dims_cstr));

    auto in = paddle::framework::EigenMatrix<T>::From(input);
    auto vec = paddle::framework::EigenVector<T>::Flatten(vector);
    auto out = paddle::framework::EigenMatrix<T>::From(*output);

    for (int64_t i = 0; i < in_dims[0]; ++i) {
      out.chip(i, 0) = in.chip(i, 0) + vec;
    }
  }
};

template struct RowwiseAdd<paddle::platform::CPUDeviceContext, float>;
template struct RowwiseAdd<paddle::platform::CPUDeviceContext, double>;

template struct ColwiseSum<paddle::platform::CPUDeviceContext, float>;
template struct ColwiseSum<paddle::platform::CPUDeviceContext, double>;
template struct ColwiseSum<paddle::platform::CPUDeviceContext, int>;
template struct ColwiseSum<paddle::platform::CPUDeviceContext, int64_t>;

H
hong 已提交
341 342 343 344 345
template struct ColwiseSum<phi::CPUContext, float>;
template struct ColwiseSum<phi::CPUContext, double>;
template struct ColwiseSum<phi::CPUContext, int>;
template struct ColwiseSum<phi::CPUContext, int64_t>;

346 347 348 349 350 351
template struct RowwiseSum<paddle::platform::CPUDeviceContext, float>;
template struct RowwiseSum<paddle::platform::CPUDeviceContext, double>;

template struct RowwiseMean<paddle::platform::CPUDeviceContext, float>;
template struct RowwiseMean<paddle::platform::CPUDeviceContext, double>;

H
hong 已提交
352 353 354
template struct RowwiseMean<phi::CPUContext, float>;
template struct RowwiseMean<phi::CPUContext, double>;

355 356 357 358 359 360 361 362 363 364 365 366 367
template <typename T>
struct ElementwiseAddTo<paddle::platform::CPUDeviceContext, T> {
  void operator()(paddle::platform::CPUDeviceContext* ctx,
                  const paddle::framework::Tensor& src,
                  paddle::framework::Tensor* dst) {
    auto in = paddle::framework::EigenVector<T>::Flatten(src);
    auto out = paddle::framework::EigenVector<T>::Flatten(*dst);
    auto& place = *(ctx->eigen_device());
    out.device(place) = out + in;
  }
};

template struct ElementwiseAddTo<paddle::platform::CPUDeviceContext,
368
                                 phi::dtype::float16>;
369
template struct ElementwiseAddTo<paddle::platform::CPUDeviceContext,
370
                                 phi::dtype::bfloat16>;
371 372

}  // namespace funcs
373
}  // namespace phi