complex_kernel.h 3.6 KB
Newer Older
C
chentianyu03 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (c) 2021 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

17 18 19 20
#include "paddle/phi/common/complex.h"
#include "paddle/phi/core/dense_tensor.h"
#include "paddle/phi/infermeta/unary.h"
#include "paddle/phi/kernels/empty_kernel.h"
21

22
namespace phi {
C
chentianyu03 已提交
23

24
template <typename T, typename Context>
25 26
void ConjKernel(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out);

27 28 29 30 31 32
template <typename T, typename Context>
void RealKernel(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out);

template <typename T, typename Context>
void ImagKernel(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out);

33
// If T is complex
34 35 36
template <
    typename T,
    typename Context,
37 38
    std::enable_if_t<std::is_same<T, phi::dtype::complex<float>>::value ||
                         std::is_same<T, phi::dtype::complex<double>>::value,
39
                     bool> = true>
40
DenseTensor Conj(const Context& dev_ctx, const DenseTensor& x) {
41
  DenseTensor dense_out;
42 43
  MetaTensor meta_out(&dense_out);
  UnchangedInferMeta(x, &meta_out);
44 45 46
  ConjKernel<T>(dev_ctx, x, &dense_out);
  return dense_out;
}
C
chentianyu03 已提交
47

48
// If T is not complex
49 50 51
template <
    typename T,
    typename Context,
52 53
    std::enable_if_t<!std::is_same<T, phi::dtype::complex<float>>::value &&
                         !std::is_same<T, phi::dtype::complex<double>>::value,
54
                     bool> = true>
55 56 57 58
DenseTensor Conj(const Context& dev_ctx, const DenseTensor& x) {
  return x;
}

59 60 61 62 63 64 65 66
// If T is complex
template <
    typename T,
    typename Context,
    std::enable_if_t<std::is_same<T, phi::dtype::complex<float>>::value ||
                         std::is_same<T, phi::dtype::complex<double>>::value,
                     bool> = true>
DenseTensor Real(const Context& dev_ctx, const DenseTensor& x) {
67
  DenseTensor dense_out;
68 69 70 71 72
  MetaTensor meta_out(&dense_out);
  RealAndImagInferMeta(x, &meta_out);
  RealKernel<T>(dev_ctx, x, &dense_out);
  return dense_out;
}
73

74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
// If T is not complex
template <
    typename T,
    typename Context,
    std::enable_if_t<!std::is_same<T, phi::dtype::complex<float>>::value &&
                         !std::is_same<T, phi::dtype::complex<double>>::value,
                     bool> = true>
DenseTensor Real(const Context& dev_ctx, const DenseTensor& x) {
  return x;
}

// If T is complex
template <
    typename T,
    typename Context,
    std::enable_if_t<std::is_same<T, phi::dtype::complex<float>>::value ||
                         std::is_same<T, phi::dtype::complex<double>>::value,
                     bool> = true>
DenseTensor Imag(const Context& dev_ctx, const DenseTensor& x) {
93
  DenseTensor dense_out;
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
  MetaTensor meta_out(&dense_out);
  RealAndImagInferMeta(x, &meta_out);
  ImagKernel<T>(dev_ctx, x, &dense_out);
  return dense_out;
}

// If T is not complex
template <
    typename T,
    typename Context,
    std::enable_if_t<!std::is_same<T, phi::dtype::complex<float>>::value &&
                         !std::is_same<T, phi::dtype::complex<double>>::value,
                     bool> = true>
DenseTensor Imag(const Context& dev_ctx, const DenseTensor& x) {
  return x;
}
F
From00 已提交
110

111
}  // namespace phi