isfinite_functor.h 2.6 KB
Newer Older
1
// Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
J
Jack Zhou 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//
// 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
namespace phi {
18
namespace funcs {
J
Jack Zhou 已提交
19

20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 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 64 65 66 67 68
template <typename T, class Enable = void>
struct IsNanFunctor {
  HOSTDEVICE bool operator()(const T& a) const {
#if defined(__CUDACC__) || defined(__HIPCC__)
    return ::isnan(a);
#else
    return std::isnan(a);
#endif
  }
};

template <typename T>
struct IsNanFunctor<T,
                    typename std::enable_if<std::is_integral<T>::value>::type> {
  HOSTDEVICE bool operator()(const T& a) const { return false; }
};

// isnan is defined in namespace std in float16.h, but
// on rocm platform, it still got:
// "error: call to 'isnan' is ambiguous".
// So use phi::dtype::isnan here.
template <>
struct IsNanFunctor<phi::dtype::float16, void> {
  HOSTDEVICE bool operator()(const phi::dtype::float16& a) const {
    return phi::dtype::isnan(a);
  }
};

template <typename T, class Enable = void>
struct IsInfFunctor {
  HOSTDEVICE bool operator()(const T& a) const {
#if defined(__CUDACC__) || defined(__HIPCC__)
    return ::isinf(a);
#else
    return std::isinf(a);
#endif
  }
};

template <typename T>
struct IsInfFunctor<T,
                    typename std::enable_if<std::is_integral<T>::value>::type> {
  HOSTDEVICE bool operator()(const T& a) const { return false; }
};

template <>
struct IsInfFunctor<phi::dtype::float16, void> {
  HOSTDEVICE bool operator()(const phi::dtype::float16& a) const {
    return phi::dtype::isinf(a);
J
Jack Zhou 已提交
69 70 71
  }
};

72 73 74 75 76 77 78 79
template <typename T, class Enable = void>
struct IsFiniteFunctor {
  HOSTDEVICE bool operator()(const T& a) const {
#if defined(__CUDACC__) || defined(__HIPCC__)
    return ::isfinite(a);
#else
    return std::isfinite(a);
#endif
J
Jack Zhou 已提交
80 81 82
  }
};

83 84 85 86 87 88 89 90 91 92 93
template <typename T>
struct IsFiniteFunctor<
    T,
    typename std::enable_if<std::is_integral<T>::value>::type> {
  HOSTDEVICE bool operator()(const T& a) const { return true; }
};

template <>
struct IsFiniteFunctor<phi::dtype::float16, void> {
  HOSTDEVICE bool operator()(const phi::dtype::float16& a) const {
    return phi::dtype::isfinite(a);
J
Jack Zhou 已提交
94 95 96
  }
};

97 98
}  // namespace funcs
}  // namespace phi