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

#pragma once
#include <cmath>
#include <memory>
#include <vector>

#include "paddle/fluid/framework/operator.h"
#include "paddle/fluid/framework/tensor.h"
#include "paddle/fluid/platform/device_context.h"
23
#include "paddle/phi/core/dense_tensor.h"
24
#include "paddle/phi/core/enforce.h"
25
#include "paddle/phi/core/utils/data_type.h"
26
#include "paddle/phi/kernels/funcs/eigen/common.h"
27

28
namespace phi {
29 30
namespace funcs {

31 32 33
template <typename T>
void BatchTranspose(T* output, const T* input, int batch, int m, int n);

34 35 36 37
template <typename DeviceContext, typename T>
struct TransposeNormal {
  // for dims >= 7 situation
  void operator()(const DeviceContext& context,
38 39
                  const phi::DenseTensor& in,
                  phi::DenseTensor* out,
40 41 42 43 44 45
                  const std::vector<int>& axis);
};

template <typename DeviceContext, typename T, int Rank>
struct Transpose {
  void operator()(const DeviceContext& context,
46 47
                  const phi::DenseTensor& in,
                  phi::DenseTensor* out,
48 49 50 51 52 53
                  const std::vector<int>& axis);
};

template <typename DeviceContext, typename T>
struct SetConstant {
  void operator()(const DeviceContext& context,
54
                  phi::DenseTensor* tensor,
55 56 57
                  T num);
};

58 59 60
#ifdef PADDLE_WITH_XPU
template <typename T>
struct SetConstant<XPUContext, T> {
61
  void operator()(const XPUContext& context, phi::DenseTensor* tensor, T num);
62 63 64 65 66
};

template <typename T>
struct SetConstant<paddle::platform::XPUDeviceContext, T> {
  void operator()(const paddle::platform::XPUDeviceContext& context,
67
                  phi::DenseTensor* tensor,
68 69 70 71
                  T num);
};
#endif

72 73
template <typename Place>
void set_constant_with_place(const paddle::platform::DeviceContext& context,
74
                             phi::DenseTensor* tensor,
75 76 77
                             float value);

void set_constant(const paddle::platform::DeviceContext& context,
78
                  phi::DenseTensor* tensor,
79 80 81 82 83
                  float value);

template <typename DeviceContext, typename T>
struct RowwiseAdd {
  void operator()(const DeviceContext& context,
84 85 86
                  const phi::DenseTensor& input,
                  const phi::DenseTensor& vec,
                  phi::DenseTensor* output);
87 88 89 90 91
};

template <typename DeviceContext, typename T>
struct ColwiseSum {
  void operator()(const DeviceContext& context,
92 93
                  const phi::DenseTensor& input,
                  phi::DenseTensor* vec);
94 95 96 97 98
};

template <typename DeviceContext, typename T>
struct RowwiseSum {
  void operator()(const DeviceContext& context,
99 100
                  const phi::DenseTensor& input,
                  phi::DenseTensor* vec);
101 102 103 104 105
};

template <typename DeviceContext, typename T>
struct RowwiseMean {
  void operator()(const DeviceContext& context,
106 107
                  const phi::DenseTensor& input,
                  phi::DenseTensor* vec);
108 109 110 111 112
};

#ifdef PADDLE_WITH_XPU
template <typename U>
struct TensorSetConstantXPU {
113
  TensorSetConstantXPU(phi::DenseTensor* tensor,
114 115 116 117 118 119 120 121 122 123 124
                       U value,
                       paddle::platform::Place place)
      : tensor_(tensor), value_(value), place_(place) {}
  template <typename T>
  void apply() const {
    auto* begin = tensor_->mutable_data<T>(place_);
    int numel = tensor_->numel();
    std::unique_ptr<T[]> data_cpu(new T[numel]);
    std::fill(data_cpu.get(), data_cpu.get() + numel, static_cast<T>(value_));
    paddle::memory::Copy(place_,
                         begin,
125
                         phi::CPUPlace(),
126 127 128
                         static_cast<void*>(data_cpu.get()),
                         numel * sizeof(T));
  }
129
  phi::DenseTensor* tensor_;
130 131 132 133 134
  U value_;
  paddle::platform::Place place_;
};
#endif

135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
template <typename Context, typename T>
inline void TransCompute(const int dim,
                         const Context& dev_ctx,
                         const DenseTensor& in,
                         DenseTensor* out,
                         const std::vector<int>& axis) {
  switch (dim) {
    case 1:
      Transpose<Context, T, 1> trans1;
      trans1(dev_ctx, in, out, axis);
      break;
    case 2:
      Transpose<Context, T, 2> trans2;
      trans2(dev_ctx, in, out, axis);
      break;
    case 3:
      Transpose<Context, T, 3> trans3;
      trans3(dev_ctx, in, out, axis);
      break;
    case 4:
      Transpose<Context, T, 4> trans4;
      trans4(dev_ctx, in, out, axis);
      break;
    case 5:
      Transpose<Context, T, 5> trans5;
      trans5(dev_ctx, in, out, axis);
      break;
    case 6:
      Transpose<Context, T, 6> trans6;
      trans6(dev_ctx, in, out, axis);
      break;
    default:
      // for dim >= 7 situation
      TransposeNormal<Context, T> trans_normal;
      trans_normal(dev_ctx, in, out, axis);
  }
}

173
}  // namespace funcs
174
}  // namespace phi