* Copyright (c) 2026 Huawei Technologies Co., Ltd.
* This program is free software, you can redistribute it and/or modify it under the terms and conditions of
* CANN Open Software License Agreement Version 2.0 (the "License").
* Please refer to the License for details. You may not use this file except in compliance with the License.
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
* See LICENSE in the root of the software repository for the full text of the License.
*/
#ifndef IMPL_SIMT_API_CPP_DAV_C310_KERNEL_SIMT_CMP_IMPL_H
#define IMPL_SIMT_API_CPP_DAV_C310_KERNEL_SIMT_CMP_IMPL_H
#include "impl/simt_api/cpp/dav_c310/kernel_simt_constant.h"
namespace AscendC {
namespace Simt {
__aicore__ inline bool IsNanImpl(half x)
{
uint16_t* intX = (uint16_t*)&x;
return (*intX > ConstantsInternal::HALF_INF && *intX <= ConstantsInternal::HALF_MAX_NAN) ||
(*intX > ConstantsInternal::HALF_NEG_INF);
}
__aicore__ inline bool IsNanImpl(float x)
{
uint32_t* intX = (uint32_t*)&x;
return (*intX > ConstantsInternal::INF && *intX <= ConstantsInternal::MAX_NAN) ||
(*intX > ConstantsInternal::NEG_INF);
}
__aicore__ inline bool IsInfImpl(float x)
{
uint32_t* intX = (uint32_t*)&x;
return (*intX == ConstantsInternal::INF) || (*intX == ConstantsInternal::NEG_INF);
}
__aicore__ inline bool IsInfImpl(half x)
{
uint16_t* intX = (uint16_t*)&x;
return (*intX == ConstantsInternal::HALF_INF) || (*intX == ConstantsInternal::HALF_NEG_INF);
}
__aicore__ inline bool IsInfImpl(bfloat16_t x)
{
uint16_t* intX = (uint16_t*)&x;
return (*intX == ConstantsInternal::B_HALF_INF || *intX == ConstantsInternal::B_HALF_NEG_INF) ;
}
* This only check positiveFinite, when -inf use this need use Abs to protect
*/
__aicore__ inline bool IsPositiveInfImpl(float x)
{
uint32_t* intX = (uint32_t*)&x;
return *intX == ConstantsInternal::INF;
}
__aicore__ inline bool IsNegativeInfImpl(float x)
{
uint32_t* intX = (uint32_t*)&x;
return *intX == ConstantsInternal::NEG_INF;
}
__aicore__ inline bool IsFiniteImpl(float x)
{
return !IsNanImpl(x) && !IsInfImpl(x);
}
__aicore__ inline bool IsFiniteImpl(half x)
{
return !IsNanImpl(x) && !IsInfImpl(x);
}
}
}
#endif