//===----------------------------------------------------------------------===// // // Part of libcu++, the C++ Standard Library for your entire system, // under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // SPDX-FileCopyrightText: Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. // //===----------------------------------------------------------------------===// #ifndef __CCCL_EXTENDED_FLOATING_POINT_H #define __CCCL_EXTENDED_FLOATING_POINT_H #include #include #if defined(_CCCL_IMPLICIT_SYSTEM_HEADER_GCC) # pragma GCC system_header #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_CLANG) # pragma clang system_header #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_MSVC) # pragma system_header #endif // no system header #include #ifndef __has_include # define __has_include(x) 0 #endif // !__has_include #if !defined(_CCCL_HAS_NVFP16) # if __has_include() \ && (defined(_CCCL_CUDA_COMPILER) || defined(LIBCUDACXX_ENABLE_HOST_NVFP16)) \ && !defined(CCCL_DISABLE_FP16_SUPPORT) # define _CCCL_HAS_NVFP16 1 # endif #endif // !_CCCL_HAS_NVFP16 #if !defined(_CCCL_HAS_NVBF16) # if __has_include() \ && defined(_CCCL_HAS_NVFP16) \ && !defined(CCCL_DISABLE_BF16_SUPPORT) \ && !defined(CUB_DISABLE_BF16_SUPPORT) # define _CCCL_HAS_NVBF16 1 # endif #endif // !_CCCL_HAS_NVBF16 #if defined(_CCCL_HAS_NVFP16) # include #endif // _CCCL_HAS_NVFP16 #if defined(_CCCL_HAS_NVBF16) _CCCL_DIAG_PUSH _CCCL_DIAG_SUPPRESS_CLANG("-Wunused-function") # include _CCCL_DIAG_POP #endif // _CCCL_HAS_NVFP16 #endif // __CCCL_EXTENDED_FLOATING_POINT_H