// -*- C++ -*- //===----------------------------------------------------------------------===// // // 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 _LIBCUDACXX___EXCEPTION_CUDA_ERROR_H #define _LIBCUDACXX___EXCEPTION_CUDA_ERROR_H #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 #if !defined(_CCCL_CUDA_COMPILER_NVCC) && !defined(_CCCL_CUDA_COMPILER_NVHPC) # include #endif // !_CCCL_CUDA_COMPILER_NVCC && !_CCCL_CUDA_COMPILER_NVHPC #include #if !defined(_CCCL_COMPILER_NVRTC) # include # include #endif // !_CCCL_COMPILER_NVRTC #include _LIBCUDACXX_BEGIN_NAMESPACE_CUDA /** * @brief Exception thrown when a CUDA error is encountered. */ #ifndef _LIBCUDACXX_NO_EXCEPTIONS class cuda_error : public ::std::runtime_error { private: struct __msg_storage { char __buffer[256]; }; static char* __format_cuda_error(::cudaError_t __status, const char* __msg, char* __msg_buffer) noexcept { ::snprintf(__msg_buffer, 256, "cudaError %d: %s", __status, __msg); return __msg_buffer; } public: cuda_error(::cudaError_t __status, const char* __msg, __msg_storage __msg_buffer = {0}) noexcept : ::std::runtime_error(__format_cuda_error(__status, __msg, __msg_buffer.__buffer)) {} }; _CCCL_NORETURN inline _LIBCUDACXX_INLINE_VISIBILITY void __throw_cuda_error(::cudaError_t __status, const char* __msg) { NV_IF_ELSE_TARGET(NV_IS_HOST, (throw ::cuda::cuda_error(__status, __msg);), ((void) __status; (void) __msg; _CUDA_VSTD_NOVERSION::terminate();)) } #else // ^^^ !_LIBCUDACXX_NO_EXCEPTIONS ^^^ / vvv _LIBCUDACXX_NO_EXCEPTIONS vvv class cuda_error { public: cuda_error(::cudaError_t, const char*) noexcept {} }; _CCCL_NORETURN inline _LIBCUDACXX_INLINE_VISIBILITY void __throw_cuda_error(::cudaError_t, const char*) { _CUDA_VSTD_NOVERSION::terminate(); } #endif // !_LIBCUDACXX_NO_EXCEPTIONS _LIBCUDACXX_END_NAMESPACE_CUDA #endif // _LIBCUDACXX___EXCEPTION_CUDA_ERROR_H