complex_kernel.h 1.8 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
#include "paddle/pten/common/complex.h"
C
chentianyu03 已提交
18
#include "paddle/pten/core/dense_tensor.h"
19 20 21
#include "paddle/pten/infermeta/unary.h"
#include "paddle/pten/kernels/empty_kernel.h"

C
chentianyu03 已提交
22 23
namespace pten {

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 33
// If T is complex
template <typename T,
          typename Context,
          std::enable_if_t<
              std::is_same<T, paddle::platform::complex<float>>::value ||
                  std::is_same<T, paddle::platform::complex<double>>::value,
              bool> = true>
34
DenseTensor Conj(const Context& dev_ctx, const DenseTensor& x) {
35 36 37
  auto dense_out = pten::Empty<T, Context>(dev_ctx);
  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 43 44 45 46 47 48 49 50 51 52
// If T is not complex
template <typename T,
          typename Context,
          std::enable_if_t<
              !std::is_same<T, paddle::platform::complex<float>>::value &&
                  !std::is_same<T, paddle::platform::complex<double>>::value,
              bool> = true>
DenseTensor Conj(const Context& dev_ctx, const DenseTensor& x) {
  return x;
}

C
chentianyu03 已提交
53
}  // namespace pten