complex_functors.h 9.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* Copyright (c) 2020 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 <type_traits>

19
#include "paddle/fluid/platform/complex.h"
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
#include "paddle/fluid/platform/hostdevice.h"

namespace paddle {
namespace operators {
namespace math {

template <bool B, typename T>
struct cond {
  static constexpr bool value = B;
  using type = T;
};

template <bool B, typename TrueF, typename FalseF>
struct eval_if {
  using type = typename TrueF::type;
};

template <typename TrueF, typename FalseF>
struct eval_if<false, TrueF, FalseF> {
  using type = typename FalseF::type;
};

template <bool B, typename T, typename F>
using eval_if_t = typename eval_if<B, T, F>::type;

template <typename Head, typename... Tail>
struct select {
  using type = eval_if_t<Head::value, Head, select<Tail...>>;
};

50 51 52 53 54 55 56 57 58 59 60 61
template <typename T>
struct select<T> {
  using type = T;
};

template <bool B, typename T>
struct select<cond<B, T>> {
  // last one had better be true!
  static_assert(B, "No match select type!");
  using type = T;
};

62 63 64 65 66
template <typename Head, typename... Tail>
using select_t = typename select<Head, Tail...>::type;

template <typename T>
using Real =
67
    select_t<cond<std::is_same<T, platform::complex<float>>::value, float>,
68 69
             cond<std::is_same<T, platform::complex<double>>::value, double>,
             T>;
70 71 72 73 74 75 76 77

template <typename T, typename RealT>
using Complex = typename std::enable_if<!std::is_same<T, RealT>::value>::type;

// There are no NoComplex cases now, implement later if needed
template <typename T, typename RealT>
using NoComplex = typename std::enable_if<std::is_same<T, RealT>::value>::type;

78
template <typename T>
79 80 81
using EnableComplex = typename std::enable_if<
    std::is_same<T, platform::complex<float>>::value ||
    std::is_same<T, platform::complex<double>>::value>::type;
82 83 84

template <typename T>
using DisableComplex = typename std::enable_if<
85 86
    !std::is_same<T, platform::complex<float>>::value &&
    !std::is_same<T, platform::complex<double>>::value>::type;
87

88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
template <typename T, typename Enable = void>
struct RealFunctor;

template <typename T>
struct RealFunctor<T, Complex<T, Real<T>>> {
 public:
  RealFunctor(const T* input, Real<T>* output, int64_t numel)
      : input_(input), output_(output), numel_(numel) {}

  HOSTDEVICE void operator()(int64_t idx) const {
    output_[idx] = input_[idx].real;
  }

 private:
  const T* input_;
  Real<T>* output_;
  int64_t numel_;
};

template <typename T, typename Enable = void>
struct ImagFunctor;

template <typename T>
struct ImagFunctor<T, Complex<T, Real<T>>> {
  ImagFunctor(const T* input, Real<T>* output, int64_t numel)
      : input_(input), output_(output), numel_(numel) {}

  HOSTDEVICE void operator()(int64_t idx) const {
    output_[idx] = input_[idx].imag;
  }

  const T* input_;
  Real<T>* output_;
  int64_t numel_;
};

124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
template <typename T, typename Enable = void>
struct AbsFunctor;

template <typename T>
struct AbsFunctor<T, Complex<T, Real<T>>> {
  AbsFunctor(const T* input, Real<T>* output, int64_t numel)
      : input_(input), output_(output), numel_(numel) {}

  HOSTDEVICE void operator()(int64_t idx) const {
    output_[idx] = abs(input_[idx]);
  }

  const T* input_;
  Real<T>* output_;
  int64_t numel_;
};

template <typename T>
struct AbsFunctor<T, NoComplex<T, Real<T>>> {
  AbsFunctor(const T* input, T* output, int64_t numel)
      : input_(input), output_(output), numel_(numel) {}

  HOSTDEVICE void operator()(int64_t idx) const {
147
    output_[idx] = std::abs(input_[idx]);
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
  }

  const T* input_;
  T* output_;
  int64_t numel_;
};

template <typename T>
struct AbsGradFunctor {
  AbsGradFunctor(const math::Real<T>* dout, const T* x, T* output,
                 int64_t numel)
      : dout_(dout), x_(x), output_(output), numel_(numel) {}

  HOSTDEVICE void operator()(int64_t idx) const {
    if (x_[idx] == T(0)) {
      output_[idx] = T(0);
    } else {
165
      output_[idx] = T(dout_[idx]) * (x_[idx] / T(std::abs(x_[idx])));
166 167 168 169 170 171 172 173 174
    }
  }

  const math::Real<T>* dout_;
  const T* x_;
  T* output_;
  int64_t numel_;
};

175
template <>
176 177 178
struct AbsGradFunctor<paddle::platform::complex<float>> {
  AbsGradFunctor(const float* dout, const paddle::platform::complex<float>* x,
                 paddle::platform::complex<float>* output, int64_t numel)
179 180 181
      : dout_(dout), x_(x), output_(output), numel_(numel) {}

  HOSTDEVICE void operator()(int64_t idx) const {
182 183
    if (x_[idx] == paddle::platform::complex<float>(0)) {
      output_[idx] = paddle::platform::complex<float>(0);
184
    } else {
185 186
      output_[idx] = paddle::platform::complex<float>(dout_[idx]) *
                     (x_[idx] / paddle::platform::complex<float>(abs(x_[idx])));
187 188 189 190
    }
  }

