complex_kernel.cc 1.6 KB
Newer Older
C
chentianyu03 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// 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.

15 16
#include "paddle/phi/kernels/complex_kernel.h"
#include "paddle/phi/kernels/impl/complex_kernel_impl.h"
C
chentianyu03 已提交
17

18 19
#include "paddle/phi/backends/cpu/cpu_context.h"
#include "paddle/phi/core/kernel_registry.h"
C
chentianyu03 已提交
20

C
Chen Weihang 已提交
21
// See Note [ Why still include the fluid headers? ]
22
#include "paddle/phi/common/complex.h"
C
chentianyu03 已提交
23

24
PD_REGISTER_KERNEL(conj,
25 26
                   CPU,
                   ALL_LAYOUT,
27 28 29
                   phi::ConjKernel,
                   phi::dtype::complex<float>,
                   phi::dtype::complex<double>,
30 31 32 33
                   float,
                   double,
                   int,
                   int64_t) {}
F
From00 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47

PD_REGISTER_KERNEL(real,
                   CPU,
                   ALL_LAYOUT,
                   phi::RealKernel,
                   phi::dtype::complex<float>,
                   phi::dtype::complex<double>) {}

PD_REGISTER_KERNEL(imag,
                   CPU,
                   ALL_LAYOUT,
                   phi::ImagKernel,
                   phi::dtype::complex<float>,
                   phi::dtype::complex<double>) {}