99 lines
3.5 KiB
C++
99 lines
3.5 KiB
C++
// Copyright (c) 2022 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.
|
|
|
|
#include "paddle/phi/kernels/isfinite_kernel.h"
|
|
|
|
#include "paddle/phi/backends/cpu/cpu_context.h"
|
|
#include "paddle/phi/core/kernel_registry.h"
|
|
#include "paddle/phi/kernels/impl/isfinite_kernel_impl.h"
|
|
|
|
PD_REGISTER_KERNEL(isinf,
|
|
CPU,
|
|
ALL_LAYOUT,
|
|
phi::IsinfKernel,
|
|
float,
|
|
double,
|
|
phi::float16,
|
|
phi::bfloat16,
|
|
int,
|
|
int64_t,
|
|
int16_t,
|
|
int8_t,
|
|
uint8_t,
|
|
phi::complex64,
|
|
phi::complex128) {
|
|
kernel->OutputAt(0).SetDataType(phi::DataType::BOOL);
|
|
}
|
|
|
|
PD_REGISTER_KERNEL(isnan,
|
|
CPU,
|
|
ALL_LAYOUT,
|
|
phi::IsnanKernel,
|
|
float,
|
|
double,
|
|
phi::float16,
|
|
phi::bfloat16,
|
|
int,
|
|
int64_t,
|
|
phi::complex64,
|
|
phi::complex128) {
|
|
kernel->OutputAt(0).SetDataType(phi::DataType::BOOL);
|
|
}
|
|
|
|
PD_REGISTER_KERNEL(isfinite,
|
|
CPU,
|
|
ALL_LAYOUT,
|
|
phi::IsfiniteKernel,
|
|
float,
|
|
double,
|
|
phi::float16,
|
|
phi::bfloat16,
|
|
int,
|
|
int64_t,
|
|
phi::complex64,
|
|
phi::complex128) {
|
|
kernel->OutputAt(0).SetDataType(phi::DataType::BOOL);
|
|
}
|
|
|
|
#ifdef _WIN32
|
|
namespace phi {
|
|
INSTANTIATE_ISFINITE_KERNEL_Isnan(float, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isnan(double, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isnan(int, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isnan(int64_t, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isnan(float16, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isnan(bfloat16, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isnan(complex64, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isnan(complex128, CPUContext);
|
|
|
|
INSTANTIATE_ISFINITE_KERNEL_Isinf(float, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isinf(double, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isinf(int, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isinf(int64_t, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isinf(float16, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isinf(bfloat16, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isinf(complex64, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isinf(complex128, CPUContext);
|
|
|
|
INSTANTIATE_ISFINITE_KERNEL_Isfinite(float, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isfinite(double, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isfinite(int, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isfinite(int64_t, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isfinite(float16, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isfinite(bfloat16, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isfinite(complex64, CPUContext);
|
|
INSTANTIATE_ISFINITE_KERNEL_Isfinite(complex128, CPUContext);
|
|
} // namespace phi
|
|
#endif
|