complex_kernel.h 2.0 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
// If T is complex
28 29 30
template <
    typename T,
    typename Context,
31 32
    std::enable_if_t<std::is_same<T, phi::dtype::complex<float>>::value ||
                         std::is_same<T, phi::dtype::complex<double>>::value,
33
                     bool> = true>
34
DenseTensor Conj(const Context& dev_ctx, const DenseTensor& x) {
35
  auto dense_out = phi::Empty<T, Context>(dev_ctx);
36 37
  MetaTensor meta_out(&dense_out);
  UnchangedInferMeta(x, &meta_out);
38 39 40
  ConjKernel<T>(dev_ctx, x, &dense_out);
  return dense_out;
}
C
chentianyu03 已提交
41

42
// If T is not complex
43 44 45
template <
    typename T,
    typename Context,
46 47
    std::enable_if_t<!std::is_same<T, phi::dtype::complex<float>>::value &&
                         !std::is_same<T, phi::dtype::complex<double>>::value,
48
                     bool> = true>
49 50 51 52
DenseTensor Conj(const Context& dev_ctx, const DenseTensor& x) {
  return x;
}

53 54 55 56 57
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);
F
From00 已提交
58

59
}  // namespace phi