complex_kernel_impl.h 2.2 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

C
Chen Weihang 已提交
17
// See Note [ Why still include the fluid headers? ]
C
chentianyu03 已提交
18
#include "paddle/fluid/platform/for_range.h"
19
#include "paddle/phi/kernels/funcs/complex_functors.h"
C
chentianyu03 已提交
20

21
namespace phi {
C
chentianyu03 已提交
22

23
template <typename T, typename Context>
24
void ConjKernel(const Context& dev_ctx,
25 26
                const DenseTensor& x,
                DenseTensor* out) {
C
chentianyu03 已提交
27 28
  auto numel = x.numel();
  auto* x_data = x.data<T>();
29
  auto* out_data = dev_ctx.template Alloc<T>(out);
C
chentianyu03 已提交
30

31
  paddle::platform::ForRange<Context> for_range(dev_ctx, numel);
32
  phi::funcs::ConjFunctor<T> functor(x_data, numel, out_data);
C
chentianyu03 已提交
33 34 35
  for_range(functor);
}

F
From00 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
template <typename T, typename Context>
void RealKernel(const Context& dev_ctx,
                const DenseTensor& x,
                DenseTensor* out) {
  auto numel = x.numel();
  auto* x_data = x.data<T>();
  auto* out_data = dev_ctx.template Alloc<phi::funcs::Real<T>>(
      out, static_cast<size_t>(numel * sizeof(phi::funcs::Real<T>)));

  paddle::platform::ForRange<Context> for_range(dev_ctx, numel);
  phi::funcs::RealFunctor<T> functor(x_data, out_data, numel);
  for_range(functor);
}

template <typename T, typename Context>
void ImagKernel(const Context& dev_ctx,
                const DenseTensor& x,
                DenseTensor* out) {
  auto numel = x.numel();
  auto* x_data = x.data<T>();
  auto* out_data = dev_ctx.template Alloc<phi::funcs::Real<T>>(
      out, static_cast<size_t>(numel * sizeof(phi::funcs::Real<T>)));

  paddle::platform::ForRange<Context> for_range(dev_ctx, numel);
  phi::funcs::ImagFunctor<T> functor(x_data, out_data, numel);
  for_range(functor);
}

64
}  // namespace phi