  const float* dout_;
191 192
  const paddle::platform::complex<float>* x_;
  paddle::platform::complex<float>* output_;
193 194 195 196
  int64_t numel_;
};

template <>
197 198 199
struct AbsGradFunctor<paddle::platform::complex<double>> {
  AbsGradFunctor(const double* dout, const paddle::platform::complex<double>* x,
                 paddle::platform::complex<double>* output, int64_t numel)
200 201 202
      : dout_(dout), x_(x), output_(output), numel_(numel) {}

  HOSTDEVICE void operator()(int64_t idx) const {
203 204
    if (x_[idx] == paddle::platform::complex<double>(0)) {
      output_[idx] = paddle::platform::complex<double>(0);
205
    } else {
206 207 208
      output_[idx] =
          paddle::platform::complex<double>(dout_[idx]) *
          (x_[idx] / paddle::platform::complex<double>(abs(x_[idx])));
209 210 211 212
    }
  }

  const double* dout_;
213 214
  const paddle::platform::complex<double>* x_;
  paddle::platform::complex<double>* output_;
215 216 217
  int64_t numel_;
};

218 219 220 221 222 223 224 225 226
template <typename T>
struct AbsGradGradFunctor {
  AbsGradGradFunctor(const T* ddx, const T* x, T* output, int64_t numel)
      : ddx_(ddx), x_(x), output_(output), numel_(numel) {}

  HOSTDEVICE void operator()(int64_t idx) const {
    if (x_[idx] == T(0)) {
      output_[idx] = T(0);
    } else {
227
      output_[idx] = T(ddx_[idx]) * x_[idx] / T(std::abs(x_[idx]));
228 229 230 231 232 233 234 235 236
    }
  }

  const T* ddx_;
  const T* x_;
  T* output_;
  int64_t numel_;
};

237
template <>
238 239 240 241
struct AbsGradGradFunctor<paddle::platform::complex<double>> {
  AbsGradGradFunctor(const paddle::platform::complex<double>* ddx,
                     const paddle::platform::complex<double>* x,
                     paddle::platform::complex<double>* output, int64_t numel)
242 243 244
      : ddx_(ddx), x_(x), output_(output), numel_(numel) {}

  HOSTDEVICE void operator()(int64_t idx) const {
245 246
    if (x_[idx] == paddle::platform::complex<double>(0)) {
      output_[idx] = paddle::platform::complex<double>(0);
247
    } else {
248 249
      output_[idx] = paddle::platform::complex<double>(ddx_[idx]) * x_[idx] /
                     paddle::platform::complex<double>(abs(x_[idx]));
250 251 252
    }
  }

253 254 255
  const paddle::platform::complex<double>* ddx_;
  const paddle::platform::complex<double>* x_;
  paddle::platform::complex<double>* output_;
256 257 258 259
  int64_t numel_;
};

template <>
260 261 262 263
struct AbsGradGradFunctor<paddle::platform::complex<float>> {
  AbsGradGradFunctor(const paddle::platform::complex<float>* ddx,
                     const paddle::platform::complex<float>* x,
                     paddle::platform::complex<float>* output, int64_t numel)
264 265 266
      : ddx_(ddx), x_(x), output_(output), numel_(numel) {}

  HOSTDEVICE void operator()(int64_t idx) const {
267 268
    if (x_[idx] == paddle::platform::complex<float>(0)) {
      output_[idx] = paddle::platform::complex<float>(0);
269
    } else {
270 271
      output_[idx] = paddle::platform::complex<float>(ddx_[idx]) * x_[idx] /
                     paddle::platform::complex<float>(abs(x_[idx]));
272 273 274
    }
  }

275 276 277
  const paddle::platform::complex<float>* ddx_;
  const paddle::platform::complex<float>* x_;
  paddle::platform::complex<float>* output_;
278 279
  int64_t numel_;
};
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
template <typename T, typename Enable = void>
struct RealToComplexFunctor;

template <typename T>
struct RealToComplexFunctor<T, Complex<T, Real<T>>> {
  RealToComplexFunctor(const Real<T>* input, T* output, int64_t numel)
      : input_(input), output_(output), numel_(numel) {}

  HOSTDEVICE void operator()(int64_t idx) const {
    output_[idx].real = input_[idx];
    output_[idx].imag = 0;
  }

  const Real<T>* input_;
  T* output_;
  int64_t numel_;
};

template <typename T, typename Enable = void>
struct ImagToComplexFunctor;

template <typename T>
struct ImagToComplexFunctor<T, Complex<T, Real<T>>> {
  ImagToComplexFunctor(const Real<T>* input, T* output, int64_t numel)
      : input_(input), output_(output), numel_(numel) {}

  HOSTDEVICE void operator()(int64_t idx) const {
    output_[idx].real = 0;
    output_[idx].imag = input_[idx];
  }

  const Real<T>* input_;
  T* output_;
  int64_t numel_;
};

C
chentianyu03 已提交
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
template <typename T, typename Enable = void>
struct ConjFunctor;

template <typename T>
struct ConjFunctor<T, EnableComplex<T>> {
  ConjFunctor(const T* input, int64_t numel, T* output)
      : input_(input), numel_(numel), output_(output) {}

  HOSTDEVICE void operator()(size_t idx) const {
    output_[idx] = T(input_[idx].real, -input_[idx].imag);
  }
  const T* input_;
  int64_t numel_;
  T* output_;
};

template <typename T>
struct ConjFunctor<T, DisableComplex<T>> {
  ConjFunctor(const T* input, int64_t numel, T* output)
      : input_(input), numel_(numel), output_(output) {}

  HOSTDEVICE void operator()(size_t idx) const { output_[idx] = input_[idx]; }
  const T* input_;
  int64_t numel_;
  T* output_;
};

343 344 345
}  // namespace math
}  // namespace operators
}  // namespace paddle